Skip to main content
GET
/
v1
/
dict
/
entries
/
{entry_id}
Retrieve an Entry
curl --request GET \
  --url https://plugin-pix-indirect.api.lerian.net/v1/dict/entries/{entry_id} \
  --header 'Authorization: Bearer <token>' \
  --header 'X-Account-Id: <x-account-id>'
{
  "id": "550e8400-e29b-41d4-a716-446655440010",
  "key": "[email protected]",
  "keyType": "EMAIL",
  "status": "ACTIVE",
  "account": {
    "branch": "0001",
    "number": "123456789",
    "participant": "12345678",
    "type": "TRAN"
  },
  "owner": {
    "name": "John Doe",
    "taxIdNumber": "12345678901",
    "type": "NATURAL_PERSON"
  },
  "createdAt": "2024-01-15T10:30:00Z",
  "updatedAt": "2024-01-15T10:30:00Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Headers

X-Account-Id
string
required

Unique identifier of the Midaz Ledger Account (UUID format).

Path Parameters

entry_id
string
required

Unique identifier of the Pix entry (UUID format).

Response

Pix entry retrieved successfully.

id
string

Unique identifier of the entry (UUID format).

Example:

"550e8400-e29b-41d4-a716-446655440010"

key
string

Pix key value.

keyType
string

Type of Pix key.

Example:

"EMAIL"

status
string

Entry status (ACTIVE, INACTIVE).

Example:

"ACTIVE"

account
object
owner
object
createdAt
string<date-time>

Creation timestamp.

Example:

"2024-01-15T10:30:00Z"

updatedAt
string<date-time>

Last update timestamp.

Example:

"2024-01-15T10:30:00Z"