GETACCOUNTGet account that belong to a member by account idInput schema{
"type": "object",
"properties": {
"customerId": {
"type": "string",
"description": "Customer Id"
},
"memberId": {
"type": "string",
"description": "Member Id"
},
"accountId": {
"type": "string",
"description": "Account Id"
}
},
"required": [
"customerId",
"memberId",
"accountId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
GETACCOUNTSGet accounts that belong to a memberInput schema{
"type": "object",
"properties": {
"customerId": {
"type": "string",
"description": "Customer Id"
},
"memberId": {
"type": "string",
"description": "Member Id"
}
},
"required": [
"customerId",
"memberId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
GETCUSTOMERSGet customers that belong to this clientInput schema{
"type": "object",
"properties": {},
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
GETIDENTITYGet identity from a connected memberInput schema{
"type": "object",
"properties": {
"customerId": {
"type": "string",
"description": "Customer Id"
},
"memberId": {
"type": "string",
"description": "Member Id"
}
},
"required": [
"customerId",
"memberId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
GETMEMBERSGet members that belong to a customerInput schema{
"type": "object",
"properties": {
"customerId": {
"type": "string",
"description": "Customer Id"
}
},
"required": [
"customerId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |
GETTRANSACTIONSGet recent transactions that belong to an accountInput schema{
"type": "object",
"properties": {
"customerId": {
"type": "string",
"description": "Customer Id"
},
"accountId": {
"type": "string",
"description": "Account Id"
}
},
"required": [
"customerId",
"accountId"
],
"additionalProperties": false,
"$schema": "http://json-schema.org/draft-07/schema#"
} | — | | — |