Create Random Pix Key
POST/pix/keys
Generate a new random EVP pix key for the user.
Request
Header Parameters
x-transaction-uuid stringrequired
The transaction ID is a UUID (v4) used to uniquely identify the object that will be created. All objects must have an identifier.
nonce stringrequired
The nonce ID is a UUID (v4) used to uniquely identify the requisition. All requisitions must have an identifier.
- application/json
Body
required
pix_account_id string
Pix account ID.
Responses
- 201
- 400
- 401
- 422
The pix key returned successfully.
- application/json
- Schema
- Example (from schema)
Schema
id stringrequired
Pix Key ID.
key stringrequired
Pix key.
type objectrequired
Pix Key Type.
state objectrequired
Pix Key State.
created_at date-timerequired
Pix Key created at.
{
"id": "f6e2e084-29b9-4935-a059-5473b13033aa",
"key": "f6e2e084-29b9-4935-a059-5473b13033aa",
"type": "EVP",
"state": "CONFIRMED",
"created_at": "2024-11-22T13:43:07.727Z"
}
If any required params are missing or has invalid format or type.
User authentication failed.
If any required params are missing or has invalid format or type.
Loading...