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.
string
The primary key/unique identifier of an object, useful for interacting with Gotham APIs to load and mutate objects.
1
2
3
curl \
-H "Authorization: Bearer $TOKEN" \
"https://$HOSTNAME/api/gotham/v1/objects/ri.gotham.111111-0.object-internal.111111/resolution?preview=true"
1
2
3
4
5
6
7
{
"canonicalObjectPrimaryKey": "ri.gotham.111111-0.object-internal.111111",
"winnerObjectPrimaryKey": "ri.gotham.111111-0.object-internal.333333",
"otherObjectPrimaryKeys": [
"ri.gotham.111111-0.object-internal.222222"
]
}