This endpoint is in preview and may be modified or removed at any time.
To use this endpoint, add preview=true
to the request query parameters.
Get metadata from previously-performed resolutions. If the object has not been resolved, the
canonicalObjectPrimaryKey
and winnerObjectPrimaryKey
will be identical, and the otherObjectPrimaryKeys
will be empty.
boolean
Represents a boolean value that restricts an endpoint to preview mode when set to true.
object
The resolution metadata the resolved object.
string
The primary key/unique identifier of an object, useful for interacting with Gotham APIs to load and mutate objects.
string
The primary key/unique identifier of an object, useful for interacting with Gotham APIs to load and mutate objects.
list<ObjectPrimaryKey>
All other sub-objects which compose this resolved object. This may include other winner object keys if some sub-objects have themselves been resolved.
1curl \
2 -H "Authorization: Bearer $TOKEN" \
3 "https://$HOSTNAME/api/gotham/v1/objects/ri.gotham.111111-0.object-internal.111111/resolution?preview=true"
1{
2 "canonicalObjectPrimaryKey": "ri.gotham.111111-0.object-internal.111111",
3 "winnerObjectPrimaryKey": "ri.gotham.111111-0.object-internal.333333",
4 "otherObjectPrimaryKeys": [
5 "ri.gotham.111111-0.object-internal.222222"
6 ]
7}