v2

latestOpenAPI 3.0.02026-08-07103189636.5 KB
GDN url management

Get list of URLs

Get list of URLs.

post/gdn-url-management-api/v2/projects/{projectId}/web-pages/list

Path parameters

projectIdstring required

A unique project identifier. This can be found in the Smartling Dashboard under Account Settings > API.

Request body

domainNamestring

domain name

limitinteger

limit

localeIdsstring[]
offsetinteger

offset

orderDirection'ASC' | 'DESC'

Sort direction

urlCaptureDateAfterstring date-time

The date after which the URL was captured.

urlCaptureDateBeforestring date-time

The date by which the URL was captured.

urlPathstring

url

urlPathExactMatchboolean

Should or should not apply exact match.

Example request

{
  "domainName": "my.domain.com",
  "limit": 30,
  "localeIds": [
    "ru-RU"
  ],
  "orderDirection": "ASC",
  "urlCaptureDateAfter": "2020-11-21T01:51:17Z",
  "urlCaptureDateBefore": "2020-11-21T01:51:17Z",
  "urlPath": "/home/page.htm"
}

Response

OK

Example response

{
  "response": {
    "data": {
      "items": [
        {
          "domain": {
            "name": "my.domain.com"
          }
        }
      ]
    }
  }
}