curl --request PUT \
--url https://api.backside.app/api/v1/api-keys/{id}/origins \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"origins": [
"<string>"
]
}
'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"origins": [
"<string>"
]
}Accepts up to 50 scheme://host[:port] entries (no path, query, or
fragment). An empty list restores the default (no browser origins
allowed).
curl --request PUT \
--url https://api.backside.app/api/v1/api-keys/{id}/origins \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"origins": [
"<string>"
]
}
'{
"id": "3c90c3cc-0d44-4b50-8888-8dd25736052a",
"origins": [
"<string>"
]
}Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
API key ID
Was this page helpful?