GET api/WorkSpace/GetAll?pageIndex={pageIndex}&pageSize={pageSize}
Retreive all available active workspaces per user.
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| pageIndex | integer |
None. |
|
| pageSize | integer |
None. |
Body Parameters
None.
Response Information
Resource Description
Collection of sCustomer| Name | Description | Type | Additional information |
|---|---|---|---|
| ID |
readonly |
integer |
None. |
| Name | string |
None. |
|
| GIDImage | globally unique identifier |
None. |
|
| DatCreated |
readonly |
date |
None. |
| SchedulerActive | boolean |
None. |
|
| Locale | string |
None. |
|
| IsEmpty |
readonly, indicate that workspace doesnt have any dash |
boolean |
None. |
Response Formats
application/json, text/json
Sample:
[
{
"ID": 1,
"Name": "sample string 2",
"GIDImage": "79565f84-90ef-4b9e-a8ff-3e31bd679738",
"DatCreated": "2026-09-14T10:13:47.9084021+02:00",
"SchedulerActive": true,
"Locale": "sample string 5",
"IsEmpty": true
},
{
"ID": 1,
"Name": "sample string 2",
"GIDImage": "79565f84-90ef-4b9e-a8ff-3e31bd679738",
"DatCreated": "2026-09-14T10:13:47.9084021+02:00",
"SchedulerActive": true,
"Locale": "sample string 5",
"IsEmpty": true
}
]