Verifications

Retrieve verifications

Retrieve all the verifications within an administration. Returns all verified e-mail addresses and bank account numbers, as well as the verified chamber of commerce number and tax number.

Example: returns all Verifications of an administration

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/verifications.json?
    

Response

        
          
          Status: 200 OK
        
      
{
  "emails": [
    "validated1@dev.null.moneybird.net",
    "validated2@dev.null.moneybird.net"
  ],
  "bank_account_numbers": [
    "NL42TEST0000000002"
  ],
  "chamber_of_commerce_number": "12345678",
  "tax_number": "NL852924574B01"
}
      

Example: if email Verifications are still pending

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/verifications.json?
    

Response

        
          
          Status: 200 OK
        
      
{
  "bank_account_numbers": [
    "NL42TEST0000000002"
  ],
  "chamber_of_commerce_number": "12345678",
  "tax_number": "NL852924574B01"
}
      

Example: if bank account number Verifications are still pending

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/verifications.json?
    

Response

        
          
          Status: 200 OK
        
      
{
  "emails": [
    "validated1@dev.null.moneybird.net",
    "validated2@dev.null.moneybird.net"
  ],
  "chamber_of_commerce_number": "12345678",
  "tax_number": "NL852924574B01"
}
      

Example: if chamber of commerce number Verification is still pending

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/verifications.json?
    

Response

        
          
          Status: 200 OK
        
      
{
  "emails": [
    "validated1@dev.null.moneybird.net",
    "validated2@dev.null.moneybird.net"
  ],
  "bank_account_numbers": [
    "NL42TEST0000000002"
  ]
}
      

Example: if tax number Verification is still pending

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/verifications.json?
    

Response

        
          
          Status: 200 OK
        
      
{
  "emails": [
    "validated1@dev.null.moneybird.net",
    "validated2@dev.null.moneybird.net"
  ],
  "bank_account_numbers": [
    "NL42TEST0000000002"
  ],
  "chamber_of_commerce_number": "12345678"
}
      

Example: if no Verifications are present

Request

curl -s -H "Content-Type: application/json" -H "Authorization: Bearer 84ec207ad0154a508f798e615a998ac1fd752926d00f955fb1df3e144cba44ab" \
  -XGET \
  https://moneybird.com/api/v2/123/verifications.json?
    

Response