POST
/
domains
/
{slug}
/
redirect
curl --request POST \
  --url https://api.reqlick.com/domains/{slug}/redirect \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "redirect": "<string>"
}'
{
  "error": false
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

slug
string
required

domain slug

Body

application/json
redirect
string | null

redirect URL

Response

200
application/json
Domain updated successfully
error
boolean

Indicates if there was an error

Example:

false