[HTTP GET] ~/contactLists/{listId}/linkeddata/{linkedDataId}/records

Description: Get a specific set of Linked Data's records from a specific ContactList

Request Information

URI Parameters

NameDescriptionTypeAdditional information
listId

string

Required

linkedDataId

integer

Required

Body Parameters

None

Response Information

Description

Successful Response - OK (200):

Response Content : Collection of Dictionary of string [key] and Object [value]


Response Codes:

  • 200 - OK
    • The specified Linked Data was retrieved and returned successfully.
  • 400 - BadRequest
    • Could not retrieve the specified Linked Data as no $select clause has been added to the request.
  • 401 - Unauthorized
    • Request has been denied as it lacks valid Authentication credentials.
  • 403 - Forbidden
    • The user does not have the relevant permissions to perform this action.
  • 404 - NotFound
    • The specified Linked Data was not found.
  • 500 - InternalServerError
    • An error occurred while processing this request.

Formats

application/json, text/json

Sample:
[
  {
    "sample string 1": {},
    "sample string 3": {}
  },
  {
    "sample string 1": {},
    "sample string 3": {}
  }
]

application/csp-report

Sample:
[{"sample string 1":{},"sample string 3":{}},{"sample string 1":{},"sample string 3":{}}]

application/xml, text/xml

Sample:
<ArrayOfArrayOfKeyValueOfstringanyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.microsoft.com/2003/10/Serialization/Arrays">
  <ArrayOfKeyValueOfstringanyType>
    <KeyValueOfstringanyType>
      <Key>sample string 1</Key>
      <Value />
    </KeyValueOfstringanyType>
    <KeyValueOfstringanyType>
      <Key>sample string 3</Key>
      <Value />
    </KeyValueOfstringanyType>
  </ArrayOfKeyValueOfstringanyType>
  <ArrayOfKeyValueOfstringanyType>
    <KeyValueOfstringanyType>
      <Key>sample string 1</Key>
      <Value />
    </KeyValueOfstringanyType>
    <KeyValueOfstringanyType>
      <Key>sample string 3</Key>
      <Value />
    </KeyValueOfstringanyType>
  </ArrayOfKeyValueOfstringanyType>
</ArrayOfArrayOfKeyValueOfstringanyType>