API

Accounts Group

This resource provides a set of operations to create/update a Accounts Group.


GET (Group List)

👉🏿

End Point: /groups

This method allows you to fetch the Accounts Group list.

Sample response payload

[
 {
  "id": "string",
  "description": "string",
  "active": true
 }
]

 

GET by ID

👉🏿

End Point: /groups/{id}

You can retrieve information of an existing group by providing its Accounts Group ID.

Sample response payload

{
  "id": "string",
  "description": "string",
  "active": true
 }


PUT

👉🏿

End Point: /groups/{id}

You can modify the details of an existing Accounts Group.

After a successful update, you will see the entire object in the response.

Sample response payload

{
 "id": "string",
 "description": "string",
 "active": true
}

 

POST

👉🏿

End Point: /groups

You can create a new Accounts Group.

After a successful update, you will see the entire object in the response.

Sample response payload

{
 "id": "string",
 "description": "string",
 "active": true
}