improved

August 17, 2022

Changes in the member's registration and a new event in the webhook

  • New event added on FXaaS Hooks: BATCH_DAILY_REPORTED= The Inbound transaction batches of the day were closed. Check the documentation here.
  • Now the member's document information must be passed within an object at the moment of registration: The new information is mandatory and will be validated by Remessa's compliance services. Check the documentation here.

Old version of company registration:

{
    "type": "BUSINESS",
    "taxId": "00905849000295",
    "name": "Empresa Teste",
    "email": "[email protected]",
    "phone": "71999965798",
    "externalId": "ext-00905849000295",
    "addresses": [
        {
            "streetName": "Rua São Bento",
            "streetNumber": "111",
            "neighborhood": "Centro",
            "zipCode": "01010-000",
            "city": "São Paulo",
            "state": "SP",
            "additionalInfo": "Sala 111",
            "type": "HOME"
        }
    ],
    "averageMonthlyRevenue": 1000,
    "netWorth": 1000,
    "shareCapital": 1000,
    "cnae": "8291100",
    "incorporationDate": "2022-01-20",
    "companyType": "MEI",
    "members": [
        {
            "name": "Sócio 1",
            "phone": "1111111111",
            "email": "[email protected]",
            "taxId": "08034453005",
            "birthday": "1980-01-20",
            "nationality": "BR",
            "birthPlace": "SP",
            "profession": "Dev",
            "isPoliticallyExposed": true,
            "isPublicAgent": true,
            "isAmericanTaxResident": true,
            "addresses": [
                {
                    "streetName": "Rua São Bento",
                    "streetNumber": "222",
                    "neighborhood": "Centro",
                    "zipCode": "01010-000",
                    "city": "São Paulo",
                    "state": "SP",
                    "additionalInfo": "AP 222",
                    "type": "HOME"
                }
            ],
            "document": "22222",
            "maritalStatus": "MARRIED",
            "monthlyIncome": 1000,
            "netWorth": 1000
        }
    ]
}

New version of company registration:

See that the member's document now becomes an object with its information.

{
    "type": "BUSINESS",
    "taxId": "00905849000295",
    "name": "Empresa Teste",
    "email": "[email protected]",
    "phone": "71999965798",
    "externalId": "ext-00905849000295",
    "addresses": [
        {
            "streetName": "Rua São Bento",
            "streetNumber": "111",
            "neighborhood": "Centro",
            "zipCode": "01010-000",
            "city": "São Paulo",
            "state": "SP",
            "additionalInfo": "Sala 111",
            "type": "HOME"
        }
    ],
    "averageMonthlyRevenue": 1000,
    "netWorth": 1000,
    "shareCapital": 1000,
    "cnae": "8291100",
    "incorporationDate": "2022-01-20",
    "companyType": "MEI",
    "members": [
        {
            "name": "Sócio 1",
            "phone": "1111111111",
            "email": "[email protected]",
            "taxId": "08034453005",
            "birthday": "1980-01-20",
            "nationality": "BR",
            "birthPlace": "SP",
            "profession": "Dev",
            "isPoliticallyExposed": true,
            "isPublicAgent": true,
            "isAmericanTaxResident": true,
            "addresses": [
                {
                    "streetName": "Rua São Bento",
                    "streetNumber": "222",
                    "neighborhood": "Centro",
                    "zipCode": "01010-000",
                    "city": "São Paulo",
                    "state": "SP",
                    "additionalInfo": "AP 222",
                    "type": "HOME"
                }
            ],
            "document": {
             "number": "3892801",
             "type": "RG",
             "issuanceDate": "2019-10-10",
             "issuer": "SSP",
             "issuancePlace": "PR"
            },          
            "maritalStatus": "MARRIED",
            "monthlyIncome": 1000,
            "netWorth": 1000
        }
    ]
}