Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Deck of Cards
idbimGetTeamsActivationStatus
Card
labelHTTP Method
 GET
Card
defaulttrue
labelURL / Resource / JSON Structure
Resource: administration/teams

URLhttps://api-stage.bimplus.net/v2/administration/teams

Examplehttps://api-stage.bimplus.net/v2/administration/teams

There is a paging and sorting possibility available for this API call. Please see the request section.

Card
labelDescription

 Get the list of all the teams with the activation status. Please remember that this service can be used only by the shop/portal (secured using the application_id of portal)

There is a paging and sorting possibility available for this API call. Please see the request section.

Card
labelRequest
Code Block
borderColorGreen
titleHeaders
langxml
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
 
For the paging & sorting possibility, send the following properties in the header:
pageSize (mandatory for paging): Number of hits which will be displayed on one page
pageIndex (mandatory for paging): The page number which has to be loaded
sortColumn (optional): The name of the column which will be sorted (possible only with some limitations)
sortDirection (optional)("asc" or "desc"): Sort direction (asc is default)
Card
labelResponse
Code Block
borderColorGreen
titleStatus
langxml
Status: 200 OK
Code Block
borderColorRed
titleJSON
langxml
[
    {
        "id": "c9e80035a-de61-4d84-b324-0308cc073a0c",
        "slug": "testteam",
        "name": "testteam",
        "server": "k2145.ims-firmen.de",
        "ownerId": "fc5d0b370-6005-484c-8f47-b9e52e8ac6eaf",
        "status": "Active",
        "countMembers": 1,
        "countProjects": 608,
        "usedSpace": 1973
    },
    {
        "id": "a1e500195-b9cc-495c-bb3a-ab01ada0ca01a",
        "slug": "bimplus-gmbh",
        "name": "Bimplus GmbH",
        "server": "k2145.ims-firmen.de",
        "ownerId": "g6e67ba07-50c3-d51d-23f0-3ac0d8788202g",
        "status": "Active",
        "countMembers": 1,
        "countProjects": 3,
        "usedSpace": 237
    }
]

...