Team

Retrieve the list of transactions from a team

POST
/api/v1/team/transaction/list
/api/v1/team/transaction/list

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

The transactions filter and sort settings

columnSortstring | null

orderSortstring | null

fromstring

Format: "date-time"

tostring

Format: "date-time"

limitinteger

Format: "int32"

offsetinteger

Format: "int32"

teamId
Required
string

Minimum length: 1

userstring | null

typestring | null

statusstring | null

curl -X POST "https://example.com/api/v1/team/transaction/list" \
  -H "Authorization: <token>" \
  -H "Content-Type: application/json" \
  -d '{
    "columnSort": null,
    "orderSort": null,
    "from": "2019-08-24T14:15:22Z",
    "to": "2019-08-24T14:15:22Z",
    "limit": 0,
    "offset": 0,
    "teamId": "string",
    "user": null,
    "type": null,
    "status": null
  }'

OK