Get specific webhook subscription
GET/v2-experimental/webhooks/subscriptions/:subscription_id
Retrieves information for a specific webhook subscription.
Required scope
boards:readRate limiting
Level 2Request
Path Parameters
Unique identifier (ID) of the subscription that you want to retrieve
Responses
- 200
- 400
- 404
- 429
Subscription retrieved
- application/json
- Schema
- Example (from schema)
Schema
- BoardSubscriptionData
Indicates the HTTPS URL to which Miro sends a webhook when an event occurs.
Date and time when the webhook subscription was created.
Format: UTC, adheres to ISO 8601, includes a trailing Z offset.
data
object
Contains information about a webhook subscription, such as the board ID that the webhook subscription is associated with.
oneOf
Unique identifier (ID) of the board with which the webhook subscription is associated.
Unique identifier (ID) of a webhook subscription.
Date and time when the webhook subscription was last modified.
Format: UTC, adheres to ISO 8601, includes a trailing Z offset.
Possible values: [enabled
, disabled
, lost_access
]
Default value: enabled
Indicates whether the status of the webhook subscription. enabled
: Miro sends a webhook when an event occurs in the associated board.
disabled
: Miro does not send a webhook even when an event occurs in the associated board.
lost_access
: The user with which the webhook subscription is associated has lost access to the board.
The user needs to regain access to the board, and then reenable the webhook subscription by updating the webhook subscription status to enabled
by using the update webhook endpoint.
The type of object associated with the webhook subscription.
{
"callbackUrl": "https://api.asana.com/v2/webhooks_endpoint",
"createdAt": "2022-03-30T17:26:50.000Z",
"data": {},
"id": "99c152bb-8259-4c7a-96d8-ad8eef47ecd4",
"modifiedAt": "2022-03-30T17:26:50.000Z",
"status": "enabled",
"type": "board_subscription"
}
Malformed request
- application/json
- Schema
- Example (from schema)
Schema
Code of the error
Description of the error
Status code of the error
Type of the error
{
"code": "error",
"message": "Error message",
"status": 400,
"type": "error"
}
Not found
- application/json
- Schema
- Example (from schema)
Schema
Code of the error
Description of the error
Status code of the error
Type of the error
{
"code": "error",
"message": "Error message",
"status": 400,
"type": "error"
}
Too many requests
- application/json
- Schema
- Example (from schema)
Schema
Code of the error
Description of the error
Status code of the error
Type of the error
{
"code": "error",
"message": "Error message",
"status": 400,
"type": "error"
}