Add custom data via webhook
POST/api/v1/custom-integrations/data/:uuid
Refer to the Webhook section of the Custom Data docs for more information. This API is preconfigured in your workspace settings under Custom Integrations. The UUID corresponds to a custom data key, as well as a jq
command that maps the data in this payload to an entity in your workspace.
Request
Path Parameters
- application/json
Body
required
A JSON object that contains a valid entity tag in the payload, queryable with the jq
command defined for this webhook in your workspace.
object
Responses
- 200
- 429
OK
The client has exceeded the rate limit by performing too many requests in a short period. Retry the request after a delay.
Response Headers
Retry-After
integer
The number of seconds until the rate limiting resets.
- application/problem+json
- Schema
- Example (from schema)
Schema
The number of seconds until the rate limiting resets.
Possible values: >= 100
and <= 599
, [429
]
{
"detail": "string",
"instance": "string",
"retryAfter": 0,
"status": 429,
"title": "string",
"type": "string"
}