First reads and writes
# 1. Read the live contract
curl https://api.dutyclaims.com/v1/docs/openapi
# 2. Create or inspect a client
curl -H "Authorization: Bearer dcp_live_replace_me" \
https://api.dutyclaims.com/v1/clients
# 3. Register a webhook endpoint once event handling is ready
curl -X POST https://api.dutyclaims.com/v1/webhooks/endpoints \
-H "Authorization: Bearer dcp_live_replace_me" \
-H "Content-Type: application/json" \
-d '{"url":"https://partner.example.com/webhooks/dutyclaims","events":["claim.updated"]}'