Follow the question structure recommended by Dev Bot before submitting your integration questions.
| Parameter | Type | Required | Description |
|---|---|---|---|
| signIn | boolean | No | Check this option if you want to log in after changing the password. |
| user | string | No | Filter by CPF, idMember, or email. |
| Field | Type | Description |
|---|---|---|
idMember | int32 | Identifier of the member for whom the reset link was generated. |
idBranch | int32 | Identifier of the branch associated with the member. |
idEnterprise | int32 | Identifier of the company associated with the member. |
name | string | Name of the member. |
dns | string | DNS/domain used for generating access links. |
successAuthenticate | boolean | Indicates whether the member's authentication or validation was successful. |
urlResetPassword | string | URL for the member's password reset. |
urlMemberArea | string | URL to access the member area. Field generated automatically (read-only). |
username:passwordAuthorization: Basic *****************curl --location 'https://evo-integracao-api.w12app.com.br/api/v1/members/resetPassword?signIn=undefined&user=undefined' \
--header 'Authorization: Basic <encoded-value>'{
"idMember": 0,
"idBranch": 0,
"idEnterprise": 0,
"name": "string",
"dns": "string",
"successAuthenticate": true,
"urlResetPassword": "string",
"urlMemberArea": "string"
}