Skip to content

Get accounts which the current user has a seat in

Request

Get accounts which the currently authenticated Platform User's has a seat in

Security
bearerToken
Bodyapplication/jsonrequired
frominteger

The item number to begin the result set from

Default:0
Example:0
pageSizeinteger, [ 0 .. 1000 ]

The maximum number of items to return in the result set.

Default:100
Example:100
curl -i -X POST \
  https://api-v2.dash.app/platform/current-user-account-searches \
  -H 'Authorization: Bearer <YOUR_JWT_HERE>' \
  -H 'Content-Type: application/json' \
  -d '{
    "from": 0,
    "pageSize": 100
  }'

Responses

Success

Bodyapplication/json
resultsArray of objectsrequired

The specified page of [PubliclyAvailableAccountData] resources which match the search criterion

totalResultsintegerrequired

The total number of [PubliclyAvailableAccountData] resources which match the search criterion

Example:15
Response
{ "results": [ {} ], "totalResults": 15 }