Skip to main content

Get customer bank accounts

GET 

https://apisandbox.delbank.com.br/baas/api/v1/customers/:document/bank-accounts

Retrieve the bank accounts associated with a customer by their document identifier.

Request

Path Parameters

    document stringrequired

    Document identifier of the customer

Header Parameters

    x-delbank-api-key stringrequired

    API key for authentication

Responses

Successful response

Schema
  • Array [
  • numberstring
    branchstring
    typestring
    statusstring
    apiKeystring
    holder object
    documentstring
    namestring
    emailstring
    typestring
    bank object
    codestring
    namestring
    nameFantasystring
    ispbCodestring
  • ]
var client = new HttpClient();
var request = new HttpRequestMessage(HttpMethod.Get, "https://apisandbox.delbank.com.br/baas/api/v1/customers/:document/bank-accounts");
request.Headers.Add("Accept", "application/json");
var response = await client.SendAsync(request);
response.EnsureSuccessStatusCode();
Console.WriteLine(await response.Content.ReadAsStringAsync());
Request Collapse all
Base URL
https://apisandbox.delbank.com.br
Parameters
— pathrequired
— headerrequired
ResponseClear

Click the Send API Request button above and see the response here!