Space

Retrieve the list of spaces

POST
/api/v1/space/list
/api/v1/space/list

The Authorization access token

Authorization

Authorization
Required
<token>

Please enter a valid access token

In: header

Request Body

application/jsonOptional

columnSortstring | null

orderSortstring | null

fromstring

Format: "date-time"

tostring

Format: "date-time"

limitinteger

Format: "int32"

offsetinteger

Format: "int32"

teamId
Required
string

Minimum length: 1

spaceNamestring | null

curl -X POST "https://example.com/api/v1/space/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",
    "spaceName": null
  }'

OK