Skip to main content

Issuer Contact Information Registration

This endpoint allows registering contact information associated with a previously registered issuer.


Request

ENDPOINT
/issuer_management/issuer/ISSUER-KEY/issuer_contact_information
METHOD
POST

Path Params

FieldTypeDescriptionCharacters
ISSUER-KEYstringUnique issuer key (UUID v4).36

Request Body

Request Body
{
"name": "João da Silva",
"document_number": "123.456.789-01",
"email": "joao.silva@email.com",
"phone_number": "+5511999999999"
}

Request Body Params

FieldTypeDescriptionMax Characters
name *stringFull name of the contact.255
document_number *stringContact's document number (CPF format, format "XXX.XXX.XXX-XX").14
email*stringContact's email address.1023
phone_number*stringContact's phone number (complete format: country code, area code and number. Example: +5511999999999).20

Response

STATUS
201
Response Body
{
"issuer_contact_information_key": "123e4567-e89b-12d3-a456-426614174000",
"name": "João da Silva",
"document_number": "123.456.789-01",
"email": "joao.silva@email.com",
"phone_number": "+5511999999999"
}

Response Body Params

FieldTypeDescriptionMax Characters
issuer_contact_information_keystringUnique identifier of the registered contact information (UUID v4).36
namestringFull name of the contact.255
document_numberstringContact's document number (CPF).11
emailstringContact's email address.1023
phone_numberstringContact's phone number.20