GET /webhooks

Authentication

Bearer Token API Key (header: X-API-Key)

Responses

200 List of webhooks

No response body

curl -X GET 'https://platform-api.anyspend.com/api/v1/webhooks' \
  -H 'Authorization: Bearer YOUR_API_TOKEN'
const response = await fetch('https://platform-api.anyspend.com/api/v1/webhooks', {
  method: 'GET',
  headers: {
      "Authorization": "Bearer YOUR_API_TOKEN"
  }
});

const data = await response.json();
console.log(data);
import requests

headers = {
    'Authorization': 'Bearer YOUR_API_TOKEN'
}

response = requests.get('https://platform-api.anyspend.com/api/v1/webhooks', headers=headers)
print(response.json())
GET /webhooks
Ask a question... ⌘I