Data API
Last updated
Last updated
Next Step - Files API
Returns raw AutoReview data as a json
configs
properties
default
data
const response = await fetch('https://api.powerdevbox.com/v1/autoreview/', {
method: 'POST',
headers: {
"Content-Type": "application/json"
},
body: JSON.stringify({
"configs": {},
"properties": {
"definition": {},
"displayName": "text",
"environment": "text",
"name": "text",
"owner": "text"
}
}),
});
const data = await response.json();
{
"data": {
"name": "text",
"id": "text",
"environment": "text",
"owner": "text",
"trigger": "text",
"triggerParam": "text",
"triggerData": "text",
"triggerConfig": "text",
"triggerExpress": "text",
"triggerInputs": "text",
"triggerRecur": "text",
"premium": false,
"varNaming": false,
"varNameConsts": false,
"varNameUse": false,
"exceptionHandleScope": false,
"exceptionScope": false,
"exceptionTerminate": false,
"exceptionLink": false,
"mainScope": false,
"variableArray": [],
"actionArray": [
{
"name": "text",
"step": "text",
"type": "text",
"id": "text",
"hashId": "text",
"tier": "text",
"connector": "text",
"imgURL": "text",
"runAfter": "text",
"exception": "text",
"detail": "text",
"filter": "text",
"pagination": "text",
"secure": "text",
"retry": "text",
"timeout": "text",
"position": "text",
"positionInfo": "text",
"environmentVariables": "text",
"environmentB": false,
"notes": "text",
"parent": "text",
"branch": "text",
"positionIndex": "text",
"positionType": "text",
"nested": "text"
}
],
"apiActionArray": [
{
"name": "text",
"step": "text",
"type": "text",
"id": "text",
"hashId": "text",
"tier": "text",
"connector": "text",
"imgURL": "text",
"runAfter": "text",
"exception": "text",
"detail": "text",
"filter": "text",
"pagination": "text",
"secure": "text",
"retry": "text",
"timeout": "text",
"position": "text",
"positionInfo": "text",
"environmentVariables": "text",
"environmentB": false,
"notes": "text",
"parent": "text",
"branch": "text",
"positionIndex": "text",
"positionType": "text",
"nested": "text"
}
],
"exceptionArray": [],
"connectionArray": [
{
"conName": "text",
"appId": "text",
"opId": "text"
}
],
"error": "text",
"actionObjectArray": [
{
"step": "text",
"connector": "text",
"name": "text",
"id": "text",
"hashId": "text",
"object": "text",
"type": "text",
"parent": "text"
}
]
}
}