v1
latestOpenAPI 3.1.0Copyright Pismo2026-07-247702,7523.1 MBCreate key entry
Creates a new DICT key entry for the user.
The Banco Central do Brazil (BCB) maintains Pix keys in the Diretório de Identificadores de Contas Transacionais (DICT), a national Pix key registry and database.
On PSP timeout, a 202 Accepted with a key status = PROCESSING reponse is returned and the process continues asynchronously, eventually emitting a success or error event.
This endpoint generates a <a href="https://developers.pismo.io/events/docs/pix-dict-key-status-change-1" >Pix key status changed</a> event.
For more information, refer to the Pix instant payments guide.
Headers
Account token - an access token encoded with a Pismo account ID. Tokens can expire quickly, which can result in a <b>401 Unauthorized</b> message.
A unique ID to ensure the operation remains idempotent, allowing for operation repitition without causing unintended effects or duplication. An idempotent operation is one that can be applied multiple times, yet the outcome remains the same. it ensures that network errors, retries, or failures can occur without introducing inconsistencies.
Request body
Example request
{
"key": "email@email.com",
"key_type": "EMAIL",
"reason": "USER_REQUESTED",
"bank_account": {
"opening_datetime": "2020-08-13T13:49:03Z"
},
"name_type": "SOCIAL_NAME"
}Response
Created
Example response
{
"bank_account": {
"participant": "00115678",
"account_number": "98765432",
"account_type": "TRAN",
"branch": "011",
"opening_datetime": "2020-08-13T13:49:03Z"
},
"creation_datetime": "2020-08-13T13:49:03Z",
"key": "email@email.com",
"key_type": "EMAIL",
"owner": {
"document_number": "7777888hh",
"name": "Jerry Atrick",
"type": "NATURAL_PERSON",
"trade_name": "Acme Widgets"
},
"reason": "L",
"request_id": "8bfde840-bef5-42b7-bef2-350475ffb9e1",
"ownership_datetime": "2020-08-13T13:49:03Z",
"correlation_id": "c737895c-8159-4c0c-a92a-a4f8600bff37",
"bacen_processed_datetime": "2020-08-13T13:49:03Z",
"claim_requested_datetime": "2020-08-13T13:49:03Z",
"account_id": 6912345
}