Skip to main content
Home
  • AI Mode
  • Supply Chain Orchestration
    fast
    Supply Chain Orchestration
    • Life Sciences Company
    • Direct Material Supplier
    • Contract Manufacturer
    • Third Party Logistics
    • Wholesale Distributor
    • Healthcare Provider
    • Retail Pharmacy
  • Network
  • Products
    fast
    Products
    • Multienterprise Information Network Tower (MINT)
    • Process Orchestration for Empowered Teams (POET)
    • Track-and-Trace
  • Resources
    fast
    Resources
    • Resource Center
    • TraceLink University
    • Partners
    • Community
    • Events
  • About
    fast
    About
    • Our Story
    • Newsroom
    • Culture and Careers
    • Leadership
    • Our Values
    • Corporate Social Responsibility
    • Contact Sales
  • Log In
    • Tracelink Classic
      TraceLink Classic app.tracelink.com
      Redirect
    • Opus Platform
      Opus Platform opus.tracelink.com
      Redirect
Log In
  • Tracelink Classic
    TraceLink Classic app.tracelink.com
    Redirect
  • Opus Platform
    Opus Platform opus.tracelink.com
    Redirect
Tracelink University

Breadcrumb

  1. Home
  2. Resources
  3. TraceLink University

Item APIs

  • Download PDF
  • Share
    • LinkedIn
    • Facebook
    • Mail
    • Twitter

Table of contents

Companies that own or link to Agile Process Teams use these APIs to add, update, and complete items. An Item is a lightweight object instance in Process Orchestration for Empowered Teams, that allows businesses to leverage a simplified object without predefined application functionality, enabling them to model subtypes tailored to their specific needs. Companies can use Items for internal collaboration on tasks which are not time-bound, such as optimizing an inventory management system.

Add Item

Owners and Partners use this API to add a new item to the Owner's company network, including any initial comments or file attachments. The response returns a generated identifier for the new item.

Contact your TraceLink Services representative for more information about using this API.
ClosedAdd Item request

Guidelines

Element Type Description

mutation ItemNew {

item {

new(

Method The mutation for creating an Item
input Object Required. The input parameter.
[payload: payload] Object Required. The values that need to be inserted.
  subType String Name of the Subtype.
  id String ID of the item.
  currentBaseState String For new records, the currentBaseState is DRAFT.
  data Object -
    dueDate Integer Item due date.
    itemTitle String Required. Title details of Item.
    comments Array of Objects Contains comment text and attachment.
    commentText String Comment text.
    attachments String of JSON Data Attachment associated with the comment.
objectAction - For itemNew, the action name is CREATE.
businessObjectIdentifier - The BusinessObjectTypeName and businesssObjectIdentifier(GUID) fields contain information of what data is newly inserted.

Example

mutation ItemNew {
  item {
    new(
      input: {
        item: {
          payload: {
            subType: ""
            id: "TLGUID-1"
            currentBaseState: "Draft"
            data: { 
                itemTitle: "Test Item creation" 
            }
          }
          objectAction: "CREATE"
        }
      }
    ) {
      businessObjectTypeName
      businessObjectIdentifier
    }
  }
}
ClosedAdd Item response

Guidelines

Element Type Description
Response Method -
data Object -
item - -
  new - -
  businessObjectTypeName - Name of the newly inserted item.
  businessObjectIdentifier - GUID of newly inserted Item

Example

{
    "data": {
        "item": {
            "new": {
                "businessObjectTypeName": "item",
                "businessObjectIdentifier": "4fe82f69-605d-4608-a714-fdc279e6dce5",
            }
        }
    }
}

Errors

This app uses standard HTTP response codes. If an error occurs, additional available information regarding the cause of the error is provided in the errMsg element in the relevant response.

Edit Item

Owners and Partners use this API to modify an existing item with new, updated, or corrected information (e.g. adding a comment, updating the assignee company details, fixing a typo) and to update the workflow state (e.g. manually transitioning the base state from To Do to In Progress to indicate that the work assigned in the item has started).

Contact your TraceLink Services representative for more information about using this API.
ClosedEdit Item request

Guidelines

Element Type Description

mutation ItemEdit { workItem {

edit(

Method The mutation for updating the Item.
input object Required.Tthe input parameter.
[payload: payload] object Required. The values that need to be inserted.
  subType   String Name of the Subtype.
id   String Required. The Item GUID to update the exact record.
currentBaseState   String Change the Workflow state from Draft to ToDo/InProgress/Done.
currentSubState   String currentSubState is DRAFT for New records (If subWorkflow configured).
data   Object -
  itemTitle   String Required. Contains the title details of the Item.
comments   Array of Objects Contains comment text and attachment.
  commentText String Comment text.
attachments String of JSON Data Attachment associated with the comment.
objectAction - For workItemEditthe action name will be UPDATE.
{ businessObjectIdentifier updated { id displayIdentifier } } - The BusinessObjectTypeNameand businesssObjectIdentifier (GUID) fields contain information of what data is updated.

Example

mutation ItemEdit {
  item {
    edit(
      input: {
        item: {
          payload: {
            id: "6113a337-6121-4970-ac90-3699b134b759"
            currentBaseState: "Draft"
            data: {
              itemTitle: "Test edit of Item"
              followers: [
                { followerId: "c55ff5ff-66d0-4c31-b2e4-5947a7e21955" }
              ]
              comments: [
                {
                  commentText: "comment added while updating"
                  attachments: [
                    "{\"fileName\":\"test\",\"fileExtension\":\"rtf\",\"mimeType\":\"text/rtf\",\"fileSize\":391,\"s3FileReference\":\"attachments/item/40f9cdd9-dd03-4b10-adfe-40aa57ba2395\",\"fileStatus\":\"UPLOADED\"}"
                  ]
                }
              ]
            }
          }
          objectAction: "UPDATE"
        }
      }
    ) {
      businessObjectTypeName
      businessObjectIdentifier
    }
  }
}
ClosedEdit Item response

Guidelines

Element Type Description
Response Method -
data Object -
item - -
  updated - -
  id - GUID of newly updated Item
displayIdentifier - Readable Identifier which is used with configured prefix value (Eg: POET-111)

Example

{
    "data": {
        "item": {
            "edit": {
                "businessObjectTypeName": "item",
                "businessObjectIdentifier": "6113a337-6121-4970-ac90-3699b134b759",
            }
        }
    }
}

Errors

This app uses standard HTTP response codes. If an error occurs, additional available information regarding the cause of the error is provided in the errMsg element in the relevant response.

Search Item

Owners and Partners can use this API to search for an item in the existing list of items. Provide a list of sort fields, page size, and paging info to search for an item.

Contact your TraceLink Services representative for more information about using this API.
ClosedSearch Item request

Guidelines

Element Type Description
query ItemSearch { workItem { search( Method The query for getting details of Item.
input Object Required. Contains the input parameter.
  queryString String Contains the searching index and it’s values.
sortFields String Sorting index array.
pageSize Integer Page size in numeric.
pagingInfo String Page information.
List of fields that you can pass on to Search method to fetch data - The fields provided in the view GraphQl query will be returned in the response if data is present in the Item.
pagingInfo - -
documents - -
  id String Required. The Item GUID to update the exact record.
currentBaseState String Current Base State Value.
currentSubState String Current Sub Base State Value if Sub workFlows are activated.
lastUpdatedDateTime String Last updated date time.
lastUpdatedDateTimeFormatted String Last updated user's GUID.
data Object -
  currentState String Contains the value of currentSubState if present, otherwise currentBaseState. So, currentState is ultimate State of the Item.
displayIdentifier String Item identifier in readable format with Prefix-Counter(integer).
itemTitle String Title of the item.
creationTimestamp DateTime Creation date time in milliseconds.
creationTimestampFormatted DateTime Creation date time in readable format.
lastModifiedTimestamp DateTime Last modified date time in milliseconds.
lastModifiedTimestampFormatted DateTime Last modified date time in readable format.
createdByUser Object Contains details of the user who created the item.
  userName String User's name who created the item.
userEmail String User's email who created the item.
lastModifiedByUser Object Contains details of the user who modified the item.
  userName String User's name who last updated the item.
userEmail String User's email who last updated the item.
comments Object Contains comment text and attachment.
  commentIdentifier String Comment GUID to differentiate between already inserted comment(Auto-generated Field).
commentText String Comment Text.
attachments String of JSON Data Attachment.
attachmentsFormatted String Formatted Attachments details.
commentedDateTime Integer Commented Date and Time.
commentedDateTimeFormatted String Formatted comment date time.
commentAuthorId String Comment Author GUID - user GUID.
commentAuthorIdFormatted String Formatted value of comment author.
followers Object Contains the follower IDs.
  followerId String Following users' GUID

Example

query ItemSearch {
  item {
    search(
      input: {
        queryString: "(indexLuceneSubType:\"\" OR indexLuceneSubType:null)"
        sortFields: [{ field: "index-lastUpdatedDateTime", sortAsc: true }]
        pageSize: 10
        pagingInfo: ""
      }
    ) {
      pagingInfo
      documents {
        id
        subType
        lastUpdatedDateTime
        lastUpdatedDateTimeFormatted
        data {
          displayIdentifier
          itemTitle
        }
      }
      facets {
        indexName
        path
        matchedDocsCount
        childFacetsCount
        childFacets {
          facetedName
          matchedDocsCount
        }
      }
    }
  }
}
ClosedSearch Item response

Guidelines

Element Type Description
Response Method -
data Object -
  workItem - -
  search - -
  pagingInfo - Page information if the current page is not the first one.
documents - The details queried for the item (e.g. display identifier, item title, current state, comments, followers, etc.)

Example

{
  "data": {
    "item": {
      "search": {
        "pagingInfo": "eyJwYWdlSW5kZXgiOjEsInBhZ2luZ0luZm9LZXkiOm51bGx9",
        "documents": [
          {
            "id": "fd5dc5ee-6576-4dd7-9f06-2832e9cba113",
            "subType": "",
            "lastUpdatedDateTime": 1734682790757,
            "lastUpdatedDateTimeFormatted": "12/20/24, 8:19 AM (GMT)",
            "data": {
              "displayIdentifier": "ITEM-19",
              "itemTitle": "Add Item with AssigneeCompany",
              "__typename": "ItemData"
            },
            "__typename": "Item"
          },
          {
            "id": "b14e4684-aba8-4ed5-b0a0-da94d63f4fdd",
            "subType": "",
            "lastUpdatedDateTime": 1734682958685,
            "lastUpdatedDateTimeFormatted": "12/20/24, 8:22 AM (GMT)",
            "data": {
              "displayIdentifier": "ITEM-29",
              "itemTitle": "dddddd",
              "__typename": "ItemData"
            },
            "__typename": "Item"
          },
          {
            "id": "ad57eb8c-105b-4180-999a-37707f3c1420",
            "subType": "",
            "lastUpdatedDateTime": 1734687220952,
            "lastUpdatedDateTimeFormatted": "12/20/24, 9:33 AM (GMT)",
            "data": {
              "displayIdentifier": "ITEM-16",
              "itemTitle": "create new work Item",
              "__typename": "ItemData"
            },
            "__typename": "Item"
          }
        ],
        "facets": [],
        "__typename": "ItemSearchResult"
      },
      "__typename": "ItemQueryOps"
    }
  }
}

Errors

This app uses standard HTTP response codes. If an error occurs, additional available information regarding the cause of the error is provided in the errMsg element in the relevant response.

Delete Item

Owners and Partners use this API to delete an item that is no longer required. Provide the item identifier in the input field and the current base state to delete an item.

Contact your TraceLink Services representative for more information about using this API.
ClosedDelete Item request

Guidelines

Element Type Description

mutation itemDelete { item {

delete(

Method The mutation for deleting Item.
input Object Required. Input will be first paramater that holds input parameter
  id String Required. Enter the WorkItem GUID to update the exact record
{ businessObjectIdentifier updated { id displayIdentifier } } - The BusinessObjectTypeName and businesssObjectIdentifier (GUID) fields contain information of what data is deleted.

Example

mutation ItemDelete {
  item {
    delete(input: { id: "ad57eb8c-105b-4180-999a-37707f3c1420" }) {
      businessObjectTypeName
      businessObjectIdentifier
    }
  }
}
ClosedDelete Item response

Guidelines

Element Type Description
Response Method -
data Object -
  item - -
  new - -
  id - GUID of deleted Item.
displayIdentifier - Readable Identifier which is used with configured prefix value (Eg: POET-111).

Example

{
  "data": {
    "item": {
      "delete": {
        "businessObjectTypeName": "item",
        "businessObjectIdentifier": "ad57eb8c-105b-4180-999a-37707f3c1420"
      }
    }
  }
}

Errors

This app uses standard HTTP response codes. If an error occurs, additional available information regarding the cause of the error is provided in the errMsg element in the relevant response.

Follow Item

Owners and Partners use this API to start following an item. Provide the item identifier to start following the item.

Contact your TraceLink Services representative for more information about using this API.
ClosedFollow Item request

Guidelines

Element Type Description

mutation ItemStartFollow { item {

startFollow(

Method The mutation for updating the Item followers list.
input Object Required. The input parameter.
  id String Required. The WorkItem GUID to update the exact record.
{ businessObjectIdentifier updated { id displayIdentifier } } - The BusinessObjectTypeName, businesssObjectIdentifier(GUID) fields contain information of what data is updated.

Example

mutation ItemStartFollow {
  item {
    startFollow(input: {id: "2335af1c-4193-469d-b9c2-61400032f74e"}) {
      businessObjectTypeName
      businessObjectIdentifier
      businessObjectDataVersion
      mutateMessage
      isAsync
      updated {
        id
        objectTypeName
        dataVersion
        __typename
      }
      __typename
    }
    __typename
  }
}
ClosedFollow Item response

Guidelines

Element Type Description
Response Method -
data Object -
  item - -
  new - -
  id - GUID of newly updated Item.
displayIdentifier - Readable Identifier which is used with configured prefix value (Eg: POET-111).

Example

{
    "data": {
        "item": {
            "startFollow": {
                "businessObjectTypeName": "item",
                "businessObjectIdentifier": "2335af1c-4193-469d-b9c2-61400032f74e",
                "businessObjectDataVersion": 4,
                "mutateMessage": "Successfully followed the Item",
                "isAsync": null,
                "updated": [
                    {
                        "id": "2335af1c-4193-469d-b9c2-61400032f74e",
                        "objectTypeName": "item",
                        "dataVersion": 4,
                        "__typename": "MutateOperationResultEntryTypeDef"
                    }
                ],
                "__typename": "MutateOperationResultTypeDef"
            },
            "__typename": "ItemMutationOps"
        }
    }
}

Errors

This app uses standard HTTP response codes. If an error occurs, additional available information regarding the cause of the error is provided in the errMsg element in the relevant response.

Unfollow Item

Owners and Partners use this API to stop following an item. Provide the item identifier to stop following an item.

Contact your TraceLink Services representative for more information about using this API.
ClosedUnfollow Item request

Guidelines

Element Type Description
mutation ItemStopFollow { item { stopFollow( Method The mutation for updating the Item followers list.
input Object Required. The input parameter.
  id String Required. The WorkItem GUID to update the exact record.
{ businessObjectIdentifier } - The BusinessObjectTypeName and businesssObjectIdentifier (GUID) fields contain information of what data is updated.

Example

mutation ItemStopFollow {
  item {
    stopFollow(input: {id: "2335af1c-4193-469d-b9c2-61400032f74e"}) {
      businessObjectTypeName
      businessObjectIdentifier
      businessObjectDataVersion
      mutateMessage
      isAsync
      updated {
        id
        objectTypeName
        dataVersion
        __typename
      }
      __typename
    }
    __typename
  }
}
ClosedUnfollow Item response

Guidelines

Element Type Description
Response Method -
data Object -
  item - -
  new - -
  id - GUID of newly updated Item.
displayIdentifier - Readable Identifier which is used with configured prefix value (Eg: POET-111).

Example

{
    "data": {
        "item": {
            "stopFollow": {
                "businessObjectTypeName": "item",
                "businessObjectIdentifier": "2335af1c-4193-469d-b9c2-61400032f74e",
                "businessObjectDataVersion": 5,
                "mutateMessage": "Successfully unfollowed the Item",
                "isAsync": null,
                "updated": [
                    {
                        "id": "2335af1c-4193-469d-b9c2-61400032f74e",
                        "objectTypeName": "item",
                        "dataVersion": 5,
                        "__typename": "MutateOperationResultEntryTypeDef"
                    }
                ],
                "__typename": "MutateOperationResultTypeDef"
            },
            "__typename": "ItemMutationOps"
        }
    }
}

Errors

This app uses standard HTTP response codes. If an error occurs, additional available information regarding the cause of the error is provided in the errMsg element in the relevant response.

View Item

Owners and Partners use this API to view an item. Provide the item identifier to view an item.

Contact your TraceLink Services representative for more information about using this API.
ClosedView Item request

Guidelines

Element Type Description
query ItemView { item { view( Method The query for getting details of the Item.
input Object Required. The input parameter.
  id String Required. The Item GUID to update the exact record.
List of fields that you can pass on to View method to fetch data   The fields provided in the view GraphQl query will be returned in the response if data is present in the item.
id String GUID of Item.
currentBaseState String Current Base State Value.
currentSubState String Current Sub Base State Value if Sub workflows are activated.
lastUpdatedDateTime Integer Last updated date time.
lastUpdatedDateTimeFormatted String Last updated users GUID.
data Object  
  currentState String This field will hold value of currentSubState if present, otherwise currentBaseState. So, currentState is ultimate State of the Item.
displayIdentifier String WorkItem identifier in readable format with Prefix-Counter(integer).
itemTitle String Title of the item.
dueDate Integer Due date of the item.
dueDateFormatted String Formatted value of due in readable format.
creationTimestamp DateTime Creation date time in milliseconds.
creationTimestampFormatted DateTime Creation date time in readable format.
lastModifiedTimestamp DateTime Last modified date time in milliseconds.
lastModifiedTimestampFormatted DateTime Last modified date time in readable format.
createdByUser Object Contains details of the user who created the item.
  userName String User's name who created the item.
userEmail String User's email who created the item.
lastModifiedByUser Object Contains details of the user who modified the item.
  userName String User's name who last updated the item.
userEmail Integer User's email who last updated the item.
followers Object Contains the follower IDs.
  followerId String Following users' GUID.

Example

query ItemView {
  item {
    view(input: {id: "04718cfd-8b81-47ff-a07d-fbab7d6bf628"}) {
      id
      currentBaseState
      currentSubState
      lastUpdatedDateTime
      lastUpdatedDateTimeFormatted
      data {
        currentState
        comments {
          commentIdentifier
          commentText
          attachments
          attachmentsFormatted
          commentedDateTime
          commentedDateTimeFormatted
          commentAuthorId
          commentAuthorIdFormatted
          __typename
        }
        displayIdentifier
        itemTitle
        initiatingCompany {
          primaryIdentifierType
          primaryIdentifierValue
          businessName
          __typename
        }
        followers {
          followerId
          followerIdFormatted
          __typename
        }
        __typename
      }
      __typename
    }
    __typename
  }
}
ClosedView Item response

Guidelines

  Element Type Description
Response Method -
data Object -
  item - -
  view - -
  id String GUID of Item.
currentBaseState String Current Base State Value.
currentSubState String Current Sub Base State Value if Sub workflows are activated.
lastUpdatedDateTime Integer Last updated date time.
lastUpdatedDateTimeFormatted String Last updated users GUID.
data Object -
  currentState String This field will hold value of currentSubState if present, otherwise currentBaseState. So, currentState is ultimate State of the Item.
displayIdentifier String WorkItem identifier in readable format with Prefix-Counter(integer).
itemTitle String Title of the item.
dueDate Integer Due date of the item.
dueDateFormatted String Formatted value of due in readable format.
creationTimestamp DateTime Creation date time in milliseconds.
creationTimestampFormatted DateTime Creation date time in readable format.
lastModifiedTimestamp DateTime Last modified date time in milliseconds.
lastModifiedTimestampFormatted DateTime Last modified date time in readable format.
createdByUser Object Contains details of the user who created the item.
  userName String User's name who created the item.
userEmail String User's email who created the item.
lastModifiedByUser Object Contains details of the user who modified the item.
  userName String User's name who last updated the item.
userEmail Integer User's email who last updated the item.
followers Object Contains the follower IDs.
  followerId String Following users' GUID.

Example

{
    "data": {
        "item": {
            "view": {
                "id": "04718cfd-8b81-47ff-a07d-fbab7d6bf628",
                "currentBaseState": "Done",
                "currentSubState": null,
                "lastUpdatedDateTime": 1735814924326,
                "lastUpdatedDateTimeFormatted": "1/2/25, 10:48 AM (GMT)",
                "data": {
                    "currentState": "Done",
                    "comments": [
                        {
                            "commentIdentifier": "2fa26034-6bd0-4d52-a3a0-c60ac6ed40c4",
                            "commentText": "Added by partner",
                            "attachments": [
                                "{\"fileName\":\"Original_File\",\"fileExtension\":\"txt\",\"mimeType\":\"text/plain\",\"fileSize\":10,\"s3FileReference\":\"\",\"fileStatus\":\"EMPTY\"}"
                            ],
                            "attachmentsFormatted": [
                                "missing file"
                            ],
                            "commentedDateTime": 1734600920096,
                            "commentedDateTimeFormatted": "Dec 19, 2024, 9:35:20 AM (GMT)",
                            "commentAuthorId": "a3ef9f60-0276-11ed-ad1d-0242ac110011",
                            "commentAuthorIdFormatted": "Matt Damon",
                            "__typename": "CommentTypeDefinition"
                        },
                        {
                            "commentIdentifier": "6e654588-dcde-4361-aaf0-3b77539d0e90",
                            "commentText": "Only comment Text",
                            "attachments": null,
                            "attachmentsFormatted": null,
                            "commentedDateTime": 1734601742830,
                            "commentedDateTimeFormatted": "Dec 19, 2024, 9:49:02 AM (GMT)",
                            "commentAuthorId": "a3ef9f60-0276-11ed-ad1d-0242ac110011",
                            "commentAuthorIdFormatted": "Matt Damon",
                            "__typename": "CommentTypeDefinition"
                        },
                        {
                            "commentIdentifier": "a8fc2d9d-f207-4636-88d7-b800eb08ce0f",
                            "commentText": "Both comment and attachment",
                            "attachments": [
                                "{\"fileName\":\"Original_File\",\"fileExtension\":\"txt\",\"mimeType\":\"text/plain\",\"fileSize\":10,\"s3FileReference\":\"attachments/item/7a3891b3-500a-470e-9a78-6d92ccafa342\",\"fileStatus\":\"UPLOADED\"}"
                            ],
                            "attachmentsFormatted": [
                                "Original_File.txt (10 bytes)"
                            ],
                            "commentedDateTime": 1734601742830,
                            "commentedDateTimeFormatted": "Dec 19, 2024, 9:49:02 AM (GMT)",
                            "commentAuthorId": "a3ef9f60-0276-11ed-ad1d-0242ac110011",
                            "commentAuthorIdFormatted": "Matt Damon",
                            "__typename": "CommentTypeDefinition"
                        },
                        {
                            "commentIdentifier": "bdbdef23-5846-4b22-8681-7bf05a9de91b",
                            "commentText": "multiple attachment",
                            "attachments": [
                                "{\"fileName\":\"Original_File\",\"fileExtension\":\"txt\",\"mimeType\":\"text/plain\",\"fileSize\":10,\"s3FileReference\":\"attachments/item/2651a7ca-b580-4dda-9ca5-345ab34eefb1\",\"fileStatus\":\"UPLOADED\"}",
                                "{\"fileName\":\"Test document 1\",\"fileExtension\":\"png\",\"mimeType\":\"image/png\",\"fileSize\":43561,\"s3FileReference\":\"attachments/item/80bbeb25-c918-4939-b9ed-97a77af37795\",\"fileStatus\":\"UPLOADED\"}",
                                "{\"fileName\":\"Sample-SQL-File-10-Rows\",\"fileExtension\":\"sql\",\"mimeType\":\"\",\"fileSize\":1593,\"s3FileReference\":\"attachments/item/43e1a1fc-c00d-48db-9291-9f49ab695a4b\",\"fileStatus\":\"UPLOADED\"}",
                                "{\"fileName\":\"sample\",\"fileExtension\":\"pdf\",\"mimeType\":\"application/pdf\",\"fileSize\":18810,\"s3FileReference\":\"attachments/item/7ffd0439-7bc7-41be-90e1-cffd4ceb0583\",\"fileStatus\":\"UPLOADED\"}",
                                "{\"fileName\":\"SampleAudio_0\",\"fileExtension\":\"mp3\",\"mimeType\":\"audio/mpeg\",\"fileSize\":725240,\"s3FileReference\":\"attachments/item/3217df4c-a2d5-4a06-b472-ad183a5beffd\",\"fileStatus\":\"UPLOADED\"}",
                                "{\"fileName\":\"SampleDOCFile_5000kb\",\"fileExtension\":\"doc\",\"mimeType\":\"application/msword\",\"fileSize\":5120512,\"s3FileReference\":\"attachments/item/3b44e992-98be-43bd-b1ae-7b9540c34a27\",\"fileStatus\":\"UPLOADED\"}",
                                "{\"fileName\":\"SampleVideo_1280x720_30mb\",\"fileExtension\":\"mp4\",\"mimeType\":\"video/mp4\",\"fileSize\":31491130,\"s3FileReference\":\"attachments/item/80f407a9-fdb9-4183-8f57-022889c786d6\",\"fileStatus\":\"UPLOADED\"}",
                                "{\"fileName\":\"SampleXLSFile_6800kb\",\"fileExtension\":\"xls\",\"mimeType\":\"application/vnd.ms-excel\",\"fileSize\":6971392,\"s3FileReference\":\"attachments/item/903222f7-9aa1-4685-9a22-1d3c432e3c8e\",\"fileStatus\":\"UPLOADED\"}",
                                "{\"fileName\":\"SampleZIPFile_10mbmb\",\"fileExtension\":\"zip\",\"mimeType\":\"application/zip\",\"fileSize\":10503575,\"s3FileReference\":\"attachments/item/15a66dbe-2e9d-43bb-b4c3-fdbc3304b8f5\",\"fileStatus\":\"UPLOADED\"}"
                            ],
                            "attachmentsFormatted": [
                                "Original_File.txt (10 bytes)",
                                "Test document 1.png (42 KB)",
                                "Sample-SQL-File-10-Rows.sql (1 KB)",
                                "sample.pdf (18 KB)",
                                "SampleAudio_0.mp3 (708 KB)",
                                "SampleDOCFile_5000kb.doc (4 MB)",
                                "SampleVideo_1280x720_30mb.mp4 (30 MB)",
                                "SampleXLSFile_6800kb.xls (6 MB)",
                                "SampleZIPFile_10mbmb.zip (10 MB)"
                            ],
                            "commentedDateTime": 1734602320847,
                            "commentedDateTimeFormatted": "Dec 19, 2024, 9:58:40 AM (GMT)",
                            "commentAuthorId": "a3ef9f60-0276-11ed-ad1d-0242ac110011",
                            "commentAuthorIdFormatted": "Matt Damon",
                            "__typename": "CommentTypeDefinition"
                        }
                    ],
                    "displayIdentifier": "ITEM-27",
                    "itemTitle": "Added by partner - test",
                    "initiatingCompany": {
                        "primaryIdentifierType": "GLN",
                        "primaryIdentifierValue": "2054051864409",
                        "businessName": "QAPartnerCorp1202409240834280621",
                        "__typename": "InitiatingCompanyLocationTypeDefinition"
                    },
                    "followers": [
                        {
                            "followerId": "a3ef9f60-0276-11ed-ad1d-0242ac110011",
                            "followerIdFormatted": "Matt Damon",
                            "__typename": "ItemFollowerTypeDefinition"
                        },
                        {
                            "followerId": "c55ff5ff-66d0-4c31-b2e4-5947a7e21955",
                            "followerIdFormatted": "Patricia Reynolds",
                            "__typename": "ItemFollowerTypeDefinition"
                        }
                    ],
                    "__typename": "ItemData"
                },
                "__typename": "Item"
            },
            "__typename": "ItemQueryOps"
        }
    }
}

Errors

This app uses standard HTTP response codes. If an error occurs, additional available information regarding the cause of the error is provided in the errMsg element in the relevant response.

Table of contents

Related Content
Related content
Forecast plan (IDoc)
Forecasting APIs allow companies to exchange data about anticipated product demand and supply availability with upstream supply chain Partners without giving these Partners access to their serialization system of record.
View More
Related content
Forecast plan (X12)
Forecasting APIs allow companies to exchange data about anticipated product demand and supply availability with upstream supply chain Partners without giving these Partners access to their serialization system of record.
View More
Related content
Forecast plan response (IDoc)
Forecasting APIs allow companies to exchange data about anticipated product demand and supply availability with downstream supply chain Partners without giving these Partners access to their serialization system of record.
View More

Cookie Settings

When you visit any website, it may store or retrieve information on your browser, mostly in the form of cookies or similar tracking technologies. Please see below for an overview of the categories of cookies and similar technologies used on this site. You can allow or deny some of all of them, except Strictly Necessary Cookies which are required to provide the site to you. However, blocking some types of cookies may impact your experience of the site and services we are able to offer.

Please see our Cookie Policy for more details, including a list of the cookies we use. You can change your consent options at any time by following the “Cookie Settings” link in the Cookie Policy.
'Strictly Necessary' cookies let you move around the Site and use essential features like secure areas, shopping baskets and online billing. Without these cookies you would not be able to navigate between pages or use certain vital features of our Site, so we do not require your consent for their use. These cookies don't gather any information about you that could be used for marketing or remembering where you've been on the internet. For example, we use these Strictly Necessary cookies to identify you as being logged in to the Site. You can set your browser to block or alert you about these cookies, but if you do so, some parts of the Site will not work.
'Performance' cookies collect information about how you use the Site, such as which pages you visit, the time spent on the Site and if you experience any errors. We use performance cookies to provide aggregated statistics on how the Site is used and help us improve the Site including by measuring any errors that occur.
'Functional' cookies are used to provide services or to remember settings to improve your visit. We use 'Functionality' cookies to remember your settings and choices and show you when you're logged in to the Site.
‘Targeting' cookies are linked to services provided by third parties, such as 'Like' buttons and 'Share' buttons. The third party provides these services in return for recognizing that you have visited the Site. We also use 'Targeting' cookies to gather information that could be used to display content that we think may interest you.

Footer

  • Quick Links
    Get a Demo
    TraceLink Network Directory
    The Network
    OPUS Platform
    Technical Support
    Open Jobs
    API: Terms of Use
  • Products
    Multienterprise Information Network Tower
    U.S. DSCSA Compliance
    Targeted Recalls
    Process Orchestration for Empowered Teams
    Serialization
    Global Compliance
  • Resources
    Resource Center
    Events
    TraceLink University
    Partners
    Community
  • About TraceLink
    Our Story
    Newsroom
    Culture & Careers
    Leadership
    Our Values
    Corporate Social Responsibility
  • Hot Topics
    Transaction Integration
    Supply Chain Visibility
    DSCSA Compliance
    Process Orchestration
    Kazakhstan Compliance for Pharmaceuticals
    Kyrgyzstan Compliance for Pharmaceuticals
Follow Us on Social
Facebook
Linkedin
X
Legal & Trust.
© TraceLink Inc. 2009-2026 All Rights Reserved
Contact Us Today
Contact us today to begin your journey toward agentic supply chain orchestration — digitalize your end-to-end supply chain with intelligence, flexibility, and collaborative orchestration.
Contact Us
Stay Up-to-Date
Subscribe to receive industry insights and stay at the forefront of evolving trends.
Subscribe