curl --request POST \
--url https://api.backside.app/api/v1/integration-keys/{provider}/verify \
--header 'Authorization: Bearer <token>'{
"valid": true,
"reason": "<string>"
}Always returns 200 — valid: true/false in the body distinguishes
success from failure. The verify endpoint never returns 401/403 for
auth failures; those map to { "valid": false, "reason": "auth_failed" }.
curl --request POST \
--url https://api.backside.app/api/v1/integration-keys/{provider}/verify \
--header 'Authorization: Bearer <token>'{
"valid": true,
"reason": "<string>"
}Was this page helpful?