Follow the question structure recommended by Dev Bot before submitting your integration questions.
| Parameter | Type | Required | Description |
|---|---|---|---|
| idBranch | int32 | No | ID of the branch. When provided, returns only active members from the specified branch. When not provided, and the token has multi-branch access, returns active members from all branches. |
π§ The response from this endpoint is in XML. That is, you will not receive a commonjson.
| Field | Type | Description |
|---|---|---|
idBranch | integer | Identifier of the branch to which the member is affiliated. |
branchName | string | Name of the branch. |
memberName | string | Full name of the member (customer). |
document | string | CPF of the member. |
idMember | integer | Unique identifier of the member. |
contractDescription | string | Description of the contract or plan associated with the member. |
contractType | string | Type of the member's contract. |
idContractType | integer | Identifier of the contract type. |
startDate | datetime | Start date of the contract's validity. |
endDate | datetime | End date of the contract's validity. |
username:passwordAuthorization: Basic *****************curl --location 'https://evo-integracao-api.w12app.com.br/api/v2/members/active-members?idBranch=undefined' \
--header 'Authorization: Basic <encoded-value>'[
{
"idBranch": 0,
"branchName": "string",
"memberName": "string",
"document": "string",
"idMember": 0,
"contractDescription": "string",
"contractType": "string",
"idContractType": 0,
"startDate": "2019-08-24T14:15:22.123Z",
"endDate": "2019-08-24T14:15:22.123Z"
}
]