Versions Compared

Key

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

...

Anchor
addUserToTeam
addUserToTeam

Add the user to the team
Deck of Cards
idbimAddUserToTeam
 
Card
labelHTTP Method
 

...

Card
 POST
Card
 
Card
defaulttrue
labelURL / Resource / JSON Structure
 

Resource: <team_slug>/members 

URLhttps://api.bimplus.net/v2/<team_slug>/members

Example: https://api.bimplus.net/v2/best-company/members

JSON Structure

Name

Mandatory / Optional

Type

Description

user

mandatory

object

Information of the user

user.id

mandatory

string

Id of the user

user.email

will be ignored

string

Email of the user

user.status

will be ignored

string

Status of the user(Active / Inactive)

roles

will be ignored

object

Roles of the user

status

mandatory

string

Status of the membership(Active / Passive)

Card
 
labelDescription
 

...

 Add a specified user to a specified team.
Card
 
Card
labelRequest
 
Code Block
borderColorGreen
titleHeaders
langxml
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Code Block
borderColorRed
titleJSON
langxml
{
    "user": {
        "id": "b8615afc-99cc-4bcd-b0ca-ff0593ce15c6"
    },
    "roles": [
        "Member"
    ],
    "status": "Active"

}
Card
 
Card
labelResponse
 
Code Block
borderColorGreen
titleStatus
langxml
Status: 200 Ok
Card

 

Deck of Cards
 

Anchor
getMembersOfTeam
getMembersOfTeam

Get the member list of the team
Deck of Cards
idbimGetMemberListInfo
 
Card
labelHTTP Method
 

...

 GET
Card
 
Card
Card
defaulttrue
labelURL / Resource / JSON Structure
 
Resource: <team_slug>/members 

URLhttps://api.bimplus.net/v2/<team_slug>/members

Example: https://api.bimplus.net/v2/best-company/members

Card
 
labelDescription
 

...

deck
Card
 Gets the member list of a specified team.
Card
 
labelRequest
 
Code Block
borderColorGreen
titleHeaders
langxml
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
 
Card
labelResponse
 
Code Block
borderColorGreen
titleStatus
langxml
Status: 200 OK
Code Block
borderColorRed
titleJSON
langxml
[
    {
        "user": {
            "id": "b8615afc-99cc-4bcd-b0ca-ff0593ce15c6",
            "email": "test@bimplus.net",
            "status": "Active"
        },
        "roles": [
            "Member"
        ],
        "status": "Active"
    },
    {
        "user": {
            "id": "b8615afc-99cc-4bcd-b0ca-ff0593ce15c7",
            "email": "customer@bimplus.net",
            "status": "Active"
        },
        "roles": [
            "Member"
        ],
        "status": "Passive"
    }
]
Card
 

 

Anchor
updateUserInTeam
updateUserInTeam

Update information about the user in the team
 
Deck of Cards
idbimUpdateUserInfoInTeam
Card
labelHTTP Method
 

...

Card
 PUT
Card
 
Card
defaulttrue
labelURL / Resource / JSON Structure
 
Resource: <team_slug>/members/<user_id> 

URLhttps://api.bimplus.net/v2//members/

Example: https://api.bimplus.net/v2/best-company]>/members/b8615afc-99cc-4bcd-b0ca-ff0593ce15c6

JSON Structure

Name

Mandatory / Optional

Type

Description

user

mandatory

object

Information of the user

user.id

mandatory

string

Id of the user

status

mandatory

string

Status of the membership(Active / Passive)

Card
 
labelDescription
 

...

 Update information about a specified user in a team.

...

Card
 
Card
labelRequest
 
Code Block
borderColorGreen
titleHeaders
langxml
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Code Block
borderColorRed
titleJSON
langxml
{
        "user": {
            "id": "b8615afc-99cc-4bcd-b0ca-ff0593ce15c7"
        },
        "status": "Active"
    }
Card
 
Card
labelResponse
 
Code Block
borderColorGreen
titleStatus
langxml
Status: 200 OK
Card

 

Deck of Cards
 

Anchor
deleteUserFromTeam
deleteUserFromTeam

Delete the user from the team
Deck of Cards
idbimDeleteUserFromTeam
 
Card
labelHTTP Method
 

...

Card
 DELETE
Card
 
Card
defaulttrue
labelURL / Resource / JSON Structure
 
Resource: <team_slug>/members/<user_id> 

URLhttps://api.bimplus.net/v2//members/

Example: https://api.bimplus.net/v2/best-company/members/b8615afc-99cc-4bcd-b0ca-ff0593ce15c6

Card
 
labelDescription
 
Deletes a specified user from a team.

...

Card
 
Card
labelRequest
 
Code Block
borderColorGreen
titleHeaders
langxml
Authorization: BimPlus 9c1874a62c974dcfa75e0132c423a088
Content-Type: application/json
Card
 
Card
labelResponse
 
Code Block
borderColorGreen
titleStatus
langxml
Status: 200 OK
Card
 
Deck of Cards