Follow the question structure recommended by Dev Bot before submitting your integration questions.
NOTE. Available for both Branch Access Tokens and General Admin Access Tokens.
| Parameter | Type | Required | Description |
|---|---|---|---|
idBranch | int32 | No | Branch ID used to return only the groups that contain the specified branch. |
| Field | Type | Description |
|---|---|---|
groupId | int32 | Unique ID of the branch group. |
groupName | string | Branch group name. |
branches | array<object> | List of branches that belong to the group. The structure of each object is detailed below. |
branches Object Structure#| Field | Type | Description |
|---|---|---|
branchId | int32 | Branch ID. |
branchName | string | Branch name. |
username:passwordAuthorization: Basic *****************curl --location 'https://evo-integracao-api.w12app.com.br/api/v1/configuration/group-branches?idBranch=undefined' \
--header 'Authorization: Basic <encoded-value>'[
{
"groupId": 0,
"groupName": "string",
"branches": [
{
"branchId": 0,
"branchName": "string"
}
]
}
]