Updates a subscription

Updates a subscription

SecurityBearerAuth or ApiKeyAuth
Request
path Parameters
subscription_id
required
string
Example: abc-123-efg-456
Request Body schema: application/json

Details to update

name
required
string [ 1 .. 1024 ] characters

Name for the subscription

required
object (Callback Information)
configurations
Array of strings unique

Configuration for the Subscription

Items Value: "SKIP_ERRORS"
Responses
200

Updated

400

Bad Request.

401

Unauthorized access.

403

Forbidden.

404

The specified resource was not found

500

Internal Server Error.

503

Service Unavailable.

put/api/subscriptions/{subscription_id}
Request samples
application/json
{
  • "name": "My Subscription to XYZ",
  • "callbackInfo": {},
  • "configurations": "SKIP_ERRORS"
}
Response samples
application/problem+json
{
  • "title": "string",
  • "status": 0,
  • "detail": "string",
  • "errorCode": "string",
  • "type": "string"
}