Skip to main content
POST
/
domains
/
{id}
/
verify
Verify domain
curl --request POST \
  --url https://api.linkutm.com/api/v1/domains/{id}/verify \
  --header 'Authorization: Bearer <token>'
{
  "verified": true,
  "message": "Domain verified successfully"
}

Authorizations

Authorization
string
header
required

JWT token obtained from /auth/login.

Headers

x-workspace-id
string

The workspace to operate in. Required when authenticating with a JWT token. Optional when using an API key — the workspace is automatically resolved from the key itself.

Example:

"ws_01hx9ab3cd4ef5gh6ij7kl"

Path Parameters

id
string
required

Domain ID.

Response

Verification result

verified
boolean
Example:

true

message
string
Example:

"Domain verified successfully"