This Help Center is a preview of a future release. The final Help Center will be available on the Validation date.
Type = API Reference,; Topic = Supply Chain Work Management (SCWM),;Persona = Solution Designer, TraceLink Administrator, User,; Orchestration = Clinical Supply,; Function = Supply Chain,
Item APIs
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.


Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
mutation ItemNew { item { new( |
Method | Use the mutation ItemNew for creating an Item | |||
input | Object | Required. Contains the input parameter | |||
[payload: payload] | Object | Required. Contains the actual values that need to be inserted | |||
subType | String | Enter the Subtype name | |||
id | String | Enter the ID | |||
currentBaseState | String | For new records, the currentBaseState is DRAFT | |||
data | Object | ||||
dueDate | Integer | Item due date | |||
itemTitle | String | Required.Contains the title details of Item | |||
comments | Array of Objects | ||||
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
}
}
}

Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
Response | |||||
data | |||||
item | |||||
new | |||||
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).


Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
mutation ItemEdit { workItem { edit( |
Use the mutation ItemEdit for updating the Item. | ||||
Method | |||||
input | object | Required.Contains the input parameter | |||
[payload: payload] | object | Required. Contains the actual values that need to be inserted. | |||
subType | String | Provide a Subtype name | |||
id | String | Required. Enter the Item GUID to update the exact record | |||
currentBaseState | String | Change the Workflow state from Draft to ToDo/InProgress/Closed | |||
currentSubState | String | currentSubState is DRAFT for New records (If subWorkflow configured) | |||
data | Object | ||||
itemTitle | Integer | Required. Contains the title details of the Item | |||
comments | Array of Objects | ||||
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
}
}
}

Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
Response | |||||
data | |||||
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.


Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
query ItemSearch { workItem { search( | Use the query ItemView for getting details of Item | ||||
input | 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 | Required. Enter the Item GUID to update the exact record | ||||
currentBaseState | Current Base State Value | ||||
currentSubState | Current Sub Base State Value if Sub workFlows are activated | ||||
lastUpdatedDateTime | Last updated date time | ||||
lastUpdatedDateTimeFormatted | 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 | ||||
userName | User's name who created the item | ||||
userEmail | User's email who created the item | ||||
lastModifiedByUser | Object | ||||
userName | User's name who last updated the item | ||||
userEmail | User's email who last updated the item | ||||
comments | |||||
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 | |||||
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
}
}
}
}
}

Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
Response | |||||
data | |||||
workItem | |||||
search | |||||
pagingInfo | Page information if the current page is not the first one | ||||
documents |
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.


Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
mutation itemDelete { item { delete( |
Use the mutation ItemDelete for deleting Item. | ||||
Method | |||||
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 updated. |
Example
mutation ItemDelete {
item {
delete(input: { id: "ad57eb8c-105b-4180-999a-37707f3c1420" }) {
businessObjectTypeName
businessObjectIdentifier
}
}
}

Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
Response | |||||
data | |||||
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.


Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
mutation ItemStartFollow { item { startFollow( |
Use the mutation ItemStartFollow for updating the Item followers list | ||||
Method | |||||
input | object | Required. Contains the input parameter | |||
id | String | Required. Enter 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
}
}

Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
Response | |||||
data | |||||
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.


Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
mutation ItemStopFollow { item { stopFollow( | Use the mutation ItemStopFollow for updating the Item followers list | ||||
Method | |||||
input | object | Required. Contains the input parameter | |||
id | String | Required. Enter 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
}
}

Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
Response | |||||
data | |||||
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.


Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
query ItemView { item { view( | Use the query ItemView for getting details of the Item | ||||
Method | |||||
input | Required. Contains the input parameter | ||||
id | String | Required. Enter 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 | ||||
userName | String | User's name who created the item | |||
userEmail | String | User's email who created the item | |||
lastModifiedByUser | Object | ||||
userName | String | User's name who last updated the item | |||
userEmail | Integer | User's email who last updated the item | |||
followers | Object | ||||
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
}
}

Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
Response | |||||
data | |||||
item | |||||
view | |||||
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.
Tag end