POST
/
domains
Create a domain
curl --request POST \
  --url https://api.supaqr.com/domains \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "domain": "iqr.im",
  "notFoundUrl": "https://example.com",
  "expiredUrl": "https://example.com",
  "assetLinks": "<string>",
  "appleAppSiteAssociation": "<string>"
}'
{
  "slug": "<string>",
  "destination": "<string>",
  "clicks": 123,
  "expiredUrl": "<string>",
  "notFoundUrl": "<string>",
  "assetLinks": "<string>",
  "appleAppSiteAssociation": "<string>",
  "cnameStatus": "<string>",
  "sslStatus": "<string>"
}

Authorizations

Authorization
string
header
required

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

Body

application/json

Response

200
application/json

The response is of type object.