v1
latestOpenAPI 3.0.0Cognigy Proprietary License2026-07-2239524.1 MBEndpoints
Create an Endpoint API Key
Generates a new API key for the given Webhook/Generic Endpoint. Returns the plaintext key in the response body exactly once — the server stores only the SHA-256 hash and a masked preview, and the plaintext is never retrievable again.
post/v2.0/endpoints/{endpointId}/apikeys
Path parameters
endpointIdstring required
The Id of the Endpoint
Headers
Accept'application/json' | 'application/hal+json' | 'application/xml' | 'text/xml' | 'text/csv'
The Accept header specifies the media type that the client expects in the response. Available options: application/json, application/hal+json, application/xml, text/xml, text/csv. The default value is application/json.
Request body
Example request
{
"name": "My CRM webhook"
}Response
The Endpoint API Key was created. The plaintext key is returned exactly once.
Example response
{
"name": "My CRM webhook",
"keyPreview": "8a4f••••••••7c2e",
"createdAt": 1694518620,
"key": "8a4fcd9b2e5f17b03f9c4a6d7c2e5f17b03f9c4a6d7c2e5f17b03f9c4a6d7c2e"
}