Get all named ID values

get

/services/rest/connect/v1.4/namedIDs/{fullyQualifiedPath}

Request

Path Parameters
Back to Top

Response

Supported Media Types

Default Response

Body ()
Root Schema : Collection of namedIDs
Type: object
Title: Collection of namedIDs
Collection of namedIDs
Show Source
Nested Schema : items
Type: array
Show Source
Nested Schema : items
Type: object
Show Source
Back to Top

Examples

Use GET with the following syntax to list the available named IDs for a particular resource:

https://your_site_interface/services/rest/connect/version/namedIDs/resource

Request URI example

The following example shows how to get the list of named IDs for the incidents resource:

https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents

Response body example

{
  "assignedTo": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/assignedTo"
      }
    ]
  },
  "banner": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/banner"
      }
    ]
  },
  "billedMinutes": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/billedMinutes"
      }
    ]
  },
  "channel": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/channel"
      }
    ]
  },
  "chatQueue": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/chatQueue"
      }
    ]
  },
  "language": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/language"
      }
    ]
  },
  "mailing": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/mailing"
      }
    ]
  },
  "milestoneInstances": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/milestoneInstances"
      }
    ]
  },
  "queue": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/queue"
      }
    ]
  },
  "responseEmailAddressType": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/responseEmailAddressType"
      }
    ]
  },
  "severity": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/severity"
      }
    ]
  },
  "sLAInstance": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/sLAInstance"
      }
    ]
  },
  "statusWithType": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/statusWithType"
      }
    ]
  },
  "threads": {
    "links": [
      {
        "rel": "canonical",
        "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents/threads"
      }
    ]
  },
  "links": [
    {
      "rel": "self",
      "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents"
    },
    {
      "rel": "canonical",
      "href": "https://mysite.example.com/services/rest/connect/v1.4/namedIDs/incidents"
    },
    {
      "rel": "describedby",
      "href": "https://mysite.example.com/services/rest/connect/v1.4/metadata-catalog/namedIDs/incidents",
      "mediaType": "application/schema+json"
    }
  ]
}
Back to Top