Ariba Sourcing · Schema
PendingApprovalTask
A pending external approval task.
ApprovalsAuctionsB2BContractsProcurementRFxSAPSourcingSupplier ManagementSupply Chain
Properties
| Name | Type | Description |
|---|---|---|
| taskId | string | Task identifier. |
| documentType | string | Type of document being approved. |
| documentId | string | Document identifier. |
| assignedTo | string | User assigned to this task. |
| status | string | Task status. |
| fullURL | string | Full URL to view the approvable in the SAP Ariba UI. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "https://raw.githubusercontent.com/api-evangelist/ariba-sourcing/refs/heads/main/json-schema/external-approval-api-pending-approval-task-schema.json",
"title": "PendingApprovalTask",
"description": "A pending external approval task.",
"type": "object",
"properties": {
"taskId": {
"type": "string",
"description": "Task identifier.",
"example": "TASK-500123"
},
"documentType": {
"type": "string",
"description": "Type of document being approved.",
"example": "RFXDocument"
},
"documentId": {
"type": "string",
"description": "Document identifier.",
"example": "DOC-001234"
},
"assignedTo": {
"type": "string",
"description": "User assigned to this task.",
"example": "[email protected]"
},
"status": {
"type": "string",
"description": "Task status.",
"example": "pending"
},
"fullURL": {
"type": "string",
"description": "Full URL to view the approvable in the SAP Ariba UI.",
"example": "https://mycompany-T.sourcing.ariba.com/Sourcing/main/ad/taskWorkspace"
}
}
}