curl -X DELETE "https://api.adrelay.dev/v1/redirect-uris/uri_abc123" \
-H "X-API-Key: $ADRELAY_API_KEY"
import { AdRelay } from "@adrelay/sdk";
const client = new AdRelay({ apiKey: process.env.ADRELAY_API_KEY });
await client.redirectUris.delete("uri_abc123");
import requests
requests.delete(
"https://api.adrelay.dev/v1/redirect-uris/uri_abc123",
headers={"X-API-Key": "your-api-key-here"},
)
(No content)
{
"error": {
"code": "NOT_FOUND",
"message": "Redirect URI not found",
"retryable": false,
"requestId": "req_abc123"
}
}