Portability
Request
ENDPOINT
/baas/pix/key_claim_request/CLAIM_REQUEST_KEY/
CLAIM_ACTIONMETHOD
PATCHPath params
| Field | Type | Description |
|---|---|---|
claim_request_key | string | the key of the portability request. |
claim_action | enum | Enumerators |
Enumerators claim_action
| Enumerator | Translation | Description |
|---|---|---|
| confirmed | confirmed | use this action to confirm the portability request. |
| cancelled | canceled | use this action to cancel the portability request. |
| pending_donator_validation | pending_donator_validation | use this action to receive two-factor authentication. |
Warning
Before canceling a claim with "claim_request_type" as "ownership", it is necessary to perform the "pending_donator_validation" action to receive two-factor authentication and send it in the payload. The only accepted "cancelation_reason" for canceling claims of this type are "ownership" and "fraud".
Warning
After the cancellation action is executed, the claim request process is concluded, and there are no further hooks to be received.
Request Body
Confirmation
{
"confirmation_reason": "client_request"
}
Cancellation
{
"cancellation_reason": "client_request"
}
Ownership cancellation
{
"cancellation_reason": "fraud",
"verification_code": "432371"
}
Pending Donor Validation
{}
Body Params
| Field | Type | Description | Characters |
|---|---|---|---|
confirmation_reason | enum | Enumerators. | 14 |
cancellation_reason | enum | Enumerators. | 14 |
verification_code | string | token received on the phone number or email. | 6 |
Enumerators confirmation_reason
| Enumerator | Translation |
|---|---|
| client_request | client request |
Enumerators cancellation_reason
| Enumerator | Translation |
|---|---|
| client_request | client request |
| fraud | fraud |
Warning
When canceling a portability request of type "ownership", the "cancellation_reason" must always be "fraud".