A set of codes that describe the status of an account
A set of codes that describe the status of an account
"ENABLED"
The Electrum Regulated Payments API is an asynchronous API that allows partners to participate in various nationally regulated payment schemes.
This document describes the operations exposed by Electrum for partners to consume in order to initiate outbound or respond to inbound payments.
As the Regulated Payments API is asynchronous, partners have a choice of how to integrate with Electrum:
Receiving transactional events via webhooks or API are equivalent, except that it may be more familiar or convenient to implement one style or the other. Partners may request the method of communication Electrum should use when selecting which payment schemes to participate in.
https://example.com/path/payments/api/v1/
An account within the Electrum Account mirror. Note that the primaryIdentification is permanent and immutable.
A valid, active currency code as defined in ISO 4217 indicating the currency of the amount.
Holds details pertaining to an identifier of an account or store of value.
An identifier's namespace provides a context for the identifier to distinguish different identifiers which may have the same value but be intended to identify different accounts. For example, a bank may use the same MSISDN (identifier) with different namespaces to distinguish between a customer's cheque or savings accounts.
This may be used by the following schemes:
Indicates the schema of the identifier, e.g. MOBILE, CUSTOM.
A set of codes that describe the status of an account
{ "accountName": "string", "additionalIdentifications": [ { … } ], "currency": "string", "openingDate": "2019-08-24T14:15:22Z", "primaryIdentification": { "accountKnownAs": "string", "identifier": { … }, "registeredSchemes": [ … ] }, "restrictions": [ { … } ], "status": "ENABLED", "type": { "schema": "string", "value": "CACC" } }
Contains information detailing the owner of an account, which can be either a person or organisation.
A unique identifier used to identify this Account Owner record. This is distinct from the identification of the Account Owner, which may or may not be unique within this system, but which is typically used for identification outside of the system, such as passport numbers or national identification numbers. This identifier is used exclusively to identify the owner within this system.
A code to identify a country, a dependency, or another area of particular geopolitical interest, on the basis of country names obtained from the United Nations (ISO 3166, Alpha-2 code).
{ "recordIdentifier": "string", "schema": "INDIVIDUAL", "address": { "addressLine": [ … ], "addressType": "ADDR", "buildingName": "string", "buildingNumber": "string", "country": "string", "countrySubDivision": "string", "department": "string", "districtName": "string", "floor": "string", "postBox": "string", "postCode": "string", "room": "string", "streetName": "string", "subDepartment": "string", "townLocationName": "string", "townName": "string" }, "contactDetails": { "emailAddress": "user@example.com", "mobileNumber": "string", "phoneNumber": "string" }, "countryOfResidence": "string", "identifiers": [ { … } ], "name": { "additionalNames": "string", "firstName": "string", "initials": "string", "knownAs": "string", "lastName": "string", "title": "string" } }