Register a web domain for an enrolled entity

Associates a web domain with the specified enrolled entity.

Path Parameters
  • entity_id
    Type: string
    required

    Unique identifier of the entity.

Body·
application/json
  • web_domain
    Type: string Format: hostname
    required

    The web domain to register for an actively enrolled entity.

Responses
  • 204

    Domain registered successfully (no content).

  • 401

    Unauthorized.

  • 404

    Entity not found.

  • application/json
  • 500

    Internal server error.

Request Example for post/googlepay/enrollments/{entity_id}/domain
curl 'https://{prefix}.api.checkout.com/googlepay/enrollments/{entity_id}/domain' \
  --request POST \
  --header 'Content-Type: application/json' \
  --header 'Authorization: Bearer YOUR_SECRET_TOKEN' \
  --data '{
  "web_domain": "some.example.com"
}'
No Body