Skip to main content
PUT
/
core
/
v1
/
notifications
/
{id}
Modify Subscription
curl --request PUT \
  --url https://api.dev.name.com/core/v1/notifications/{id} \
  --header 'Authorization: Basic <encoded-value>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "url": "https://example2.com",
  "active": false
}
'
{
  "subscription": {
    "active": true,
    "createDate": "<string>",
    "eventName": "<string>",
    "id": 123,
    "updateDate": "<string>",
    "url": "<string>"
  }
}

Documentation Index

Fetch the complete documentation index at: https://docs.name.com/llms.txt

Use this file to discover all available pages before exploring further.

Authorizations

Authorization
string
header
required

Authenticate via HTTP Basic with your account username and API token. Examples use an explicit 'Authorization: Basic <base64(username:token)>' header; 'curl -u username:token' is equivalent. For sandbox, append "-test" to your username and use your sandbox token on api.dev.name.com.

Path Parameters

id
integer<int32>
required

ID of the subscription to update.

Body

application/json
url
string<uri>
required

Optionally update the URL we send the webhook data to

Example:

"https://example2.com"

active
boolean

Optionally update if the subscription is currently active

Example:

false

Response

A successful response.

subscription
* The record for each notification you have subscribed to · object