Get Synced Object


This request returns the information of a synced object.
This can be used to find out if a synced object is already in the database and to get the Xelion ID of this Entity.
If an Entity is found you can use the Entity ID to update a specific resource.

Resource

GET /sync/<SYNCID>

Where SYNCID is the object SYNCID of the entity.

Parameters

None

Payload

None

Response

Context

Authorization

User

Errors

HTTP code Xelion code Description

404

10100

Resource not found, no entity exists with the sync id.

Example

Request
GET http://sip.xelion.nl/api/v1/master/sync/0015800000RdV4oAAF
Response
{
  "object": {
    "commonName": "Person A",
    "oid": "1033697",
    "objectType": "Person"
  },
  "links": [
    {
      "rel": "self",
      "href": "http://sip.xelion.nl/api/v1/master/sync/0015800000RdV4oAAF",
      "method": "GET"
    }
  ]
}