APIs for VBASoftware
VBASoftware (v1)
- application/json
- text/json
- application/*+json
Key field identifying a specific report queue log entry Note: The database will apply a default value of 0 for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of 0 to meet the API requirements and ensure that the functionality occurs as expected.
Identifier of the action that was performed for a report or for queue maintenance
Date of the action that was performed for a report or for queue maintenance
Message associated with the action that was performed for a report or for queue maintenance
Result of the action that was performed for a report or for queue maintenance
ID of the report queue detail Note: The database will apply a default value of 0 for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of 0 to meet the API requirements and ensure that the functionality occurs as expected.
Allows the logging of IDs for any shared objects for the report. Not normally used. Note: The database will apply a default value of 0 for this field if a value is not provided. This field is also marked as NOT NULL in the database and therefore required by the API. If you do not have a value for this field, supply the database default value of 0 to meet the API requirements and ensure that the functionality occurs as expected.
- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/report-queue-logs
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X POST \
https://vbapi.vbasoftware.com/vbasoftware/report-queue-logs \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE' \
-d '{
"reportQueueLog_Key": 0,
"entry_Date": "2019-08-24T14:15:22Z",
"entry_User": "string",
"log_Action": "string",
"log_Date": "2019-08-24T14:15:22Z",
"log_Message": "string",
"log_Result": "string",
"reportQueueDetail_Key": 0,
"sharedObject_ID": 0,
"update_Date": "2019-08-24T14:15:22Z",
"update_User": "string"
}'No response example- VBAPI VBASoftwarehttps://vbapi.vbasoftware.com/vbasoftware/report-queue-logs
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/report-queue-logs?reportQueueDetailKey=0&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/report-queue-logs/{reportQueueLogKey}
- curl
- JavaScript
- Node.js
- Python
- Java
- C#
- PHP
- Go
- Ruby
- R
- Payload
curl -i -X GET \
'https://vbapi.vbasoftware.com/vbasoftware/report-queue-logs/{reportQueueLogKey}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'vbasoftware-database: string' \
-H 'x-api-key: YOUR_API_KEY_HERE'No response example