PUT creates or updates integrators registration

put

{basePath}/notifications/registration

The API is used to register or update subscriber. Intended to be used when subscriber's keyId, hmacKey, or keyType update is required. Existing subscriptions will remain intact and any notifications that are sent related to the subscription will utilize the newly updated details.

Request

Supported Media Types
Body ()
The SubscriberSecretView
Root Schema : SubscriberSecretView
Type: object
A subscriber subset excluding subscriberId
Show Source
Back to Top

Response

Supported Media Types

201 Response

201 Created

204 Response

204 No Content
Back to Top

Examples

Example Request Body

The following example shows the contents of the request body in JSON format:


{
  "keyId": "string",
  "hmacKey": "string",
  "keyType": "string"
}

Example Response Body

Not applicable for this endpoint.

Back to Top