Skip to main content

Create Pix Key

POST 

/api/pix/keys

Create Pix Key

Request

Body

required
    account_number stringrequired
    account_branch stringrequired

Responses

Successful operation

Schema
    id id (string)

    Key id

    type type (string)

    Key's type

    key key (string)

    Key

    emv emv (string)

    EMV related to the key

Authorization: http

name: paas_tokentype: httpscheme: bearerbearerFormat: JWTdescription: Token utilizado para autenticação na Api PaaS
curl -L -X POST 'https://docs.zrobank.io/api/pix/keys' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"account_number": "12345",
"account_branch": "0001"
}'
Request Collapse all
Auth
Body required
{
  "account_number": "12345",
  "account_branch": "0001"
}