BankManager

Retrieves the collection of BankManager resources.

Retrieves the collection of BankManager resources.

SecurityBearer
Request
query Parameters
page
integer
Default: 1

The collection page number

itemsPerPage
integer [ 0 .. 100 ]
Default: 30

The number of items per page

Responses
200

BankManager collection

get/bank-managers
Request samples
Response samples
[
  • {
    }
]

Creates a BankManager resource.

Creates a BankManager resource.

SecurityBearer
Request
Request Body schema:
required

The new BankManager resource

name
required
string
email
required
string <email>

It is not possible to use the same email for two different bank managers

Responses
201

BankManager resource created

400

Invalid input

422

Unprocessable entity

post/bank-managers
Request samples
{
  • "name": "string",
  • "email": "user@example.com"
}
Response samples
{
  • "uuid": "string",
  • "name": "string",
  • "email": "string"
}

Retrieves a BankManager resource.

Retrieves a BankManager resource.

SecurityBearer
Request
path Parameters
uuid
required
string
Responses
200

BankManager resource

404

Resource not found

get/bank-managers/{uuid}
Request samples
Response samples
{
  • "uuid": "string",
  • "name": "string",
  • "email": "string"
}

Lists all the Business Registries linked to the Bank Manager

Lists all the Business Registries linked to the Bank Manager

SecurityBearer
Request
path Parameters
uuid
required
string
query Parameters
page
integer
Default: 1

The collection page number

itemsPerPage
integer [ 0 .. 100 ]
Default: 30

The number of items per page

Responses
200

BankManager collection

get/bank-managers/{uuid}/business-registries
Request samples
Response samples
[
  • {
    }
]