Get hook

GET /api/hooks/{id}

Get hook details by ID.

Path parameters

  • id string Required

    The unique identifier of the hook.

Query parameters

Responses

GET /api/hooks/{id}
curl \
 -X GET https://[tenant_id].logto.app/api/hooks/{id}
Response examples (200)
{
  "id": "string",
  "name": "string",
  "event": "PostRegister",
  "events": [
    "PostRegister"
  ],
  "config": {
    "url": "string",
    "headers": {
      "key": "string"
    },
    "retries": 42.0
  },
  "signingKey": "string",
  "enabled": true,
  "createdAt": 42.0,
  "executionStats": {
    "successCount": 42.0,
    "requestCount": 42.0
  }
}