Appearance
Callback URL
IIMMPACT provides an API endpoint that allows you to retrieve your currently configured Callback URL. This is useful for verifying your current settings or for systems that need to dynamically check the callback endpoint.
API Endpoint
http
GET https://api.iimmpact.com/v2/callback-urlRequest Headers
| Header | Description | Required |
|---|---|---|
Authorization | ID Token | No |
Response 200
| Field | Type | Description |
|---|---|---|
data | object | |
data.Status | string | |
data.CallbackUrl | string | |
data.Method | string | |
@metadata | object | |
@metadata.status_code | number | |
@metadata.last_updated | string |
Example Response:
json
{
"data": {
"Status": "Success",
"CallbackUrl": "https://google.com",
"Method": "POST"
},
"@metadata": {
"status_code": 200,
"last_updated": "21-05-2025 14:02:56"
}
}