Allows to link assets to a title.
FIELD | DESCRIPTION |
assetIds |
Required, if no assetUuids (see below) is provided. Array of Strings. The IDs of asset maps. Only asset maps are supported. |
assetUuids |
Required, if no assetIds (see above) is provided. Array of Strings. The UUIDs of asset maps. Only asset maps are supported. |
titleId | Required, if no titleIdentifier (see below) is provided. String |
titleIdentifier | Required, if no titleId (see above) is provided. Object |
titleIdentifier.source | Required, if titleIdentifier (see above) is provided. String. |
titleIdentifier.value | Required, if titleIdentifier (see above) is provided. String. |
EMEA Portal
https://genie.portal.gofilex.com/api/method/v1/assets/link/to/title
curl -vX POST https://genie.portal.gofilex.com/api/method/v1/assets/link/to/title -d @link.json --header "Content-Type: application/json" --header "Authorization: Bearer BXrnipNekltq-sHFxpjdd90S17th2Q5mSaRf_4-Rayx"
APAC Portal
https://genie.portal.apac.gofilex.com/api/method/v1/assets/link/to/title
curl -vX POST https://genie.portal.apac.gofilex.com/api/method/v1/assets/link/to/title -d @link.json --header "Content-Type: application/json" --header "Authorization: Bearer BXrnipNekltq-sHFxpjdd90S17th2Q5mSaRf_4-Rayx"
MPS Portal
https://genie.portal.mps.gofilex.com/api/method/v1/assets/link/to/title
curl -vX POST https://genie.portal.mps.gofilex.com/api/method/v1/assets/link/to/title -d @link.json --header "Content-Type: application/json" --header "Authorization: Bearer BXrnipNekltq-sHFxpjdd90S17th2Q5mSaRf_4-Rayx"
NORAM Portal
https://genie.portal.gofilex.bydeluxe.com/api/method/v1/assets/link/to/title
curl -vX POST https://genie.portal.gofilex.bydeluxe.com/api/method/v1/assets/link/to/title -d @link.json --header "Content-Type: application/json" --header "Authorization: Bearer BXrnipNekltq-sHFxpjdd90S17th2Q5mSaRf_4-Rayx"
link.json
{
"assetUuids": [
"3b562358-e9ab-4f69-acb5-b0df5f2dd555",
"23a62988-01f4-47ce-9772-1c33aa629d6f"
],
"titleIdentifier": {
"source": "Deluxe",
"value": "12345"
}
}
}
{
"success": true
}
One thing to note is that the “success” response is based on the validity of the request. As linking assets to a title can be an intensive and time consuming process, there is no reason to keep the request hanging and waiting for the linking process to finish.