Download OpenAPI specification:Download
This API provides services to upload, manipulate and download Global Trade Item data in the CDQ Cloud
-> Covers several operations including the creation, reading, updating, and deletion of Global Trade Items, as well as the management of references between Global Trade Items and business partners. The endpoints under this tag are designed to handle data related to Global Trade Items, which are unique identifiers for products in the global marketplace.
Provide a new Global Trade Item with unique GTIN and name.
OK
Bad Request
{- "gtin": "5099206081901",
- "name": "Business Partner Update Browser"
}
{- "gtin": "5099206081901",
- "name": "Business Partner Update Browser",
- "businessPartnerReferences": [
- {
- "storageId": "72d6900fce6b326088f5d9d91049e3e6",
- "dataSourceId": "648824a691d8d2503d65103e",
- "businessPartnerId": "63e635235c06b7396330fe40",
- "externalId": "The ID managed in the customer's SAP systems."
}
]
}
Create a reference between Global Trade Item and Business Partner.
OK
Bad Request
{- "businessPartnerReferences": [
- {
- "storageId": "72d6900fce6b326088f5d9d91049e3e6",
- "dataSourceId": "648824a691d8d2503d65103e",
- "businessPartnerId": "63e635235c06b7396330fe40",
- "externalId": "The ID managed in the customer's SAP systems."
}
]
}
{- "results": [
- {
- "businessPartnerReference": {
- "storageId": "72d6900fce6b326088f5d9d91049e3e6",
- "dataSourceId": "648824a691d8d2503d65103e",
- "businessPartnerId": "63e635235c06b7396330fe40",
- "externalId": "The ID managed in the customer's SAP systems."
}, - "status": "OK"
}
]
}
Delete references between Global Trade Item and Business Partner.
OK
Bad Request
{- "businessPartnerReferences": [
- {
- "storageId": "72d6900fce6b326088f5d9d91049e3e6",
- "businessPartnerId": "63e635235c06b7396330fe40"
}
]
}
{- "results": [
- {
- "businessPartnerReference": {
- "storageId": "72d6900fce6b326088f5d9d91049e3e6",
- "businessPartnerId": "63e635235c06b7396330fe40"
}, - "status": "OK"
}
]
}
Delete multiple Global Trade Items by GTIN.
required | Array of objects (GlobalTradeItemDelete) non-empty List of Global Trade Items to be deleted. |
OK
{- "globalTradeItems": [
- {
- "gtin": "5099206081901"
}
]
}
{- "results": [
- {
- "globalTradeItem": {
- "gtin": "5099206081901"
}, - "status": "OK"
}
]
}
Provide a list of Global Trade Items with optional filtering and pagination.
OK
{- "total": "67",
- "limit": "100",
- "startAfter": "5712566172571652",
- "nextStartAfter": "5712566172571652",
- "values": [
- {
- "gtin": "5099206081901",
- "name": "Business Partner Update Browser",
- "businessPartnerReferences": [
- {
- "storageId": "72d6900fce6b326088f5d9d91049e3e6",
- "dataSourceId": "648824a691d8d2503d65103e",
- "businessPartnerId": "63e635235c06b7396330fe40",
- "externalId": "The ID managed in the customer's SAP systems."
}
]
}
]
}
Provide a single Global Trade Item with the given GTIN.
OK
{- "globalTradeItem": {
- "gtin": "5099206081901",
- "name": "Business Partner Update Browser",
- "businessPartnerReferences": [
- {
- "storageId": "72d6900fce6b326088f5d9d91049e3e6",
- "dataSourceId": "648824a691d8d2503d65103e",
- "businessPartnerId": "63e635235c06b7396330fe40",
- "externalId": "The ID managed in the customer's SAP systems."
}
]
}, - "status": "OK"
}
Allows updating the Global Trade Item.
OK
{- "name": "Business Partner Update Browser"
}
{- "globalTradeItem": {
- "name": "Business Partner Update Browser"
}, - "status": "OK"
}