Account Action GET
GET /api/account/{account}/accounting/{platform}/{id}/platform/account/action
Get account actions.
URL Parameters
account* | Account | |
---|---|---|
platform* | Connection Platform | |
id* | Connection ID |
Query Parameters
showAll | boolean | |
---|---|---|
type | string | |
isTimeDescending | boolean | |
page | integer | |
pageSize | integer |
Responses
200 OK
page | integer | |
---|---|---|
pageSize | integer | |
resultsSize | integer | |
results | array[object] | |
id | string | |
account | string | |
type | string | |
createdDate | string | |
params | object | |
status | string | |
result | string |
400 Bad Request
401 Unauthorized
403 Forbidden
404 Not Found
500 Internal Server Error
Example Success Response
{
"page": 0,
"pageSize": 0,
"resultsSize": 0,
"results": [
{
"id": "string",
"account": "string",
"type": "string",
"createdDate": "string",
"params": {
"additionalProp1": "string",
"additionalProp2": "string",
"additionalProp3": "string"
},
"status": "string",
"result": "string"
}
]
}