Allows to create a new title.
FIELD | DESCRIPTION |
name |
Required. String. The name of the title. |
identifier |
Optional. Object. A unique identifier for the title. |
identifier.source | Required, if identifier (see above) is provided. String. |
identifier.value | Required, if identifier (see above) is provided. String. |
releaseDate |
Required. String. Date format ISO-8601 The date/time the title is released. If you leave out the timezone offset the time will be used as the wall-clock time of the first provided country's timezone. |
countries |
Array of Strings. Country format ISO-3166-1 alpha-2 If none is provided, then the countries of the content owner will be taken into account. |
ownerId |
Required, if no ownerIdentifier (see below) is provided. String. The content owner that owns the new title. |
ownerIdentifier |
Required, if no ownerId (see above) is provided. Object. The content owner that owns the new title. |
ownerIdentifier.source | Required if the ownerIdentifier (see above) is provided. String. |
ownerIdentifier.value | Required if the ownerIdentifier (see above) is provided. String. |
bookerIds |
Array of Strings. If provided, it shouldn't be empty. One or more bookers that will be explicitly linked to this title. |
EMEA Portal
https://genie.portal.gofilex.com/api/method/v1/title/add
curl -vX POST https://genie.portal.gofilex.com/api/method/v1/title/add -d @title.json --header "Content-Type: application/json" --header "Authorization: Bearer BXrnipNekltq-sHFxpjdd90S17th2Q5mSaRf_4-Rayx"
APAC Portal
https://genie.portal.apac.gofilex.com/api/method/v1/title/add
curl -vX POST https://genie.portal.apac.gofilex.com/api/method/v1/title/add -d @title.json --header "Content-Type: application/json" --header "Authorization: Bearer BXrnipNekltq-sHFxpjdd90S17th2Q5mSaRf_4-Rayx"
MPS Portal
https://genie.portal.mps.gofilex.com/api/method/v1/title/add
curl -vX POST https://genie.portal.mps.gofilex.com/api/method/v1/title/add -d @title.json --header "Content-Type: application/json" --header "Authorization: Bearer BXrnipNekltq-sHFxpjdd90S17th2Q5mSaRf_4-Rayx"
NORAM Portal
https://genie.portal.gofilex.bydeluxe.com/api/method/v1/title/add
curl -vX POST https://genie.portal.gofilex.bydeluxe.com/api/method/v1/title/add -d @title.json --header "Content-Type: application/json" --header "Authorization: Bearer BXrnipNekltq-sHFxpjdd90S17th2Q5mSaRf_4-Rayx"
title.json
{
"identifier": {
"source": "deluxe",
"value": "1234567"
},
"name": "A new Title",
"releaseDate": "2021-12-16T12:00:00.000Z",
"ownerId": "rwy3YWoaHJNFaoQnh",
"countries": [ "BE", "NL" ],
"bookerIds": [ "vxrZrpJw9XcKPfLmxK" ]
}
{
"success": true,
"titleId": "CoNL6Q2qkouMY7vpK"
}