Skip to main content
cURL
curl --request GET \
  --url https://prolinks.pro/api/v1/organizations/{organizationId}/domains/{domainId} \
  --header 'Authorization: Bearer <token>'
[
  {
    "id": 123,
    "type": "Domain",
    "attributes": {
      "organization_name": "PROmium",
      "name": "promium.pro"
    }
  }
]

Authorizations

Authorization
string
header
required

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

Path Parameters

organizationId
integer
required

ID of the organization

Example:

1

domainId
integer
required

ID of the domain

Example:

1

Response

200 - application/json

Domains response

id
integer

The Domain id

type
string

Domain

Example:

"Domain"

attributes
object