Accounts Group

Content was last updated in 06.23.03-00

Revision History

 

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

 

 

GET (Group List)

This method allows you to fetch the Accounts Group list.

 

Sample response payload

[

 {

    "id": "string",

    "description": "string",

    "active": true

 }

]

 

 

 

 

 

 

 

 

GET by 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

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

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

}