v2

latestOpenAPI 3.0.02026-08-07103189636.5 KB
GDN url management

Get details for URLs

Retrieve details of the URLs.

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

Path parameters

projectIdstring required

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

Request body

webPageUidsstring[]

list of url identifiers

Example request

{
  "webPageUids": [
    "4423d44",
    "123jd44"
  ]
}

Response

OK

Example response

{
  "response": {
    "data": {
      "items": [
        {
          "details": {
            "contextUids": [
              "122ssasa323",
              "334asds3434"
            ],
            "created": "2015-11-21T01:51:17Z",
            "stringCount": 10,
            "wordCount": 25
          },
          "domain": {
            "name": "my.domain.com"
          }
        }
      ]
    }
  }
}