List signing secrets
GET/v1/webhook_endpoints/{endpoint}/secrets
Lists an endpoint’s signing secrets — ids and status only, never the key material. Oldest first, which is the order their signatures appear in the header.
List signing secrets
curl https://whatsapp.messages.api.linqapp.com/v1/webhook_endpoints/$ENDPOINT/secrets \
-H "Authorization: Bearer $LINQ_WHATSAPP_API_KEY"{
"data": [
{
"id": "id",
"created_at": "2019-12-27T18:11:19.117Z",
"retired_at": "2019-12-27T18:11:19.117Z",
"status": "status"
}
]
}Returns Examples
{
"data": [
{
"id": "id",
"created_at": "2019-12-27T18:11:19.117Z",
"retired_at": "2019-12-27T18:11:19.117Z",
"status": "status"
}
]
}