v1

latestOpenAPI 3.1.02026-07-2671111437.2 KB
Transfers

List Transfers

Returns all domain transfer requests for the account, including in-progress and recent transfers.

get/core/v1/transfers

Query parameters

perPageinteger

Maximum number of records to return per page for paginated list endpoints.

Per Page is the number of records to return per request. Per Page defaults to 500.

pageinteger

Page is which page to return.

Response

A successful response.

lastPageinteger

LastPage is the identifier for the final page of results. It is only populated if there is another page of results after the current page.

nextPageinteger

NextPage is the identifier for the next page of results. It is only populated if there is another page of results after the current page.

totalCountinteger required

TotalCount is total number of results.

frominteger required

From specifies starting record number on current page.

tointeger required

To specifies ending record number on current page.

Example response

{
  "transfers": [
    {
      "domainName": "example.com",
      "email": "admin@example.com",
      "status": "pending_transfer"
    }
  ]
}