Skip to main content
Skip table of contents

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

CODE
[
 {
  "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

CODE
{
  "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

CODE
{
 "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

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

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.