Download OpenAPI specification:
API for accessing Open Finance Brazil data and managing consents.
This API exposes endpoints for:
/consent-management)/openid)/open-finance): accounts, credit cards, loans, financings, overdraft advances, invoice financings, investments, and customer dataThe Open Finance data endpoints (/open-finance/*) expose aggregated financial data from transmitting institutions via Open Finance Brazil, providing a unified abstraction layer over connected account data.
Creates a new data-sharing consent for the customer.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
required | object |
{- "data": {
- "loggedUser": {
- "document": {
- "identification": "11111111111",
- "rel": "CPF"
}
}, - "businessEntity": {
- "document": {
- "identification": "11111111111111",
- "rel": "CNPJ"
}
}, - "permissions": [
- "ACCOUNTS_READ",
- "ACCOUNTS_OVERDRAFT_LIMITS_READ",
- "RESOURCES_READ"
], - "expirationDateTime": "2021-05-21T08:30:00Z"
}
}{- "data": {
- "consentId": "urn:bancoex:C1DD33123",
- "consent": { }
}
}Generates a new authorisation redirect URL for a consent that failed or was not completed.
| consentId required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 The consentId is the unique consent identifier and must be a URN (Uniform Resource Name), as defined in RFC 8141. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
required | object |
{
}{- "data": {
- "consentId": "urn:bancoex:C1DD33123",
- "consent": { }
}
}Renews an existing consent. The consent can only be renewed if it is in an active state and within the allowed renewal window.
| consentId required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 The consentId is the unique consent identifier and must be a URN (Uniform Resource Name), as defined in RFC 8141. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-customer-user-agent required | string [ 1 .. 100 ] characters [\w\W\s]* User-agent string of the end user. |
| x-fapi-customer-ip-address required | string[\w\W\s]* End user's IP address if they are currently logged in with the client. |
required | object |
{- "data": {
- "expirationDateTime": "2021-05-21T08:30:00Z",
- "loggedUser": {
- "document": {
- "identification": "11111111111",
- "rel": "CPF"
}
}, - "businessEntity": {
- "document": {
- "identification": "11111111111111",
- "rel": "CNPJ"
}
}
}
}{- "data": {
- "consentId": "urn:bancoex:C1DD33123",
- "consent": { }
}
}Returns details of all extensions (renewals) made to the specified consent.
| consentId required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 The consentId is the unique consent identifier and must be a URN (Uniform Resource Name), as defined in RFC 8141. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
{- "data": {
- "consentId": "urn:bancoex:C1DD33123",
- "consent": {
- "data": [
- {
- "expirationDateTime": "2021-05-21T08:30:00Z",
- "loggedUser": {
- "document": {
- "identification": "11111111111",
- "rel": "CPF"
}
}, - "requestDateTime": "2021-05-21T08:30:00Z"
}
]
}
}
}Returns the full details of the specified consent.
| consentId required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 The consentId is the unique consent identifier and must be a URN (Uniform Resource Name), as defined in RFC 8141. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
{- "data": {
- "consentId": "urn:bancoex:C1DD33123",
- "consent": { }
}
}Deletes or revokes the specified consent, terminating data-sharing authorisation.
| consentId required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 The consentId is the unique consent identifier and must be a URN (Uniform Resource Name), as defined in RFC 8141. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
{- "errors": [
- {
- "code": "4XX",
- "title": "Título legível por humanos deste erro específico",
- "detail": "Descrição legível por humanos deste erro específico"
}
], - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns all institutions registered in the Open Finance Brazil directory, including their Authorisation Server identifiers and available API resources.
| role | string Filter results to OrgDomainRoleClaims containing the specified role. Role types are subject to change. |
| familyType | string Filter results to ApiResources containing the specified familyType. |
[- {
- "OpenIDDiscoveryDocument": "https://open-finance.transmissora.com.br/.well-known/openid-configuration",
- "CustomerFriendlyName": "Transmissora Open Finance",
- "CustomerFriendlyLogoUri": "https://cdn.raidiam.io/directory-ui/brand/obbrazil/0.2.0.112/favicon.svg",
- "CustomerFriendlyDescription": "Descrição da transmissora Open Finance",
- "Organisations": [
- {
- "OrganisationId": "ce31b1e1-71c5-4918-ba5b-3e8f6401c71f",
- "RegisteredName": "Transmissora S.A.",
- "RegistrationNumber": "60663556000104",
- "ParentOrganisationReference": "60701190000104"
}
], - "OrgDomainRoleClaims": [
- {
- "Status": "Active",
- "role": "CONTA"
}
], - "AuthorisationServerIds": [
- "a9e62501-0b91-4af9-837d-c2d210736f28"
], - "ApiResources": [
- {
- "ApiFamilyType": "payments-consents",
- "ApiVersion": 1
}
]
}
]Used in the App-to-App flow to exchange the authorisation code returned by the data provider for tokens, or to process an authorisation error.
| data | string |
{- "data": "code=LxSevzQNevQJM0yx4dhPo4oJHdYhAHG808ssYF2OlzC&id_token=eyJhbGciOiJQUzI1NiIsInR5cCI6IkpXVCIsImtpZCI6IkVKU01fbW1UMV9qTTVieTM5aEttR01BSWNTM2lzQ3BPSlB5NVdnUmY3RUUifQ.eyJzdWIiOiJPRkMtNDkzOGI1ODIzZWQzNjMxNmQyZTVjYzY5M2YxNzljMTJjNTE0MjNlYTQ0NzJiYjgyZWI5YWYzNTE0NjEyYmI2MSIsImF1dGhfdGltZSI6MTY5NTY3NjE2MCwiYWNyIjoidXJuOmJyYXNpbDpvcGVuYmFua2luZzpsb2EyIiwibm9uY2UiOiIzNjE2YzM3NWFjMDZlODBjMTk3MjljMTkwOGEzYjkxMGQ3ODVlYzViZTkxOTZhN2YyZjllZjhmNDI1YmVlNWMxIiwiY19oYXNoIjoiRUVMd2FoU1FQUGt2WEZWZzJOZnRHUSIsInNfaGFzaCI6IndPN1hZbFB1c1FZMGtwOG1Ucmw3WVEiLCJhdWQiOiI1aUtkV3JCdlhFRjJHNWgwZ1RaMkMiLCJleHAiOjE2OTU2NzcwNjAsImlhdCI6MTY5NTY3NjE2MCwiaXNzIjoiaHR0cHM6Ly9vYmIucWEub29iLm9wdXMtc29mdHdhcmUuY29tLmJyLyJ9.SNBN_Buh_Y0iLuJGP4bgSHYnSKC_g76R0CpWEVRJua788RNoJpAzhAm6Ah6vOb2nD-H4Yq2MAjRy_Fkh7ruziBaJ4ebDexxQ2GAocBgrmQ2JwI-Q-1D4Xm1WuSS6OSm04Kk0CiV8MylidwxF_4XS40uWqxTJQcgG8dP4NC9-ty8S6a-6oGs0MekjOqm9mU0aFDwS8fRGZ8TU-8AT15hiMQ9sXsgNlfrci0MQi9Jb6t9o4c93mKCLhGypYswjs1MjVoXD3K6btZ2NSZYBQROtTK_tl9HkvW1uRVhNVZjzwDs1DJrvZpLP48es8YPxFtYAAKsuwiB8bza58MYKvvW81A&state=dXJuOmFtYXppbmdiYW5rOjdlOWYxMDhmLWE3MDktNDBlNi1iMzQ2LTNjNGZiMzBjNjcyNnwx"
}{- "error": "access_denied",
- "error_description": "Error in user authentication"
}Endpoints for listing resources linked to a consent, following Open Finance Brazil standards.
Returns the list of resources held by the customer at the data provider and covered by the active consent.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- {
- "resourceId": "25cac914-d8ae-6789-b215-650a6215820d",
- "type": "ACCOUNT",
- "status": "AVAILABLE"
}
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Endpoints for querying customer registration data (individuals and businesses), following Open Finance Brazil standards.
Returns the identification records for the individual customer held at the data provider.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the identification records for the business customer held at the data provider.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the qualification records (financial profile) for the individual customer held at the data provider.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the qualification records (financial profile) for the business customer held at the data provider.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the financial relationship records and authorised representatives for the individual customer at the data provider.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the financial relationship records and authorised representatives for the business customer at the data provider.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Endpoints for querying credit card account data, following Open Finance Brazil standards.
Returns the list of credit card (post-paid payment) accounts held by the customer at the data provider and covered by the active consent.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- {
- "creditCardAccountId": "XXZTR3459087",
- "brandName": "Organização A",
- "companyCnpj": "21128159000166",
- "name": "Cartão Universitário",
- "productType": "CLASSIC_NACIONAL",
- "creditCardNetwork": "MASTERCARD"
}
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the identification data for the credit card account identified by creditCardAccountId.
| creditCardAccountId required | string Uniquely identifies the credit card account, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the credit limits for the account identified by creditCardAccountId.
| creditCardAccountId required | string Uniquely identifies the credit card account, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the historical transaction list (up to the last 12 months) for the credit card account identified by creditCardAccountId.
| creditCardAccountId required | string Uniquely identifies the credit card account, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the recent transaction list (last 7 days) for the credit card account identified by creditCardAccountId.
| creditCardAccountId required | string Uniquely identifies the credit card account, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the list of bills for the credit card account identified by creditCardAccountId.
| creditCardAccountId required | string Uniquely identifies the credit card account, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the list of transactions for the bill identified by billId on the credit card account identified by creditCardAccountId.
| creditCardAccountId required | string Uniquely identifies the credit card account, preserving immutability rules within the data provider. |
| billId required | string Identifies the bill. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Endpoints for querying payment and deposit account data, following Open Finance Brazil standards.
Returns the list of accounts consented by the customer.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- {
- "brandName": "Organização A",
- "companyCnpj": "21128159000166",
- "type": "CONTA_DEPOSITO_A_VISTA",
- "compeCode": "001",
- "branchCode": "6272",
- "number": "24550245",
- "checkDigit": "4",
- "accountId": 9.279212601992927e+40
}
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the identification data for the account identified by accountId.
| accountId required | string Identifier for a demand deposit, savings, or prepaid payment account. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the balance information for the account identified by accountId.
| accountId required | string Identifier for a demand deposit, savings, or prepaid payment account. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the historical transaction list for the account identified by accountId.
| accountId required | string Identifier for a demand deposit, savings, or prepaid payment account. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the recent transaction list (last 7 days) for the account identified by accountId.
| accountId required | string Identifier for a demand deposit, savings, or prepaid payment account. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the overdraft limits for the account identified by accountId.
| accountId required | string Identifier for a demand deposit, savings, or prepaid payment account. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the list of loan contracts held by the customer at the data provider and covered by the active consent.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- {
- "brandName": "string",
- "companyCnpj": "string",
- "productType": "string",
- "productSubType": "string",
- "ipocCode": "string",
- "contractId": "string"
}
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the data for the loan contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the list of warranties linked to the loan contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the payment data for the loan contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the scheduled instalments for the loan contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Endpoints for querying financing credit operation data, following Open Finance Brazil standards.
Returns the list of financing contracts held by the customer at the data provider and covered by the active consent.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the data for the financing contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the warranties linked to the financing contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the payment data for the financing contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the scheduled instalments for the financing contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Endpoints for querying overdraft advance data, following Open Finance Brazil standards.
Returns the list of overdraft advance contracts consented by the customer.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the data for the overdraft advance contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the warranties linked to the overdraft advance contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the payment data for the overdraft advance contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the scheduled instalments for the overdraft advance contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Endpoints for querying discounted credit rights (invoice financings) data, following Open Finance Brazil standards.
Returns the list of invoice financing (receivables advance) contracts consented by the customer.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the data for the invoice financing contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the warranties linked to the invoice financing contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the payment data for the invoice financing contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the scheduled instalments for the invoice financing contract identified by contractId.
| contractId required | string Contract identifier for all types of credit operations. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Endpoints for querying bank fixed income investment data, following Open Finance Brazil standards.
Returns the list of bank fixed income investment positions held by the customer at the data provider.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- {
- "brandName": "string",
- "companyCnpj": "string",
- "investmentType": "string",
- "investmentId": "string"
}
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the data for the bank fixed income investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the current balance/position for the bank fixed income investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the transaction history for the bank fixed income investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns recent transactions (last 7 days) for the bank fixed income investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Endpoints for querying credit fixed income investment data, following Open Finance Brazil standards.
Returns the list of credit fixed income investment positions held by the customer at the data provider.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the data for the credit fixed income investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the current balance/position for the credit fixed income investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the transaction history for the credit fixed income investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns recent transactions (last 7 days) for the credit fixed income investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Endpoints for querying variable income investment data, following Open Finance Brazil standards.
Returns the list of variable income (equity) investment positions held by the customer at the data provider.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the data for the variable income investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the current balance/position for the variable income investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the transaction history for the variable income investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns recent transactions (last 7 days) for the variable income investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the broker note identified by brokerNoteId.
| brokerNoteId required | string Uniquely identifies the broker note, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Endpoints for querying Tesouro Direto (Brazilian treasury bond) investment data, following Open Finance Brazil standards.
Returns the list of Tesouro Direto (Brazilian treasury bond) investment positions held by the customer at the data provider.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the data for the Tesouro Direto investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the current balance/position for the Tesouro Direto investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the transaction history for the Tesouro Direto investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns recent transactions (last 7 days) for the Tesouro Direto investment identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Endpoints for querying investment fund data, following Open Finance Brazil standards.
Returns the list of investment fund positions held by the customer at the data provider.
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the data for the investment fund position identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the current balance/position for the investment fund identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": { },
- "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns the transaction history for the investment fund identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Returns recent transactions (last 7 days) for the investment fund identified by investmentId.
| investmentId required | string Uniquely identifies the customer's relationship with the investment product, preserving immutability rules within the data provider. |
| x-authorisation-server-id required | string <uuid> (UUID) [a-fA-F0-9]{8}-[a-fA-F0-9]{4}-[a-fA-F0-9]{4}-... Example: 556392bd-b4c2-4cc0-9abe-f2c77a5c5d8f Authorisation Server identifier for the consent's data provider, obtained from the participants list. |
| x-consent-id required | string <= 256 characters ^urn:[a-zA-Z0-9][a-zA-Z0-9-]{0,31}:[a-zA-Z0-9... Example: urn:bancox:f865cd66-392a-420b-9ff0-1b6d7cc60ee0 Consent identifier to be used in this operation, obtained from the consent creation response. |
{- "data": [
- { }
], - "links": {
}, - "meta": {
- "totalRecords": 1,
- "totalPages": 1,
- "requestDateTime": "2021-05-21T08:30:00Z"
}
}Endpoints for retrieving iOS Universal Links and Android App Links configuration so the receiving institution app can intercept URLs.
Issues an OAuth 2.0 access token and refresh token using the Client Credentials grant type. The returned access token must be sent as a Bearer token in the Authorization header of every subsequent API call. Cache and reuse the access token until it expires, then use the refresh token to obtain a new one without re-presenting client credentials.
| grant_type required | string Value: "client_credentials" Must be |
| scope | string Optional space-separated list of requested scopes. |
{- "access_token": "string",
- "token_type": "Bearer",
- "expires_in": 0,
- "scope": "string",
- "refresh_token": "string",
- "refresh_token_expires_in": 0
}Issues a new access token using an existing refresh token, without requiring client credentials again. The response follows the same shape as POST /auth/v1/token and may include a rotated refresh token.
| grant_type required | string Value: "refresh_token" Must be |
| refresh_token required | string The refresh token returned by a previous call to |
{- "access_token": "string",
- "token_type": "Bearer",
- "expires_in": 0,
- "scope": "string",
- "refresh_token": "string",
- "refresh_token_expires_in": 0
}