Skip to main content
GET
/
v1
/
webhooks
/
{partner_id}
Get Webhook
curl --request GET \
  --url https://api.explorium.ai/v1/webhooks/{partner_id} \
  --header 'api_key: <api-key>'
{
  "response_context": {
    "correlation_id": "<string>",
    "request_status": "success",
    "time_took_in_seconds": 123
  },
  "created_at": "2023-11-07T05:31:56Z",
  "last_modified_time": "2023-11-07T05:31:56Z",
  "webhook_url": "<string>",
  "webhook_secret": "<string>"
}

Authorizations

api_key
string
header
required

Path Parameters

partner_id
string
required

Response

Successful Response

This is base response model for all responses in partner service.

response_context
object
required
created_at
string<date-time>
required
last_modified_time
string<date-time>
required
webhook_url
string
required
webhook_secret
string
required
I