POST /webhook/settings/change

Request Headers

Header

Description

X-Auth-Account-Url (required)The base URL of the account, e.g. https://myaccount.ispringlearn.com
X-Auth-Email (required)The login of Account Owner and Account Administrator.
X-Auth-Password (required)

The password of Account Owner, Account Administrator,

ParameterDescription
subscriberName (required)The name of an existing subscriber.
callbackUrl (required)The URL to which the subscribed events will be sent. It can have up to 255 characters.
Secret (optional)HMAC request signature. It can have up to 255 characters.

Sample Request

curl --location 'https://api-learn.ispringlearn.com/webhook/settings/change' \
--header 'X-Auth-Account-Url: https://myaccount.ispringlearn.com' \
--header 'X-Auth-Email: email@email.com' \
--header 'X-Auth-Password: password' \
--header 'Content-Type: application/json' \
--header 'Accept: application/json' \
--data '{
  "subscriberName": "name",
  "callbackUrl": "https://client.service.com/callback-url",
  "secret": "secret"
}'
XML

Response Codes

Code

Text

Description

200

ОК

Subscription settings have been changed.

400

Bad Request

A request error.

401

Unauthorized

An authorization error.

403

Permission Denied

The user doesn't have enough permissions.

404

Subscriber not found

The subscriber was not found.