APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
Identifier of the workflow. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Identifies the order of the associated task. Note: This field is marked as NOT NULL in the database and therefore required by the API.
ID of the User who is assigned to the selected 'Workflow Task'.
Allows the associated User to set workflow items to 'Complete'. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Allows the associated User to set workflow items to 'Process'. Note: This field is marked as NOT NULL in the database and therefore required by the API.
Allows the associated User to set workflow items to 'Reject'. Note: This field is marked as NOT NULL in the database and therefore required by the API.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/workflows/{workflowKey}/tasks/{workflowTaskSeq}/users
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
'https://vbapi.vbasoftware.com/vbasoftware/workflows/{workflowKey}/tasks/{workflowTaskSeq}/users' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"workflow_Key": 0,
"workflowTask_Seq": 0,
"user_ID": "string",
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"set_Complete": true,
"set_Process": true,
"set_Reject": true,
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/workflows/{workflowKey}/tasks/{workflowTaskSeq}/users
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/workflows/{workflowKey}/tasks/{workflowTaskSeq}/users?page=1&pageSize=100&sortBy=string' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/workflows/{workflowKey}/tasks/{workflowTaskSeq}/users/{userID}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/workflows/{workflowKey}/tasks/{workflowTaskSeq}/users/{userID}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example