Shared document review APIs
Companies that own or link to a network use these APIs to do the following for a document review of any type:
- View and manage comments and attachments
- View activity history
- Manage followers
Add Comment For Review
Owners and Partners use this API to add comments and attach files to an existing review.
Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
header | – | Required. The request header. | |||
headerVersion | Integer | Required. The version identifier for the request.1 . |
|||
eventName | String | Required. The fully qualified name of the request event.agile-process-teams:add-comment-for-review:v1 . |
|||
ownerId | String | Required. The identifier for the Owner company associated with the request. | |||
appName | String | Required. The application that owns the event.agile-process-teams . |
|||
processNetworkId | String |
|
|||
dataspace | String | Required. The dataspace within the environment where the request is being made. Valid value for the Production and Validation environments is default . |
|||
payload | – |
|
|||
processId | String |
|
|||
processType | String |
|
|||
aptCommentBox | Object |
Contains any comments or files to attach to the document review. |
|||
aptComment | Array | One or more comments about the document review or explanations for the attachments that the user wants to provide. | |||
commentText | String | The text of the comment. Cannot exceed 5000 characters. | |||
visibilityType | Enum |
Conditionally required to submit the comment. Determines whether process team members from the Partner company associated with the document review can view the comment. Valid values:
|
|||
addAttachment | Array | One or more relevant files to attach to the document review. Supported file formats are DOC, TXT, CSV, JPEG, PNG, and PDF. | |||
fileName | String | The name of the file |
|||
fileSize | String | The size of the file. Cannot exceed 25MB. | |||
visibilityType | Enum |
Conditionally required to submit the attached file. Determines whether process team members from the Partner company associated with the document review can view the attached file. Valid values:
|
|||
requestIdentifier | String | The identifier for the upload request provided by File Import and Export Manager. |
Example
{
"header": {
"headerVersion": 1,
"eventName": "agile-process-teams:add-comment-for-review:v1",
"ownerId": "94f94f37-2772-4b39-8041-9c2dcfcfff82",
"processNetworkId": "a70ca41a-ef4d-4b5a-b243-26cff72434ce",
"appName": "agile-process-teams",
"dataspace": "default"
},
"payload": {
"id": "a67d7261-33b1-4be6-9760-61ae8fe9eed3",
"processType": "review",
"aptCommentBox":{
"aptComment":{
"commentText": "Attaching latest order documentation per Jen's request",
"visibilityType": "Public"
},
"addAttachment":[
{
"fileName" : "INC-4098_shipping-order.pdf",
"fileSize" : "3mb",
"visibilityType": "Public",
"requestIdentifier": "4383a452-1e19-4aa6-98fe-84c9f7a3bd16"
}
]
}
}
}
Guidelines
Element | Type | Description | |
---|---|---|---|
header | – | Required. The response header. | |
headerVersion | Integer | Required. The version identifier for the response.1 . |
|
eventName | String | Required. The fully qualified name of the response event.agile-process-teams:add-comment-for-review-response:v1 . |
|
ownerId | String | Required. The identifier for the Owner company associated with the request. | |
isErr | Boolean |
Required. Indicates whether the request was successful. Valid values:
|
|
errCode | String | Required. The status code of the request. 200_OK indicates that the request was successful. |
|
errMsg | String |
Conditionally required if the call is unsuccessful. The message associated with the error code. |
|
licensePlate | String | Required. The unique identifier for the request and response instance. | |
exceptionName | String |
The exception thrown based on the error code. Valid values:
|
|
payload | – |
Required. |
|
commentId | String | Conditionally required if the call is successful. The identifier for the added comment. |
Example
{
"header": {
"headerVersion": 1,
"eventName": "agile-process-teams:add-comment-for-review-response:v1",
"ownerId": "94f94f37-2772-4b39-8041-9c2dcfcfff82",
"isErr": false,
"errCode": "200_OK",
"licensePlate": "vXPsFz"
},
"payload": {
"commentId": "a67d7261-33b1-4be6-9760-61ae8fe9eed3"
}
}
Errors
Element | Error Messages | Description |
---|---|---|
authorization | User does not have permission to add comments. | The error occurs if the user does not have the | permission.
id | Process ID is required. | The error occurs if the source is empty or null. |
id | [id] does not exist. | The error occurs if the source does not exist in the network. |
processType | Process Type is required. | The error occurs if the source is empty or null. |
processType | Process Type must be a valid value. | The error occurs if the source is not a valid value from the enumeration list. |
aptComment | Comment is greater than max length. |
The error occurs if the source exceeds the maximum length of 5000 characters. |
aptComment | Comment visibility type must be Public or Internal. |
The error occurs if the source is populated and visibilityType does not equal |
addAttachment | Attachment file size is greater than max size. |
The error occurs if the source exceeds the maximum file size of 25MB. |
addAttachment | Attachment visibility type must be Public or Internal. |
The error occurs if the source is populated and visibilityType does not equal |
This app
Edit Comment For Review
Owners and Partners use this API to modify or remove existing comments and files attached to a review. Comments and attachments can only be edited by the user that created the comment or attachment.
Upon successful removal, the attachment is marked deleted (isDeleted = true
) and will display as a deleted comment in the activity history.
Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
header | – | Required. The request header. | |||
headerVersion | Integer | Required. The version identifier for the request.1 . |
|||
eventName | String | Required. The fully qualified name of the request event.agile-process-teams:edit-comment-for-review:v1 . |
|||
ownerId | String | Required. The identifier for the Owner company associated with the request. | |||
appName | String | Required. The application that owns the event.agile-process-teams . |
|||
processNetworkId | String |
|
|||
dataspace | String | Required. The dataspace within the environment where the request is being made. Valid value for the Production and Validation environments is default . |
|||
payload | – | Required. The request body. | |||
commentId | String |
Required. The identifier for the comment to edit. |
|||
processType | Enum |
Required. The process type for the review being commented on. Valid values:
|
|||
aptCommentBox | Object |
Contains any comments or files to edit. |
|||
aptComment | Array | One or more comments about the review or descriptions of the attachments that the user wants to provide. | |||
commentText | String | Required. The text of the comment. Cannot exceed 5000 characters. | |||
visibilityType | Enum |
Conditionally required to submit the comment. Determines whether process team members from the Partner company associated with the incident can view the comment. Valid values:
|
|||
addAttachment | Array | One or more relevant files to attach to the incident. Supported file formats are DOC, TXT, CSV, JPEG, PNG, and PDF. | |||
fileName | String | Required. The name of the file. Cannot exceed 255 characters. | |||
fileSize | String | Required.The size of the file. Cannot exceed 25MB. | |||
visibilityType | Enum |
Conditionally required to submit the attached file. Determines whether process team members from the Partner company associated with the incident can view the attached file. Valid values:
|
|||
requestIdentifier | String |
Required. The identifier for the upload request provided by File Import and Export Manager. |
|||
removeAttachment | Array | One or more existing attachments to remove from the review. | |||
attachmentId | String | The identifier for the attachment to remove. |
Example
{
"header": {
"headerVersion": 1,
"eventName": "agile-process-teams:edit-comment-for-review:v1",
"ownerId": "94f94f37-2772-4b39-8041-9c2dcfcfff82",
"processNetworkId": "a70ca41a-ef4d-4b5a-b243-26cff72434ce",
"appName": "agile-process-teams",
"dataspace": "default"
},
"payload": {
"commentId": "a67d7261-33b1-4be6-9760-61ae8fe9eed3",
"processType": "review",
"aptCommentBox": {
"aptComment": {
"commentText": "Incorrect order uploaded",
"visibilityType": "Public"
},
"removeAttachment" : [
"9d84028a-abcd-11eb-90b4-e933a8e8da5e"
]
}
}
}
Guidelines
Element | Type | Description | |
---|---|---|---|
header | – | Required. The response header. | |
headerVersion | Integer | Required. The version identifier for the response.1 . |
|
eventName | String | Required. The fully qualified name of the response event.agile-process-teams:edit-comment-for-review-response:v1 . |
|
ownerId | String | Required. The identifier for the Owner company associated with the request. | |
isErr | Boolean |
Required. Indicates whether the request was successful. Valid values:
|
|
errCode | String | Required. The status code of the request. 200_OK indicates that the request was successful. |
|
errMsg | String |
Conditionally required if the call is unsuccessful. The message associated with the error code. |
|
licensePlate | String | Required. The unique identifier for the request and response instance. | |
exceptionName | String |
The exception thrown based on the error code. Valid values:
|
|
payload | – |
Required. |
|
commentId | String | Conditionally required if the call is successful. The identifier for the modified comment. |
Example
{
"header": {
"headerVersion": 1,
"eventName": "agile-process-teams:edit-comment-for-review-response:v1",
"ownerId": "94f94f37-2772-4b39-8041-9c2dcfcfff82",
"isErr": false,
"errCode": "200_OK",
"licensePlate": "jzC1wS"
},
"payload": {
"commentId": "9d84028a-61ae-11eb-90b4-e933a8e8da5e"
}
}
Errors
Element | Error Messages | Description |
---|---|---|
authorization | User does not have permission to edit comments. | The error occurs if the user does not have the | permission.
commentId | Comment ID is required. | The error occurs if the source is empty or null. |
commentId | [commentId] does not exist. | The error occurs if the source does not exist in the network. |
commentId | Cannot edit a comment added by a different user. | The error occurs if the user requesting to edit a comment is not the user that added the comment. |
processType | Process Type is required. |
The error occurs if the source is empty or null. |
processType | Process Type must be a valid value. | The error occurs if the source is not a valid value from the enumeration list. |
aptComment | Comment is greater than max length. |
The error occurs if the source exceeds the maximum length of 5000 characters. |
aptComment | Comment visibility type must be Public or Internal. |
The error occurs if the source is populated and visibilityType does not equal |
addAttachment | Attachment file size is greater than max size. |
The error occurs if the source exceeds the maximum file size of 25MB. |
addAttachment | Attachment visibility type must be Public or Internal. |
The error occurs if the source is populated and visibilityType does not equal |
This app
List Comments For Review
Owners and Partners use this API to return all comments and attachments for a given review. All comments and files, including deleted items, associated with the review record are listed with additional information (e.g. comment identifier, AWS S3 location of the file). Any deleted items are marked as Deleted = true
.
Guidelines
Element | Type | Description | |
---|---|---|---|
header | – | Required. The request header. | |
headerVersion | Integer | Required. The version identifier for the request.1 . |
|
eventName | String | Required. The fully qualified name of the request event.agile-process-teams:list-comments-for-review:v1 . |
|
ownerId | String | Required. The identifier for the Owner company associated with the request. | |
appName | String | Required. The application that owns the event.agile-process-teams . |
|
processNetworkId | String |
|
|
dataspace | String | Required. The dataspace within the environment where the request is being made. Valid value for the Production and Validation environments is default . |
|
payload | – | Required. The request body. | |
id | String |
Required. The identifier for the review to retrieve comments for. |
|
processType | String |
|
Example
{
"header": {
"headerVersion": 1,
"eventName": "agile-process-teams:list-comments-for-review:v1",
"ownerId": "94f94f37-2772-4b39-8041-9c2dcfcfff82",
"processNetworkId": "a70ca41a-ef4d-4b5a-b243-26cff72434ce",
"appName": "agile-process-teams",
"dataspace": "default"
},
"payload": {
"id": "4ec1229a-d46f-4fc0-878f-188d318db55a",
"processType": "review"
}
}
Guidelines
Element | Type | Description | |||
---|---|---|---|---|---|
header | – | Required. The response header. | |||
headerVersion | Integer | Required. The version identifier for the response.1 . |
|||
eventName | String | Required. The fully qualified name of the response event.agile-process-teams:list-comments-for-review-response:v1 . |
|||
ownerId | String | Required. The identifier for the Owner company associated with the request. | |||
isErr | Boolean |
Required. Indicates whether the request was successful. Valid values:
|
|||
errCode | String | Required. The status code of the request. 200_OK indicates that the request was successful. |
|||
errMsg | String |
Conditionally required if the call is unsuccessful. The message associated with the error code. |
|||
licensePlate | String | Required. The unique identifier for the request and response instance. | |||
exceptionName | String |
The exception thrown based on the error code. Valid values:
|
|||
payload | – |
Required. |
|||
commentsAndAttachments | Object | Contains the list of comments and attachments associated with the review. | |||
aptComment | Array | One or more comments about the review or descriptions of the attachments. | |||
id | String | The identifier for the comment. | |||
commentText | String | The text of the comment. Cannot exceed 5000 characters. | |||
visibilityType | Enum |
Conditionally required to submit the comment. Determines whether process team members from the Partner company associated with the incident can view the comment. Valid values:
|
|||
aptAttachments | Array | One or more relevant files to attach to the incident. Supported file formats are DOC, TXT, CSV, JPEG, PNG, and PDF. | |||
id | String | Required. The identifier for the attached file. | |||
fileName | String | Required. The name of the file. Cannot exceed 255 characters. | |||
visibilityType | Enum |
Conditionally required to submit the attached file. Determines whether process team members from the Partner company associated with the incident can view the attached file. Valid values:
|
|||
fileExtension | String |
Required. The file type of the attachment (e.g. jpg, txt). |
|||
isDelete | Boolean |
Required. Indicates whether the file is marked as deleted from the review. Valid values:
|
|||
fileS3Location | String | The AWS S3 location where the file is stored. | |||
fileSize | String | Required.The size of the file. Cannot exceed 25MB. | |||
requestIdentifier | String |
Required. The identifier for the upload request provided by File Import and Export Manager. |
Example
{
"header": {
"headerVersion": 1,
"eventName": "agile-process-teams:list-comments-for-review-response:v1",
"ownerId": "94f94f37-2772-4b39-8041-9c2dcfcfff82",
"isErr": false,
"errCode": "200_OK",
"licensePlate": "t1PCsQ"
},
"payload": {
"commentsAndAttachments": [
{
"aptComment": {
"id": "3bf5221e-503d-11eb-bcb4-f93431755cb0",
"commentText": "My comment",
"visibilityType": "Public",
"aptAttachments": [
{
"id": "3c3b2bd0-503d-11eb-bcb4-c78a7a2c7004",
"fileName": "fileName",
"visibilityType": "Public",
"fileExtension": "jpg",
"isDelete": false,
"fileS3Location": "fileS3Location",
"fileSize": "fileSize",
"requestIdentifier": "requestIdFromFileManager"
}
]
}
},
{
"aptComment": {
"id": "b56fb281-503f-11eb-bcb4-9d4de16ff2a2",
"commentText": "My comment2",
"visibilityType": "Public",
"aptAttachments": [
{
"id": "b5cacad3-503f-11eb-bcb4-bf0cf8a90d01",
"fileName": "fileName",
"visibilityType": "Public",
"fileExtension": "jpg",
"isDelete": false,
"fileS3Location": "fileS3Location",
"fileSize": "fileSize",
"requestIdentifier": "requestIdFromFileManager"
}
]
}
},
{
"aptComment": {
"id": "b7c49f06-503f-11eb-bcb4-1dfe60b775fa",
"commentText": "My comment3",
"visibilityType": "Public",
"aptAttachments": [
{
"id": "b82c1368-503f-11eb-bcb4-adcdbccd111e",
"fileName": "fileName",
"visibilityType": "Public",
"fileExtension": "jpg",
"isDelete": false,
"fileS3Location": "fileS3Location",
"fileSize": "fileSize",
"requestIdentifier": "requestIdFromFileManager"
}
]
}
}
]
}
}
Errors
Element | Error Messages | Description |
---|---|---|
authorization | User does not have permission to view comments. | The error occurs if the user does not have the | permission.
id | Process ID is required. | The error occurs if the source is empty or null. |
id | [id] does not exist. | The error occurs if the source does not exist in the system. |
id | No comments exist for [id]. | The error occurs if the source has no comments or attachments to return. |
processType | Process Type is required. | The error occurs if the source is empty or null. |
processType | Process Type must be a valid value. | The error occurs if the source is not a valid value from the enumeration list. |
This app
Toggle User Follows Review
Owners and Partners use this API to start or stop following a review.
Guidelines
Element | Type | Description | |
---|---|---|---|
header | – | Required. The request header. | |
headerVersion | Integer | Required. The version identifier for the request.1 . |
|
eventName | String | Required. The fully qualified name of the request event.agile-process-teams:toggle-user-follows-review:v1 . |
|
ownerId | String | Required. The identifier for the Owner company associated with the request. | |
appName | String | Required. The application that owns the event.agile-process-teams . |
|
processNetworkId | String |
|
|
dataspace | String | Required. The dataspace within the environment where the request is being made. Valid value for the Production and Validation environments is default . |
|
payload | – | Required. The request body. | |
id | String |
Required. The identifier for the review to follow or stop following. |
|
processType | String |
|
|
follow | Boolean |
Required. Indicates whether the user starts following the review. Valid values:
|
Example
{
"header": {
"headerVersion": 1,
"eventName": "agile-process-teams:toggle-user-follows-review:v1",
"ownerId": "94f94f37-2772-4b39-8041-9c2dcfcfff82",
"processNetworkId": "a70ca41a-ef4d-4b5a-b243-26cff72434ce",
"appName": "agile-process-teams",
"dataspace": "default"
},
"payload": {
"id": "e5701ae7-b447-423a-85c9-b57557fb7007",
"processType": "review",
"follow": true
}
}
Guidelines
Element | Type | Description | |
---|---|---|---|
header | – | Required. The response header. | |
headerVersion | Integer | Required. The version identifier for the response.1 . |
|
eventName | String | Required. The fully qualified name of the response event.agile-process-teams:toggle-user-follows-review-response:v1 . |
|
ownerId | String | Required. The identifier for the Owner company associated with the request. | |
isErr | Boolean |
Required. Indicates whether the request was successful. Valid values:
|
|
errCode | String | Required. The status code of the request. 200_OK indicates that the request was successful. |
|
errMsg | String |
Conditionally required if the call is unsuccessful. The message associated with the error code. |
|
licensePlate | String | Required. The unique identifier for the request and response instance. | |
exceptionName | String |
The exception thrown based on the error code. Valid values:
|
|
payload | – |
Required. |
|
id | String | Conditionally required if the call is successful. The identifier for the review for which following was enabled or disabled. | |
successMessage | String | Conditionally required if the call is successful. Message indicating the request was successful. |
Example
{
"header": {
"headerVersion": 1,
"eventName": "agile-process-teams:toggle-user-follows-review-response:v1",
"ownerId": "94f94f37-2772-4b39-8041-9c2dcfcfff82",
"isErr": false,
"errCode": "200_OK",
"licensePlate": "vXPsFz"
},
"payload": {
"id": "4ec1229a-d46f-4fc0-878f-188d318db55a",
"successMessage": "User successfully follows review."
}
}
Errors
Element | Error Messages | Description |
---|---|---|
authorization | User does not have permission to follow or unfollow the review. |
The error occurs if the user does not have the permission. |
id | Process ID is required. | The error occurs if the source is empty or null. |
id | [id] does not exist. | The error occurs if the source does not exist on the network. |
processType | Process Type is required. | The error occurs if the source is empty or null. |
processType | Process Type must be a valid value. | The error occurs if the source is not a valid value from the enumeration list. |
follow | Follow value is required. | The error occurs if the source is empty or null. |
follow | Follow value must either be true or false. | The error occurs if the source does not equal true or false . |
follow | User is already a follower of the Review. | The error occurs if the source is true and the user already follows the review. |
follow | User does not follow the Review. | The error occurs if the source is false and the user does not currently follow the review. |
This app
Get Activity History For Review
Owners and Partners use this API to return the full activity history for a given review. The response includes all recorded audit activities and updates to the record.
Guidelines
Element | Type | Description | |
---|---|---|---|
header | – | Required. The request header. | |
headerVersion | Integer | Required. The version identifier for the request.1 . |
|
eventName | String | Required. The fully qualified name of the request event.agile-process-teams:get-activity-history-for-review:v1 . |
|
ownerId | String | Required. The identifier for the Owner company associated with the request. | |
appName | String | Required. The application that owns the event.agile-process-teams . |
|
processNetworkId | String |
|
|
dataspace | String | Required. The dataspace within the environment where the request is being made. Valid value for the Production and Validation environments is default . |
|
payload | – | Required. The request body. | |
id | String |
Required. The identifier for the review to return the activity history of. |
|
processType | String |
|
Example
{
"header": {
"headerVersion": 1,
"eventName": "agile-process-teams:get-activity-history-for-review:v1",
"ownerId": "tracelink",
"processNetworkId": "a70ca41a-ef4d-4b5a-b243-26cff72434ce",
"appName": "agile-process-teams",
"dataspace": "default"
},
"payload": {
"id": "4ec1229a-d46f-4fc0-878f-188d318db55a",
"processType": "review"
}
}
Guidelines
Element | Type | Description | ||||
---|---|---|---|---|---|---|
header | – | Required. The response header. | ||||
headerVersion | Integer | Required. The version identifier for the response.1 . |
||||
eventName | String | Required. The fully qualified name of the response event.agile-process-teams:get-activity-history-for-review-response:v1 . |
||||
ownerId | String | Required. The identifier for the Owner company associated with the request. | ||||
isErr | Boolean |
Required. Indicates whether the request was successful. Valid values:
|
||||
errCode | String | Required. The status code of the request. 200_OK indicates that the request was successful. |
||||
errMsg | String |
Conditionally required if the call is unsuccessful. The message associated with the error code. |
||||
licensePlate | String | Required. The unique identifier for the request and response instance. | ||||
exceptionName | String |
The exception thrown based on the error code. Valid values:
|
||||
payload | – |
Required. |
||||
auditTrailRecordList | Array | Required. Array of audit trail records for the change request. | ||||
auditChangeEntry | – | Required. The identifier for the audit entry. | ||||
auditChangeDetail | – | Required. Contains information about the audit entry. | ||||
auditRecordDisplayName | String | Required. The name for the audit record. | ||||
auditRecordNewValue | String | Required. Updated value of the audit record. | ||||
auditRecordOldValue | String | Required. Previous value of the audit record. | ||||
auditRecordNewResolvedId | String | Conditionally required if the updated attribute is a foreign key. The updated attribute value related to the audit record. | ||||
timeStamp | Integer | Required. Date and time of the audit entry. | ||||
networkNodeId | String | Required. The identifier of the Owner company network that owns the data. | ||||
companyName | String | Required. The name of the company that owns the data. | ||||
performedByUserName | String | The name of the user that made the change. | ||||
performedByCompanyName | String | Required. Name of the company that made the change for that audit entry | ||||
auditItemIdentifier | String | Required. The identifier for the audit item. | ||||
applicationName | String | Required. The name of the application that the event occurred within. | ||||
actionType | String | Required. Represents the type of change the user performed (e.g. CREATE, MODIFY, DELETE, OTHER). | ||||
businessObjectName | String | Required. The object of the application that the event occured within. | ||||
businessObjectSchemaName | String | Required. The specific object within the businessObjectName that the user updated | ||||
supportAccessUserName | String | The email address of the TraceLink Support Representative performing an action on behalf of the user specified in the performedByUserName field. |
Example
{
"header": {
"headerVersion": 1,
"eventName": "agile-process-teams:get-activity-history-for-review-response:v1",
"ownerId": "0e093b3c-ad28-48ab-97a9-fac574c1cce8",
"isErr": false,
"errCode": "200_OK",
"licensePlate": "NVd76b"
},
"payload": {
"auditTrailRecordList": [
{
"auditChangeEntry": {
"auditChangeDetail": [
{
"auditRecordDisplayName": "apt Business Object Summary",
"auditRecordNewValue": "AGGREGATION_ERROR"
},
{
"auditRecordDisplayName": "Business Priority",
"auditRecordNewValue": "HIGH"
},
{
"auditRecordDisplayName": "Apt Business Object ID",
"auditRecordNewValue": "TLNK-1234"
},
{
"auditRecordNewResolvedId": "015c9f20-731a-4e1c-8a25-634edc07c134",
"auditRecordDisplayName": "APT Business Object Assigned To Company Partner Master Data",
"auditRecordNewValue": "Kendall"
}
]
},
"supportAccessUserName": "",
"companyName": "Kendall Pharma",
"businessObjectName": "Incident",
"performedByCompanyName": "Kendall Pharma",
"supportAccessUserId": "",
"timeStamp": 1612384626000,
"performedByNetworkNodeId": "00448f53-fc7f-489a-a847-dbdb083cb646",
"actionType": "Added",
"networkNodeId": "00448f53-fc7f-489a-a847-dbdb083cb646",
"businessObjectId": "53a671d1-af5e-4e5b-b10a-c8db389f82ca",
"auditItemIdentifier": "TLNK-1234",
"businessObjectSchemaName": "agile-process-teams:incident:v1",
"performedByUserName": "Evelyn Rose",
"performedByUserId": "007bee3d-ba11-47d1-8b0c-68bba8f591cb",
"applicationName": "Agile Process Teams"
}
]
}
}
Errors
Element | Error Messages | Description |
---|---|---|
authorization | User does not have permission to view the review activity. | The error occurs if the user does not have the | permission.
id | Process ID is required. | The error occurs if the source is empty or null. |
id | [id] does not exist. | The error occurs if the source does not exist on the network. |
processType | Process Type is required. | The error occurs if the source is empty or null. |
processType | Process Type must be a valid value. | The error occurs if the source does not equal a value in the enumeration list. |
This app