Generate verification code

POST /organizations/{organization_id}/domains/_generate_verification_code

Generate verification code for the domain claim challenge.

Path parameters

application/json

Body Required

The verification code request

Responses

  • 200 application/json

    The verification code response

    Hide response attribute Show response attribute object
    • verification string Required

      The verification code to use for the domain claim challenge

  • 404 application/json

    Organization not found. (code: organization.not_found)

    Hide headers attribute Show headers attribute
    • The error codes associated with the response

      Value is organization.not_found.

    Hide response attribute Show response attribute object
    • errors array[object] Required

      A list of errors that occurred in the failing request

      Hide errors attributes Show errors attributes object
      • code string Required

        A structured code representing the error type that occurred

      • message string Required

        A human readable message describing the error that occurred

      • fields array[string]

        If the error can be tied to a specific field or fields in the user request, this lists those fields

POST /organizations/{organization_id}/domains/_generate_verification_code
curl \
 --request POST https://api.elastic-cloud.com/api/v1/organizations/{organization_id}/domains/_generate_verification_code \
 --header "Content-Type: application/json" \
 --data '{"domain_claim_request":"string"}'
Request examples
{
  "domain_claim_request": "string"
}
Response examples (200)
{
  "verification": "string"
}
Response examples (404)
# Headers
x-cloud-error-codes: organization.not_found

# Payload
{
  "errors": [
    {
      "code": "string",
      "message": "string",
      "fields": [
        "string"
      ]
    }
  ]
}