Get domain

Get Domain Details

This endpoint retrieves details of a specific domain identified by its ID.

Response

The response of this request is a JSON object representing the details of the domain. You can use the following JSON schema to understand the structure of the response:

{
  "type": "object",
  "properties": {
    "domainId": {
      "type": "string"
    },
    "domainName": {
      "type": "string"
    },
    "createdAt": {
      "type": "string",
      "format": "date-time"
    },
    "updatedAt": {
      "type": "string",
      "format": "date-time"
    },
    "status": {
      "type": "string"
    }
    // Add more properties as per the actual response
  }
}

Language
Credentials
Header
Click Try It! to start a request and see the response here!