8. Partner info
Get registration info
In a single endpoint, it is possible to get all the information of the registration made in Remessa Online. Information such as: spread, quote expiration time, address list and contact information
Get registration info
You can view the registration information. You can also see this endpoint on our API guide.
This is an example of a request :
curl --request GET \
--url https://fx-sandbox.remessaonline.com.br/corporate/v1/partner/info \
--header 'Authorization: Bearer {{token}}' \
--header 'Content-Type: application/json' \
--header 'User-Agent: {partnername}-remessa' \
--header 'accept: application/json' \
--header 'x-token: {{x-token}}'
Below is an example response given by the endpoint
{
"id": "9cf69587-5c0a-4df4-bd0b-4bab46c7dd71",
"companyName": "Remessa Online Bee Tech Serviços de Tecnologia Ltda",
"tradeName": "Remessa Online",
"documentNumber": "24765993000150",
"email": "[email protected]",
"phoneNumber": "1142804659",
"contactName": "Remessa Online",
"createdAt": "2022-07-27T14:17:07.463Z",
"quoteExpirationTimeInSeconds": 60,
"spread": {
"withinBusinessHours": 0.5,
"outsideBusinessHours": 0.75
},
"addressList": [
{
"id": 0000001,
"addressLine1": "R. Dr. Fernandes Coelho, 85",
"addressLine2": "12º andar",
"city": "São Paulo",
"state": "SP",
"postalCode": "05423-040",
"country": "Brasil"
}
],
"payerId": "70000000000000000"
}
Updated 12 months ago