API Explorer

v4.0.0 (353 APIs)

Bank
Accounts
Views
Counterparties
Transactions

Create Dynamic Entity

Create a DynamicEntity.

Authentication is Mandatory

Create one DynamicEntity, after created success, the corresponding CRUD endpoints will be generated automatically

Current support field types as follow:
[number, integer, boolean, string, DATE_WITH_DAY, reference]

DATE_WITH_DAY format: yyyy-MM-dd

Value of reference type is corresponding ids, please look at the following examples.
Current supporting reference types and corresponding examples as follow:

"someField0": {
    "type": "reference:TESTING",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField1": {
    "type": "reference:creditApplicationForm",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField2": {
    "type": "reference:Bank",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField3": {
    "type": "reference:Consumer",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField4": {
    "type": "reference:Customer",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField5": {
    "type": "reference:MethodRouting",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField6": {
    "type": "reference:DynamicEntity",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField7": {
    "type": "reference:TransactionRequest",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField8": {
    "type": "reference:ProductAttribute",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField9": {
    "type": "reference:AccountAttribute",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField10": {
    "type": "reference:TransactionAttribute",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField11": {
    "type": "reference:CustomerAttribute",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField12": {
    "type": "reference:AccountApplication",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField13": {
    "type": "reference:CardAttribute",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField14": {
    "type": "reference:Counterparty",
    "example": "1a20d2e3-9a25-44df-856c-cd37dcfaec58"
}

"someField15": {
    "type": "reference:Branch:bankId&branchId",
    "example": "bankId=1a20d2e3-9a25-44df-856c-cd37dcfaec58&branchId=c07fb406-f19f-41fd-96bb-0d61aecddca3"
}

"someField16": {
    "type": "reference:Atm:bankId&atmId",
    "example": "bankId=1a20d2e3-9a25-44df-856c-cd37dcfaec58&atmId=c07fb406-f19f-41fd-96bb-0d61aecddca3"
}

"someField17": {
    "type": "reference:BankAccount:bankId&accountId",
    "example": "bankId=1a20d2e3-9a25-44df-856c-cd37dcfaec58&accountId=c07fb406-f19f-41fd-96bb-0d61aecddca3"
}

"someField18": {
    "type": "reference:Product:bankId&productCode",
    "example": "bankId=1a20d2e3-9a25-44df-856c-cd37dcfaec58&productCode=c07fb406-f19f-41fd-96bb-0d61aecddca3"
}

"someField19": {
    "type": "reference:PhysicalCard:bankId&cardId",
    "example": "bankId=1a20d2e3-9a25-44df-856c-cd37dcfaec58&cardId=c07fb406-f19f-41fd-96bb-0d61aecddca3"
}

"someField20": {
    "type": "reference:Transaction:bankId&accountId&transactionId",
    "example": "bankId=1a20d2e3-9a25-44df-856c-cd37dcfaec58&accountId=c07fb406-f19f-41fd-96bb-0d61aecddca3&transactionId=19c3a1bf-21cd-497e-a447-cc0ae3ad6152"
}

"someField21": {
    "type": "reference:Counterparty:bankId&accountId&counterpartyId",
    "example": "bankId=1a20d2e3-9a25-44df-856c-cd37dcfaec58&accountId=c07fb406-f19f-41fd-96bb-0d61aecddca3&counterpartyId=19c3a1bf-21cd-497e-a447-cc0ae3ad6152"
}

Note: BankId filed is optional,
if you add it, the entity will be the Bank level.
if you omit it, the entity will be the System level.

Typical Successful Response:

								
									
{ "bankId":"gh.29.uk", "FooBar":{ "description":"description of this entity, can be markdown text.", "required":["name"], "properties":{ "name":{ "type":"string", "minLength":3, "maxLength":20, "example":"James Brown", "description":"description of **name** field, can be markdown text." }, "number":{ "type":"integer", "example":698761728, "description":"description of **number** field, can be markdown text." } } }, "dynamicEntityId":"dynamic-entity-id", "userId":"9ca9a7e4-6d02-40e3-a129-0b2bf89de9b1" }
Required Roles:
  • CanCreateDynamicEntity - Please login to request this Role
Possible Errors:
  • OBP-20001: User not logged in. Authentication is required!
  • OBP-20006: User is missing one or more roles:
  • OBP-10001: Incorrect json format.
  • OBP-50000: Unknown Error.
Connector Methods:
Implemented in OBPv4.0.0 by createDynamicEntity, operation_id: OBPv4.0.0-createDynamicEntity

Delete Dynamic Entity

Delete a DynamicEntity specified by DYNAMIC_ENTITY_ID.

Authentication is Mandatory

Typical Successful Response:

								
									
Required Roles:
  • CanDeleteDynamicEntity - Please login to request this Role
Possible Errors:
  • OBP-20001: User not logged in. Authentication is required!
  • OBP-20006: User is missing one or more roles:
  • OBP-50000: Unknown Error.
Implemented in OBPv4.0.0 by deleteDynamicEntity, operation_id: OBPv4.0.0-deleteDynamicEntity

Delete My Dynamic Entity

Delete my DynamicEntity specified by DYNAMIC_ENTITY_ID.

Authentication is Mandatory

Typical Successful Response:

								
									
Possible Errors:
  • OBP-20001: User not logged in. Authentication is required!
  • OBP-50000: Unknown Error.
Implemented in OBPv4.0.0 by deleteMyDynamicEntity, operation_id: OBPv4.0.0-deleteMyDynamicEntity

Get Bank Level Dynamic Entities

Get all the bank level Dynamic Entities.

Authentication is Mandatory

Typical Successful Response:

								
									
{ "dynamic_entities":[{ "bankId":"gh.29.uk", "FooBar":{ "description":"description of this entity, can be markdown text.", "required":["name"], "properties":{ "name":{ "type":"string", "minLength":3, "maxLength":20, "example":"James Brown", "description":"description of **name** field, can be markdown text." }, "number":{ "type":"integer", "example":698761728, "description":"description of **number** field, can be markdown text." } } }, "dynamicEntityId":"dynamic-entity-id", "userId":"9ca9a7e4-6d02-40e3-a129-0b2bf89de9b1" }] }
Required Roles:
  • CanGetBankLevelDynamicEntities - Please login to request this Role
Possible Errors:
  • OBP-20001: User not logged in. Authentication is required!
  • OBP-20006: User is missing one or more roles:
  • OBP-50000: Unknown Error.
Connector Methods:
Implemented in OBPv4.0.0 by getBankLevelDynamicEntities, operation_id: OBPv4.0.0-getBankLevelDynamicEntities

Get Dynamic Entities

Get the all Dynamic Entities.

Authentication is Mandatory

Typical Successful Response:

								
									
{ "dynamic_entities":[{ "bankId":"gh.29.uk", "FooBar":{ "description":"description of this entity, can be markdown text.", "required":["name"], "properties":{ "name":{ "type":"string", "minLength":3, "maxLength":20, "example":"James Brown", "description":"description of **name** field, can be markdown text." }, "number":{ "type":"integer", "example":698761728, "description":"description of **number** field, can be markdown text." } } }, "dynamicEntityId":"dynamic-entity-id", "userId":"9ca9a7e4-6d02-40e3-a129-0b2bf89de9b1" }] }
Required Roles:
  • CanGetDynamicEntities - Please login to request this Role
Possible Errors:
  • OBP-20001: User not logged in. Authentication is required!
  • OBP-20006: User is missing one or more roles:
  • OBP-50000: Unknown Error.
Connector Methods:
Implemented in OBPv4.0.0 by getDynamicEntities, operation_id: OBPv4.0.0-getDynamicEntities

Get My Dynamic Entities

Get all my Dynamic Entities.

Authentication is Mandatory

Typical Successful Response:

								
									
{ "dynamic_entities":[{ "bankId":"gh.29.uk", "FooBar":{ "description":"description of this entity, can be markdown text.", "required":["name"], "properties":{ "name":{ "type":"string", "minLength":3, "maxLength":20, "example":"James Brown", "description":"description of **name** field, can be markdown text." }, "number":{ "type":"integer", "example":698761728, "description":"description of **number** field, can be markdown text." } } }, "dynamicEntityId":"dynamic-entity-id", "userId":"9ca9a7e4-6d02-40e3-a129-0b2bf89de9b1" }] }
Possible Errors:
  • OBP-20001: User not logged in. Authentication is required!
  • OBP-50000: Unknown Error.
Connector Methods:
Implemented in OBPv4.0.0 by getMyDynamicEntities, operation_id: OBPv4.0.0-getMyDynamicEntities

Update Dynamic Entity

Update a DynamicEntity.

Authentication is Mandatory

Update one DynamicEntity, after update finished, the corresponding CRUD endpoints will be changed.

Current support field types as follow:
[number, integer, boolean, string, DATE_WITH_DAY, reference]

DATE_WITH_DAY format: yyyy-MM-dd

Value of reference type is corresponding ids, please look at the following examples.
Current supporting reference types and corresponding examples as follow:

"someField0": {
    "type": "reference:TESTING",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField1": {
    "type": "reference:creditApplicationForm",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField2": {
    "type": "reference:Bank",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField3": {
    "type": "reference:Consumer",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField4": {
    "type": "reference:Customer",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField5": {
    "type": "reference:MethodRouting",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField6": {
    "type": "reference:DynamicEntity",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField7": {
    "type": "reference:TransactionRequest",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField8": {
    "type": "reference:ProductAttribute",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField9": {
    "type": "reference:AccountAttribute",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField10": {
    "type": "reference:TransactionAttribute",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField11": {
    "type": "reference:CustomerAttribute",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField12": {
    "type": "reference:AccountApplication",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField13": {
    "type": "reference:CardAttribute",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField14": {
    "type": "reference:Counterparty",
    "example": "09245a89-bc5d-4077-8196-1ca4e0193c4d"
}

"someField15": {
    "type": "reference:Branch:bankId&branchId",
    "example": "bankId=09245a89-bc5d-4077-8196-1ca4e0193c4d&branchId=9afa64d3-47be-4615-821e-319400865e28"
}

"someField16": {
    "type": "reference:Atm:bankId&atmId",
    "example": "bankId=09245a89-bc5d-4077-8196-1ca4e0193c4d&atmId=9afa64d3-47be-4615-821e-319400865e28"
}

"someField17": {
    "type": "reference:BankAccount:bankId&accountId",
    "example": "bankId=09245a89-bc5d-4077-8196-1ca4e0193c4d&accountId=9afa64d3-47be-4615-821e-319400865e28"
}

"someField18": {
    "type": "reference:Product:bankId&productCode",
    "example": "bankId=09245a89-bc5d-4077-8196-1ca4e0193c4d&productCode=9afa64d3-47be-4615-821e-319400865e28"
}

"someField19": {
    "type": "reference:PhysicalCard:bankId&cardId",
    "example": "bankId=09245a89-bc5d-4077-8196-1ca4e0193c4d&cardId=9afa64d3-47be-4615-821e-319400865e28"
}

"someField20": {
    "type": "reference:Transaction:bankId&accountId&transactionId",
    "example": "bankId=09245a89-bc5d-4077-8196-1ca4e0193c4d&accountId=9afa64d3-47be-4615-821e-319400865e28&transactionId=1576d9af-5113-43a5-a3c1-f1b71c6073cb"
}

"someField21": {
    "type": "reference:Counterparty:bankId&accountId&counterpartyId",
    "example": "bankId=09245a89-bc5d-4077-8196-1ca4e0193c4d&accountId=9afa64d3-47be-4615-821e-319400865e28&counterpartyId=1576d9af-5113-43a5-a3c1-f1b71c6073cb"
}

Typical Successful Response:

								
									
{ "bankId":"gh.29.uk", "FooBar":{ "description":"description of this entity, can be markdown text.", "required":["name"], "properties":{ "name":{ "type":"string", "minLength":3, "maxLength":20, "example":"James Brown", "description":"description of **name** field, can be markdown text." }, "number":{ "type":"integer", "example":698761728, "description":"description of **number** field, can be markdown text." } } }, "dynamicEntityId":"dynamic-entity-id", "userId":"9ca9a7e4-6d02-40e3-a129-0b2bf89de9b1" }
Required Roles:
  • CanUpdateDynamicEntity - Please login to request this Role
Possible Errors:
  • OBP-20001: User not logged in. Authentication is required!
  • OBP-20006: User is missing one or more roles:
  • OBP-10001: Incorrect json format.
  • OBP-50000: Unknown Error.
Connector Methods:
Implemented in OBPv4.0.0 by updateDynamicEntity, operation_id: OBPv4.0.0-updateDynamicEntity

Update My Dynamic Entity

Update my DynamicEntity.

Authentication is Mandatory

Update one of my DynamicEntity, after update finished, the corresponding CRUD endpoints will be changed.

Current support filed types as follow:
[number, integer, boolean, string, DATE_WITH_DAY, reference]

DATE_WITH_DAY format: yyyy-MM-dd

Value of reference type is corresponding ids, please look at the following examples.
Current supporting reference types and corresponding examples as follow:

"someField0": {
    "type": "reference:TESTING",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField1": {
    "type": "reference:creditApplicationForm",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField2": {
    "type": "reference:Bank",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField3": {
    "type": "reference:Consumer",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField4": {
    "type": "reference:Customer",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField5": {
    "type": "reference:MethodRouting",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField6": {
    "type": "reference:DynamicEntity",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField7": {
    "type": "reference:TransactionRequest",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField8": {
    "type": "reference:ProductAttribute",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField9": {
    "type": "reference:AccountAttribute",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField10": {
    "type": "reference:TransactionAttribute",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField11": {
    "type": "reference:CustomerAttribute",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField12": {
    "type": "reference:AccountApplication",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField13": {
    "type": "reference:CardAttribute",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField14": {
    "type": "reference:Counterparty",
    "example": "f6dce2fe-06be-475e-b39b-1fa44d636b0f"
}

"someField15": {
    "type": "reference:Branch:bankId&branchId",
    "example": "bankId=f6dce2fe-06be-475e-b39b-1fa44d636b0f&branchId=290d6c03-f197-462d-99e1-55dc66ff1604"
}

"someField16": {
    "type": "reference:Atm:bankId&atmId",
    "example": "bankId=f6dce2fe-06be-475e-b39b-1fa44d636b0f&atmId=290d6c03-f197-462d-99e1-55dc66ff1604"
}

"someField17": {
    "type": "reference:BankAccount:bankId&accountId",
    "example": "bankId=f6dce2fe-06be-475e-b39b-1fa44d636b0f&accountId=290d6c03-f197-462d-99e1-55dc66ff1604"
}

"someField18": {
    "type": "reference:Product:bankId&productCode",
    "example": "bankId=f6dce2fe-06be-475e-b39b-1fa44d636b0f&productCode=290d6c03-f197-462d-99e1-55dc66ff1604"
}

"someField19": {
    "type": "reference:PhysicalCard:bankId&cardId",
    "example": "bankId=f6dce2fe-06be-475e-b39b-1fa44d636b0f&cardId=290d6c03-f197-462d-99e1-55dc66ff1604"
}

"someField20": {
    "type": "reference:Transaction:bankId&accountId&transactionId",
    "example": "bankId=f6dce2fe-06be-475e-b39b-1fa44d636b0f&accountId=290d6c03-f197-462d-99e1-55dc66ff1604&transactionId=5ae7aaf0-df20-4a5a-92f3-aaa1098b3fe6"
}

"someField21": {
    "type": "reference:Counterparty:bankId&accountId&counterpartyId",
    "example": "bankId=f6dce2fe-06be-475e-b39b-1fa44d636b0f&accountId=290d6c03-f197-462d-99e1-55dc66ff1604&counterpartyId=5ae7aaf0-df20-4a5a-92f3-aaa1098b3fe6"
}

Typical Successful Response:

								
									
{ "bankId":"gh.29.uk", "FooBar":{ "description":"description of this entity, can be markdown text.", "required":["name"], "properties":{ "name":{ "type":"string", "minLength":3, "maxLength":20, "example":"James Brown", "description":"description of **name** field, can be markdown text." }, "number":{ "type":"integer", "example":698761728, "description":"description of **number** field, can be markdown text." } } }, "dynamicEntityId":"dynamic-entity-id", "userId":"9ca9a7e4-6d02-40e3-a129-0b2bf89de9b1" }
Possible Errors:
  • OBP-20001: User not logged in. Authentication is required!
  • OBP-10001: Incorrect json format.
  • OBP-50000: Unknown Error.
Connector Methods:
Implemented in OBPv4.0.0 by updateMyDynamicEntity, operation_id: OBPv4.0.0-updateMyDynamicEntity