PUT
/
destinations
/
{destination_id}
Update Existing Destination
curl --request PUT \
  --url https://api.streamkap.com/destinations/{destination_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "connector": "<string>",
  "config": {}
}'
"<any>"

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

destination_id
string | null
required

Query Parameters

secret_returned
boolean
default:false

Body

application/json
name
string
required
connector
string
required
config
object
required

Response

Successful Response

The response is of type any.