- Transactions v0.27.1
- Error Types
- Authentication
- Transactions
- Pending Transactions
- History
- API
- Checks Images
- Configuration
-
Schemas
- abstractRequest
- abstractResource
- ach
- address
- attributeValue
- attributes
- balance
- checkImage
- collection
- configurationGroup
- configurationGroupSummary
- configurationGroups
- configurationGroupsEmbedded
- configurationSchema
- configurationSchemaValue
- configurationValue
- configurationValues
- disputeState
- electronicFundsTransfer
- error
- errorResponse
- gpsCoordinates
- holdState
- ifxType
- labelGroup
- labelGroups
- labelItem
- link
- links
- money
- root
- simpleLabel
- transaction
- transactionAccountNumbers
- transactionCardNumbers
- transactionCheckImage
- transactionInquiry
- transactionInquiryState
- transactionMemo
- transactionRecurrence
- transactionState
- transactionType
- transactions
- transactionsEmbedded
Transactions v0.27.1
Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
The Transactions API provides read-only access to banking account transactions for bank customers.
The Transactions API returns transactions for accounts held at the current financial institution. Transactions are debits and credits to accounts, such as deposits, transfers, processed checks, fees, interest, holds, reversals, etc. The /history
collection lists completed transactions. Pending transactions are managed in a separate collection, accessed via the getPendingTransactions
operation.
Note that the queries to filter transactions, such as
GET /transactions/history?account={accountId}
do not filter by the actual account numbers. For security, these queries only filter based on the opaque account resource ID, which is decoupled from the account number. (The {accountId}
is the account's _id
from the Accounts API.) Thus, actual customer account numbers do not appear in the request URLs or in web traffic logs.
Some transactions have check images associated with them, such as a cashed check photograph captured for remote check deposit, or a written check drafted against the account. If there is a check, the transaction
object contains two links to the check image content, one for the check front and one for the back (typically JPEG or PNG image).
This API also supports service configuration operations.
Error Types
Error responses in this API may have one of the type
values described below.
See Errors for more information
on error responses and error types.
invalidCheckId
Description: No checks images were found for the specified checkId or check side.
Remediation: Use the check image links on a transaction.
tooManyTransactions
Description: The tranaction history filters result in more than the maximum number of transactions for the text/csv
response.
Remediation: Narrow the filters to reduce the size of the result, such as choosing a smaller date range.
transactionMemoNotFound
Description: No transaction memo was found for the specified transactionId
.
Remediation: The memo resource only exists if the transaction has a memo
property.
transactionNotFound
Description: No transactions were found for the specified transactionId
.
Remediation: Check to make sure that the supplied transactionId corresponds to a transaction resource.
Download OpenAPI Definition (YAML)
Base URLs:
Authentication
- API Key (
apiKey
)- header parameter: API-Key
- API Key based authentication. Each client application must pass its private, unique API key, allocated in the developer portal, via the
API-Key: {api-key}
request header.
- OAuth2 authentication (
accessToken
)- OAuth2 client access token authentication. The client authenticates against the server at
authorizationUrl
, passing the client's privateclientId
(and optionalclientSecret
) as part of this flow. The client obtains an access token from the server attokenUrl
. It then passes the received access token via theAuthorization: Bearer {access-token}
header in subsequent API calls. The authorization process also returns a refresh token which the client should use to renew the access token before it expires. - Flow:
authorizationCode
- Authorization URL = https://auth.devbank.apiture.com/auth/oauth2/authorize
- Token URL = https://api.devbank.apiture.com/auth/oauth2/token
- OAuth2 client access token authentication. The client authenticates against the server at
Scope | Scope Description |
---|---|
banking/read |
Read access to accounts and account-related resources such as transfers and transactions. |
banking/write |
Write (update) access to accounts and account-related resources such as transfers and transactions. |
banking/delete |
Delete access to deletable accounts and account-related resources such as transfers. |
banking/readBalance |
Read access to account balances. This must be granted in addition to the banking/read scope in order to view balances, but is included in the banking/full scope. |
banking/full |
Full access to accounts and account-related resources such as transfers and transactions. |
Transactions
Bank Account Transactions
getTransaction
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/transactions/{transactionId} \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/transactions/transactions/{transactionId} HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/transactions/{transactionId}',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/transactions/{transactionId}',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/transactions/{transactionId}',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api.devbank.apiture.com/transactions/transactions/{transactionId}', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/transactions/{transactionId}");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/transactions/{transactionId}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Fetch a representation of this transaction
GET https://api.devbank.apiture.com/transactions/transactions/{transactionId}
Return a HAL representation of this transaction resource.
Parameters
Parameter | Description |
---|---|
transactionId in: path | string (required) The unique identifier of this transaction. This is an opaque string. This string is not the same as the bank's core transaction ID; it is simply the resource ID for referencing the transaction resource via the API. |
unmasked in: query | boolean When requesting a transaction, the full account number is not included in the response by default, for security reasons. Include this query parameter, with a value of true , to request that the response body includes the full account number. Such requests are auditable.default: false |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transaction/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions/969d61b1-2b49-4eb6-9b7d-356f242ca0aa"
},
"apiture:account": {
"href": "/accounts/accounts/7e6acb45-71c0-4aa8-9fe4-a5f3b4298be7"
},
"apiture:checkFrontImage": {
"href": "/vault/files/14361265-7837-4eab-8b74-3232c9716385/content"
},
"apiture:checkBackImage": {
"href": "/vault/files/41c9daba-c4c6-412d-9faf-eb82bc76e2e1/content"
},
"apiture:sourceAccount": {
"href": "/accounts/accounts/85efad52-14f6-494f-a52b-5b5960000766"
}
},
"_id": "969d61b1-2b49-4eb6-9b7d-356f242ca0aa",
"amount": {
"value": "327.50",
"currency": "USD"
},
"balance": {
"current": "2180.27",
"currency": "USD"
},
"state": "completed",
"type": "debit",
"providerSummary": "check 1856 | Don't Bug Me Pest Control",
"summary": "check 1856 | Don't Bug Me Pest Control",
"description": "check 1856, processed May 10, 2019",
"memo": "Annual pest control contract fee. #Annual #AutomaticDraft",
"recurs": "recurring",
"cashBackAmount": {
"amount": "123.45",
"currency": "USD"
},
"checkNumber": 1856,
"sourceAccountNumbers": {
"masked": "*************3210",
"full": "9876543210"
},
"sourceAccountName": "My Personal Checking",
"transactionCode": "D480",
"postedOn": "2020-07-01",
"effectiveAt": "2020-07-01T06:24:31.375Z",
"network": "check",
"disputeState": "resolved"
}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: transaction | |
Header | ETag string |
The ETag response header specifies an entity tag which must be provided in an If-Match request header for PUT or PATCH operations which update this resource. |
Status | Description |
---|---|
304 | Not Modified |
Not Modified. The resource has not been modified since it was last fetched. |
Status | Description |
---|---|
404 | Not Found |
Not Found. There is no such transaction resource at the specified This error response may have one of the following | |
Schema: errorResponse |
getTransactionMemo
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
The user-editable transaction memo
GET https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo
Return the optional user-editable memo for this transaction.
Parameters
Parameter | Description |
---|---|
transactionId in: path | string (required) The unique identifier of this transaction. This is an opaque string. This string is not the same as the bank's core transaction ID; it is simply the resource ID for referencing the transaction resource via the API. |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transactionMemo/v1.1.1/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"text": "Annual pest control contract fee. #Annual #AutomaticDraft"
}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: transactionMemo | |
Header | ETag string |
The ETag response header specifies an entity tag which must be provided in an If-Match request header for PUT or PATCH operations which update this resource. |
Status | Description |
---|---|
304 | Not Modified |
Not Modified. The resource has not been modified since it was last fetched. |
Status | Description |
---|---|
404 | Not Found |
Not Found. There is no such transaction memo resource at the specified This error response may have one of the following | |
Schema: errorResponse |
updateTransactionMemo
Code samples
# You can also use wget
curl -X PUT https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'If-Match: string' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
PUT https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo HTTP/1.1
Host: api.devbank.apiture.com
Content-Type: application/json
Accept: application/json
If-Match: string
const fetch = require('node-fetch');
const inputBody = '{
"_profile": "https://production.api.apiture.com/schemas/transactions/transactionMemo/v1.1.1/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"text": "Annual pest control contract fee. #Annual #AutomaticDraft"
}';
const headers = {
'Content-Type':'application/json',
'Accept':'application/json',
'If-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo',
{
method: 'PUT',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Content-Type':'application/json',
'Accept':'application/json',
'If-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo',
method: 'put',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Content-Type' => 'application/json',
'Accept' => 'application/json',
'If-Match' => 'string',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.put 'https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Content-Type': 'application/json',
'Accept': 'application/json',
'If-Match': 'string',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.put('https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("PUT");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Content-Type": []string{"application/json"},
"Accept": []string{"application/json"},
"If-Match": []string{"string"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("PUT", "https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Update this transaction's memo
PUT https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo
Create or update the this transaction's memo.
Body parameter
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transactionMemo/v1.1.1/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"text": "Annual pest control contract fee. #Annual #AutomaticDraft"
}
Parameters
Parameter | Description |
---|---|
If-Match in: header | string The entity tag that was returned in the ETag response. This must match the current entity tag of the resource. |
body | transactionMemo A memo to attach to the transaction. |
transactionId in: path | string (required) The unique identifier of this transaction. This is an opaque string. This string is not the same as the bank's core transaction ID; it is simply the resource ID for referencing the transaction resource via the API. |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transactionMemo/v1.1.1/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"text": "Annual pest control contract fee. #Annual #AutomaticDraft"
}
Responses
Status | Description |
---|---|
200 | OK |
OK. The transaction's memo was updated successfully. | |
Schema: transactionMemo | |
201 | Created |
Created. A new memo was attached to the transaction. | |
Schema: transactionMemo | |
Header | Location string uri |
The URI of the new resource. If the URI begins with / it is relative to the API root context. Else, it is a full URI starting with scheme ://host | |
Header | ETag string |
The ETag response header specifies an entity tag which must be provided in an If-Match request header for PUT or PATCH operations which update the resource. |
Status | Description |
---|---|
400 | Bad Request |
Bad Request. The request body or one or more of the query parameters was not well formed. The _error field in the response contains details about the request error. | |
Schema: errorResponse |
Status | Description |
---|---|
404 | Not Found |
Not Found. There is no such transaction resource at the specified This error response may have one of the following | |
Schema: errorResponse |
Status | Description |
---|---|
412 | Precondition Failed |
Precondition Failed. The supplied This error response may have one of the following | |
Schema: errorResponse |
Status | Description |
---|---|
422 | Unprocessable Entity |
Unprocessable Entity. One or more of the query parameters was well formed but otherwise invalid. The _error field in the response contains details about the request error. | |
Schema: errorResponse |
deleteTransactionMemo
Code samples
# You can also use wget
curl -X DELETE https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
DELETE https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo',
{
method: 'DELETE',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo',
method: 'delete',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.delete 'https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.delete('https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("DELETE");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("DELETE", "https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Delete this transaction memo
DELETE https://api.devbank.apiture.com/transactions/transactions/{transactionId}/memo
Delete this transaction memo.
Parameters
Parameter | Description |
---|---|
transactionId in: path | string (required) The unique identifier of this transaction. This is an opaque string. This string is not the same as the bank's core transaction ID; it is simply the resource ID for referencing the transaction resource via the API. |
Example responses
404 Response
{
"_profile": "https://production.api.apiture.com/schemas/common/errorResponse/v2.1.1/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"_error": {
"_id": "2eae46e1-575c-4d69-8a8f-0a7b0115a4b3",
"message": "Description of the error will appear here.",
"statusCode": 422,
"type": "specificErrorType",
"attributes": {
"value": "Optional attribute describing the error"
},
"remediation": "Optional instructions to remediate the error may appear here.",
"occurredAt": "2018-01-25T05:50:52.375Z",
"_links": {
"describedby": {
"href": "https://production.api.apiture.com/errors/specificErrorType"
}
},
"_embedded": {
"errors": []
}
}
}
Responses
Status | Description |
---|---|
204 | No Content |
No Content. The resource was deleted successfully. |
Status | Description |
---|---|
404 | Not Found |
Not Found. There is no such transaction memo resource at the specified This error response may have one of the following | |
Schema: errorResponse |
Pending Transactions
Bank Account Pending Transactions
getPendingTransactions
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/pendingTransactions \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/transactions/pendingTransactions HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/pendingTransactions',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/pendingTransactions',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/pendingTransactions',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api.devbank.apiture.com/transactions/pendingTransactions', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/pendingTransactions");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/pendingTransactions", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Return a collection of pending transactions
GET https://api.devbank.apiture.com/transactions/pendingTransactions
Return a paginated filterable searchable collection of pending transactions. The links in the response include pagination links.
The default returns pending transactions for all accounts that the user has access to.
Parameters
Parameter | Description |
---|---|
account in: query | string A list of server-supplied values which identify the account instances, i.e. ?account=acctId1|acctId2|acctId3 . |
checkNumber in: query | string Specify one or more check numbers or check number ranges. This is a comma-separated or | separated list of number or ranges. Ranges have the form number-number . For example, the queries ?checkNumber=201,202,210-213 ?checkNumber=201|202|210-213 are are equivalent to ?filter=in(checkNumber,201,202,210,211,212,213) . |
holdState in: query | string Subset the transactions collection to those whose holdState matches this value. Use | to separate multiple values. For example, ?holdState=active matches only items whose holdState is active ; ?holdState=active|expired matches items whose holdState is active or expired . This is combined with an implicit and with other filters if they are used. See filtering.default: "none" |
filter in: query | string Optional filter criteria. See filtering. |
q in: query | string Optional search string. See searching. |
start in: query | integer(int64) The zero-based index of the first transaction in this page. The default, 0, represents the first page of the collection. format: int64 default: 0 |
limit in: query | integer(int32) The maximum number of transaction representations to return in this page. format: int32 default: 100 |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transactions/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions?start=10&limit=10"
},
"first": {
"href": "/transactions/transactions?start=0&limit=10"
},
"next": {
"href": "/transactions/transactions?start=20&limit=10"
},
"collection": {
"href": "/transactions/transactions"
}
},
"start": 10,
"limit": 10,
"count": 67,
"name": "transactions",
"_embedded": {
"items": [
{
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_profile": "https://production.api.apiture.com/schemas/transactions/transaction/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions/0399abed-fd3d-4830-a88b-30f38b8a365c"
},
"apiture:account": {
"href": "/transactions/accounts/86de587e-a5a7-11e8-98d0-529269fb1459"
},
"apiture:organization": {
"href": "/transactions/organizations/86de587e-a5a7-11e8-98d0-529269fb1459"
}
},
"amount": {
"value": "35.00",
"currency": "USD"
},
"state": "pending",
"type": "debit",
"providerSummary": "gas station"
},
{
"_id": "d62c0701-0d74-4836-83f9-ebf3709442ea",
"_profile": "https://production.api.apiture.com/schemas/transactions/transaction/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions/d62c0701-0d74-4836-83f9-ebf3709442ea"
},
"apiture:account": {
"href": "/transactions/accounts/86de587e-a5a7-11e8-98d0-529269fb1459"
},
"apiture:organization": {
"href": "/transactions/organizations/86de587e-a5a7-11e8-98d0-529269fb1459"
}
},
"amount": {
"value": "1000.00",
"currency": "USD"
},
"state": "pending",
"type": "debit",
"providerSummary": "donation"
}
]
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: transactions |
Status | Description |
---|---|
400 | Bad Request |
Bad Request. The request body or one or more of the query parameters was not well formed. The _error field in the response contains details about the request error. | |
Schema: errorResponse |
Status | Description |
---|---|
422 | Unprocessable Entity |
Unprocessable Entity. One or more of the query parameters was well formed but otherwise invalid. The _error field in the response contains details about the request error. | |
Schema: errorResponse |
History
Bank Account Past Transactions
getTransactions
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/transactions \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/transactions/transactions HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/transactions',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/transactions',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/transactions',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api.devbank.apiture.com/transactions/transactions', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/transactions");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/transactions", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Return a collection of pending and completed transactions.
GET https://api.devbank.apiture.com/transactions/transactions
Return a paginated sortable filterable searchable collection of completed transactions. The links in the response include pagination links.
The default returns transactions for all accounts that the user has access to. The default sort order is by descending effectiveAt
.
Note: Before version 0.17.0, this operation also included pending transactions. Pending transactions are now only available via getPendingTransactions
. This operation is now an alias for getHistory
.
Parameters
Parameter | Description |
---|---|
account in: query | string A list of server-supplied values which identify the account instances, i.e. ?account=acctId1|acctId2|acctId3 . |
checkNumber in: query | string Specify one or more check numbers or check number ranges. This is a comma-separated or | separated list of number or ranges. Ranges have the form number-number . For example, the queries ?checkNumber=201,202,210-213 ?checkNumber=201|202|210-213 are are equivalent to ?filter=in(checkNumber,201,202,210,211,212,213) . |
holdState in: query | string Subset the transactions collection to those whose holdState matches this value. Use | to separate multiple values. For example, ?holdState=active matches only items whose holdState is active ; ?holdState=active|expired matches items whose holdState is active or expired . This is combined with an implicit and with other filters if they are used. See filtering.default: "none" |
disputeState in: query | string Subset the transactions collection to those whose disputeState matches this value. Use | to separate multiple values. For example, ?disputeState=resolved matches only items whose disputeState is resolved ; ?disputeState=resolved|inProgress matches items whose disputeState is resolved or inProgress . This is combined with an implicit and with other filters if they are used. See filtering.default: "none" |
filter in: query | string Optional filter criteria. See filtering. This collection may be filtered by the following properties and functions: • Property checkNumber using functions in , le , ge • Property state using functions eq , contains • Property holdState using functions eq , contains • Property disputeState using functions eq , contains • Property type using functions eq , contains • Property description using functions eq , contains • Property network using functions eq • Property amount.value using functions eq , contains • Property balance.current using functions eq , contains • Property postedOn using functions eq , gt , ge , lt , le • Property effectiveAt using functions eq , gt , ge , lt , le . |
sortBy in: query | string Optional sort criteria. See sort criteria format, such as ?sortBy=field1,-field2 .This collection may be sorted by the following properties: • effectiveAt • postedOn • reversedOn • checkNumber • description • type . |
start in: query | integer(int64) The zero-based index of the first transaction in this page. The default, 0, represents the first page of the collection. format: int64 default: 0 |
limit in: query | integer(int32) The maximum number of transaction representations to return in this page. format: int32 default: 100 |
q in: query | string Optional search string. See searching. |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transactions/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions?start=10&limit=10"
},
"first": {
"href": "/transactions/transactions?start=0&limit=10"
},
"next": {
"href": "/transactions/transactions?start=20&limit=10"
},
"collection": {
"href": "/transactions/transactions"
}
},
"start": 10,
"limit": 10,
"count": 67,
"name": "transactions",
"_embedded": {
"items": [
{
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_profile": "https://production.api.apiture.com/schemas/transactions/transaction/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions/0399abed-fd3d-4830-a88b-30f38b8a365c"
},
"apiture:account": {
"href": "/transactions/accounts/86de587e-a5a7-11e8-98d0-529269fb1459"
},
"apiture:organization": {
"href": "/transactions/organizations/86de587e-a5a7-11e8-98d0-529269fb1459"
}
},
"amount": {
"value": "35.00",
"currency": "USD"
},
"state": "pending",
"type": "debit",
"providerSummary": "gas station"
},
{
"_id": "d62c0701-0d74-4836-83f9-ebf3709442ea",
"_profile": "https://production.api.apiture.com/schemas/transactions/transaction/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions/d62c0701-0d74-4836-83f9-ebf3709442ea"
},
"apiture:account": {
"href": "/transactions/accounts/86de587e-a5a7-11e8-98d0-529269fb1459"
},
"apiture:organization": {
"href": "/transactions/organizations/86de587e-a5a7-11e8-98d0-529269fb1459"
}
},
"amount": {
"value": "1000.00",
"currency": "USD"
},
"state": "pending",
"type": "debit",
"providerSummary": "donation"
}
]
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: transactions |
Status | Description |
---|---|
400 | Bad Request |
Bad Request. The request body or one or more of the query parameters was not well formed. The _error field in the response contains details about the request error. | |
Schema: errorResponse |
Status | Description |
---|---|
422 | Unprocessable Entity |
Unprocessable Entity. One or more of the query parameters was well formed but otherwise invalid. The _error field in the response contains details about the request error. | |
Schema: errorResponse |
getHistory
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/history \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/transactions/history HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/history',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/history',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/history',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api.devbank.apiture.com/transactions/history', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/history");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/history", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Return a collection of past transactions
GET https://api.devbank.apiture.com/transactions/history
Return a paginated sortable filterable searchable collection of transactions. The links in the response include pagination links.
This operation also supports downloading pages of transaction data as comma-separated values (CSV) using Accept: text/csv
.
Transactions in the history are immutable and not deletable. The default sort order is by descending effectiveAt
.
The default returns a page transactions for all accounts that the user has access to.
Parameters
Parameter | Description |
---|---|
account in: query | string A list of server-supplied values which identify the account instances, i.e. ?account=acctId1|acctId2|acctId3 . |
checkNumber in: query | string Specify one or more check numbers or check number ranges. This is a comma-separated or | separated list of number or ranges. Ranges have the form number-number . For example, the queries ?checkNumber=201,202,210-213 ?checkNumber=201|202|210-213 are are equivalent to ?filter=in(checkNumber,201,202,210,211,212,213) . |
holdState in: query | string Subset the transactions collection to those whose holdState matches this value. Use | to separate multiple values. For example, ?holdState=active matches only items whose holdState is active ; ?holdState=active|expired matches items whose holdState is active or expired . This is combined with an implicit and with other filters if they are used. See filtering.default: "none" |
disputeState in: query | string Subset the transactions collection to those whose disputeState matches this value. Use | to separate multiple values. For example, ?disputeState=resolved matches only items whose disputeState is resolved ; ?disputeState=resolved|inProgress matches items whose disputeState is resolved or inProgress . This is combined with an implicit and with other filters if they are used. See filtering.default: "none" |
filter in: query | string Optional filter criteria. See filtering. This collection may be filtered by the following properties and functions: • Property checkNumber using functions in , le , ge • Property state using functions eq , contains • Property holdState using functions eq , contains • Property disputeState using functions eq , contains • Property type using functions eq , contains • Property description using functions eq , contains • Property network using functions eq • Property amount.value using functions eq , contains • Property balance.current using functions eq , contains • Property postedOn using functions eq , gt , ge , lt , le • Property effectiveAt using functions eq , gt , ge , lt , le . |
sortBy in: query | string Optional sort criteria. See sort criteria format, such as ?sortBy=field1,-field2 .This collection may be sorted by the following properties: • effectiveAt • postedOn • reversedOn • checkNumber • description • type . |
start in: query | integer(int64) The zero-based index of the first transaction in this page. The default, 0, represents the first page of the collection. format: int64 default: 0 |
limit in: query | integer(int32) The maximum number of transaction representations to return in this page. format: int32 maximum: 5000 default: 100 |
q in: query | string Optional search string. See searching. |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transactions/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions?start=10&limit=10"
},
"first": {
"href": "/transactions/transactions?start=0&limit=10"
},
"next": {
"href": "/transactions/transactions?start=20&limit=10"
},
"collection": {
"href": "/transactions/transactions"
}
},
"start": 10,
"limit": 10,
"count": 67,
"name": "transactions",
"_embedded": {
"items": [
{
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_profile": "https://production.api.apiture.com/schemas/transactions/transaction/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions/0399abed-fd3d-4830-a88b-30f38b8a365c"
},
"apiture:account": {
"href": "/transactions/accounts/86de587e-a5a7-11e8-98d0-529269fb1459"
},
"apiture:organization": {
"href": "/transactions/organizations/86de587e-a5a7-11e8-98d0-529269fb1459"
}
},
"amount": {
"value": "35.00",
"currency": "USD"
},
"state": "pending",
"type": "debit",
"providerSummary": "gas station"
},
{
"_id": "d62c0701-0d74-4836-83f9-ebf3709442ea",
"_profile": "https://production.api.apiture.com/schemas/transactions/transaction/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions/d62c0701-0d74-4836-83f9-ebf3709442ea"
},
"apiture:account": {
"href": "/transactions/accounts/86de587e-a5a7-11e8-98d0-529269fb1459"
},
"apiture:organization": {
"href": "/transactions/organizations/86de587e-a5a7-11e8-98d0-529269fb1459"
}
},
"amount": {
"value": "1000.00",
"currency": "USD"
},
"state": "pending",
"type": "debit",
"providerSummary": "donation"
}
]
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK. The text/csv response includes a header row for the data with the following columns in order:
The account number columns contain only the last four digits of the account numbers. Dates are in | |
Schema: string |
Status | Description |
---|---|
400 | Bad Request |
Bad Request. The request body or one or more of the query parameters was not well formed. The _error field in the response contains details about the request error. | |
Schema: errorResponse |
Status | Description |
---|---|
422 | Unprocessable Entity |
Unprocessable Entity. One or more of the query parameters was well formed but otherwise invalid. The This error response may have one of the following | |
Schema: errorResponse |
API
The Transactions API
getLabels
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/labels \
-H 'Accept: application/hal+json' \
-H 'Accept-Language: string' \
-H 'API-Key: API_KEY'
GET https://api.devbank.apiture.com/transactions/labels HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
Accept-Language: string
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'Accept-Language':'string',
'API-Key':'API_KEY'
};
fetch('https://api.devbank.apiture.com/transactions/labels',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'Accept-Language':'string',
'API-Key':'API_KEY'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/labels',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'Accept-Language' => 'string',
'API-Key' => 'API_KEY'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/labels',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'Accept-Language': 'string',
'API-Key': 'API_KEY'
}
r = requests.get('https://api.devbank.apiture.com/transactions/labels', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/labels");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"Accept-Language": []string{"string"},
"API-Key": []string{"API_KEY"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/labels", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Localized Labels
GET https://api.devbank.apiture.com/transactions/labels
Return a JSON object which defines labels for enumeration types and choice groups defined by the schemas defined in this API. The labels in the response may not all match the requested language; some may be in the default language (en-us
).
Parameters
Parameter | Description |
---|---|
Accept-Language in: header | string The weighted language tags which indicate the user's preferred natural language for the localized labels in the response, as per RFC 7231. |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/common/labelGroups/v1.1.3/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"groups": {
"firstGroup": {
"unknown": {
"label": "Unknown",
"code": "0",
"hidden": true
},
"key1": {
"label": "Label for Key 1",
"code": "1",
"variants": {
"es": {
"label": "(Spanish label for Key 1)"
},
"fr": {
"label": "(French label for Key 1)"
}
}
},
"key2": {
"label": "Label for Key 2",
"code": "2",
"variants": {
"es": {
"label": "(Spanish label for Key 2)"
},
"fr": {
"label": "(French label for Key 2)"
}
}
},
"key3": {
"label": "Label for Key 3",
"code": "3",
"variants": {
"es": {
"label": "(Spanish label for Key 3)"
},
"fr": {
"label": "(French label for Key 3)"
}
}
},
"other": {
"label": "Other",
"variants": {
"es": {
"label": "(Spanish label for Other)"
},
"fr": {
"label": "(French label for Other)"
}
},
"code": "254"
}
},
"secondGroup": {
"unknown": {
"label": "Unknown",
"code": "?",
"hidden": true
},
"optionA": {
"label": "Option A",
"code": "A"
},
"optionB": {
"label": "Option B",
"code": "B"
},
"optionC": {
"label": "Option C",
"code": "C"
},
"other": {
"label": "Other",
"code": "_"
}
}
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: labelGroups |
getApi
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/ \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY'
GET https://api.devbank.apiture.com/transactions/ HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY'
};
fetch('https://api.devbank.apiture.com/transactions/',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'API-Key' => 'API_KEY'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'API-Key': 'API_KEY'
}
r = requests.get('https://api.devbank.apiture.com/transactions/', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"API-Key": []string{"API_KEY"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Top-level resources and operations in this API
GET https://api.devbank.apiture.com/transactions/
Return links to the top-level resources and operations in this API.
Example responses
OK.
{
"id": "accounts",
"name": "User Bank Accounts",
"apiVersion": "0.2.0",
"_profile": "https://production.api.apiture.com/schemas/common/root/v2.1.1/profile.json",
"_links": {
"apiture:transactions": {
"href": "/transactions/transactions"
}
}
}
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/common/root/v2.1.1/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"id": "apiName",
"name": "API name",
"apiVersion": "1.0.0"
}
Responses
getApiDoc
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/apiDoc \
-H 'Accept: application/json' \
-H 'API-Key: API_KEY'
GET https://api.devbank.apiture.com/transactions/apiDoc HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/json
const fetch = require('node-fetch');
const headers = {
'Accept':'application/json',
'API-Key':'API_KEY'
};
fetch('https://api.devbank.apiture.com/transactions/apiDoc',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/json',
'API-Key':'API_KEY'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/apiDoc',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/json',
'API-Key' => 'API_KEY'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/apiDoc',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/json',
'API-Key': 'API_KEY'
}
r = requests.get('https://api.devbank.apiture.com/transactions/apiDoc', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/apiDoc");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/json"},
"API-Key": []string{"API_KEY"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/apiDoc", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Return API definition document
GET https://api.devbank.apiture.com/transactions/apiDoc
Return the OpenAPI document that describes this API.
Example responses
200 Response
{}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: Inline |
Response Schema
Checks Images
Check Images Attached to a Transaction
getCheckImage
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side} \
-H 'Accept: application/hal+json' \
-H 'If-None-Match: string' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side} HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
If-None-Match: string
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'If-None-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'If-None-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'If-None-Match' => 'string',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'If-None-Match': 'string',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"If-None-Match": []string{"string"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Image metadata for one side of check
GET https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}
Return the image metadata for one side of a check associated with a transaction. Use the apiture:content
link in the response to GET
the raw image content (typically JPEG). Valid check side values:
front
back
Parameters
Parameter | Description |
---|---|
checkId in: path | string (required) The unique identifier of a check image. This is an opaque string. |
side in: path | string (required) The side of the check. Allowed values are back and front . |
If-None-Match in: header | string The entity tag that was returned in the ETag response. If the resource's current entity tag matches, the GET returns 304 (Not Modified) and no response body, else the resource representation is returned. |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transactionCheckImage/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/checkDeposits/checkDeposits/f6c321e6-419a/checks/999a1163-47fd/images/front"
},
"apiture:content": {
"href": "https://production.api.apiture.com/transactions/checkImages/f6c321e6-c628-419a/front/content"
},
"apiture:transaction": {
"href": "https://production.api.apiture.com/transactions/transactions/bedfecb5-60a9-4f44-a53a-b6d86608434a'",
"operationId": "getTransaction"
}
},
"_id": "f6c321e6-c628-419a",
"name": "f6c321e6-c628-419a-front.jpeg",
"contentType": "image/jpeg",
"description": "Front check image captured and uploaded from an iPhoneX.",
"sizeBytes": 112800,
"createdAt": "2020-01-04T07:00:49.375Z"
}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: transactionCheckImage | |
Header | ETag string |
The ETag response header specifies an entity tag which must be provided in an If-Match request header for PUT or PATCH operations which update this check deposit resource. |
Status | Description |
---|---|
404 | Not Found |
Not Found. No such check image metadata or content. The This error response may have one of the following | |
Schema: errorResponse |
getCheckImageContent
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}/content \
-H 'Accept: */*' \
-H 'If-None-Match: string' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}/content HTTP/1.1
Host: api.devbank.apiture.com
Accept: */*
If-None-Match: string
const fetch = require('node-fetch');
const headers = {
'Accept':'*/*',
'If-None-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}/content',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'*/*',
'If-None-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}/content',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => '*/*',
'If-None-Match' => 'string',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}/content',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': '*/*',
'If-None-Match': 'string',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}/content', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}/content");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"*/*"},
"If-None-Match": []string{"string"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}/content", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Raw image content for one side of a check
GET https://api.devbank.apiture.com/transactions/checkImages/{checkId}/{side}/content
Return the raw image content for one side of a check associated with a transaction, as a stream of bytes. This image is described by the corresponding check image metadata.
This operation may return a 302 status code to redirect the caller to the actual URL where the file content is available.
Parameters
Parameter | Description |
---|---|
checkId in: path | string (required) The unique identifier of a check image. This is an opaque string. |
side in: path | string (required) The side of the check. Allowed values are back and front . |
If-None-Match in: header | string The entity tag that was returned in the ETag response. If the resource's current entity tag matches, the GET returns 304 (Not Modified) and no response body, else the resource representation is returned. |
Example responses
200 Response
404 Response
{
"_profile": "https://production.api.apiture.com/schemas/common/errorResponse/v2.1.1/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"_error": {
"_id": "2eae46e1-575c-4d69-8a8f-0a7b0115a4b3",
"message": "Description of the error will appear here.",
"statusCode": 422,
"type": "specificErrorType",
"attributes": {
"value": "Optional attribute describing the error"
},
"remediation": "Optional instructions to remediate the error may appear here.",
"occurredAt": "2018-01-25T05:50:52.375Z",
"_links": {
"describedby": {
"href": "https://production.api.apiture.com/errors/specificErrorType"
}
},
"_embedded": {
"errors": []
}
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: string | |
Header | Content-Type string |
The media type of the file content. The default image media type is image/jpeg , but this may change if additional file types are supported in the future. |
Status | Description |
---|---|
302 | Found |
Found. The URL where the file's content is located. | |
Header | Location string |
The URL where the image content is located. |
Status | Description |
---|---|
404 | Not Found |
Not Found. No such check image metadata or content. The This error response may have one of the following | |
Schema: errorResponse |
Configuration
Transactions Service Configuration
getConfigurationGroups
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/configurations/groups \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/transactions/configurations/groups HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/configurations/groups',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/configurations/groups',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/configurations/groups',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api.devbank.apiture.com/transactions/configurations/groups', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/configurations/groups");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/configurations/groups", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Return a collection of configuration groups
GET https://api.devbank.apiture.com/transactions/configurations/groups
Return a paginated sortable filterable searchable collection of configuration groups. The links in the response include pagination links.
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/configurations/configurationGroups/v2.1.1/profile.json",
"_links": {
"self": {
"href": "/configurations/configurations/groups?start=10&limit=10"
},
"first": {
"href": "/configurations/configurations/groups?start=0&limit=10"
},
"next": {
"href": "/configurations/configurations/groups?start=20&limit=10"
},
"collection": {
"href": "/configurations/configurations/groups"
}
},
"start": 10,
"limit": 10,
"count": 67,
"name": "configurationGroups",
"_embedded": {
"items": [
{
"_profile": "https://production.api.apiture.com/schemas/configurations/configurationGroup/v2.1.1/profile.json",
"_links": {
"self": {
"href": "/configurations/groups/basic"
}
},
"name": "basic",
"label": "Basic Settings",
"description": "The basic settings for the Transfers API"
},
{
"_profile": "https://production.api.apiture.com/schemas/configurations/configurationGroup/v2.1.1/profile.json",
"_links": {
"self": {
"href": "/configurations/groups/calendar"
}
},
"name": "calendar",
"label": "Calendar",
"description": "A calendar that specifies which dates are valid for performing transfers (e.g., weekdays excluding federal holidays)"
}
]
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: configurationGroups |
Status | Description |
---|---|
400 | Bad Request |
Bad Request. The request body or one or more of the query parameters was not well formed. The _error field in the response contains details about the request error. | |
Schema: errorResponse |
Status | Description |
---|---|
422 | Unprocessable Entity |
Unprocessable Entity. One or more of the query parameters was well formed but otherwise invalid. The _error field in the response contains details about the request error. | |
Schema: errorResponse |
getConfigurationGroup
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/configurations/groups/{groupName} \
-H 'Accept: application/hal+json' \
-H 'If-None-Match: string' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/transactions/configurations/groups/{groupName} HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
If-None-Match: string
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'If-None-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'If-None-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'If-None-Match' => 'string',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'If-None-Match': 'string',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"If-None-Match": []string{"string"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Fetch a representation of this configuration group
GET https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}
Return a HAL representation of this configuration group resource.
Parameters
Parameter | Description |
---|---|
groupName in: path | string (required) The unique name of this configuration group. |
If-None-Match in: header | string The entity tag that was returned in the ETag response. If the resource's current entity tag matches, the GET returns 304 (Not Modified) and no response body, else the resource representation is returned. |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/configurations/configurationGroup/v2.1.1/profile.json",
"_links": {
"self": {
"href": "/configurations/groups/basic"
}
},
"name": "basic",
"label": "Basic Settings",
"description": "The basic settings for the Transfers API",
"schema": {
"type": "object",
"properties": {
"dailyLimit": {
"type": "number",
"description": "The daily limit for the number of transfers"
},
"cutoffTime": {
"type": "string",
"format": "time",
"description": "The cutoff time for scheduling transfers for the current day"
}
}
},
"values": {
"dailyLimit": 5,
"cutoffTime": 63000
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: configurationGroup | |
Header | ETag string |
The ETag response header specifies an entity tag which may be provided in an If-None-Match request header for GET operations for this configuration group resource. |
Status | Description |
---|---|
304 | Not Modified |
Not Modified. The resource has not been modified since it was last fetched. |
Status | Description |
---|---|
404 | Not Found |
Not Found. There is no such configuration group resource at the specified {groupName} The _error field in the response will contain details about the request error. | |
Schema: errorResponse |
getConfigurationGroupSchema
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/schema \
-H 'Accept: application/hal+json' \
-H 'If-None-Match: string' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/schema HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
If-None-Match: string
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'If-None-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/schema',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'If-None-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/schema',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'If-None-Match' => 'string',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/schema',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'If-None-Match': 'string',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/schema', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/schema");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"If-None-Match": []string{"string"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/schema", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Fetch the schema for this configuration group
GET https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/schema
Return a HAL representation of this configuration group schema resource.
Parameters
Parameter | Description |
---|---|
groupName in: path | string (required) The unique name of this configuration group. |
If-None-Match in: header | string The entity tag that was returned in the ETag response. If the resource's current entity tag matches, the GET returns 304 (Not Modified) and no response body, else the resource representation is returned. |
Example responses
200 Response
{
"type": "object",
"properties": {
"dailyLimit": {
"type": "number",
"description": "The daily limit for the number of transfers"
},
"cutoffTime": {
"type": "string",
"format": "time",
"description": "The cutoff time for scheduling transfers for the current day"
}
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: configurationSchema | |
Header | ETag string |
The ETag response header specifies an entity tag which may be provided in an If-Match request header for PUT |
Status | Description |
---|---|
304 | Not Modified |
Not Modified. The resource has not been modified since it was last fetched. |
Status | Description |
---|---|
404 | Not Found |
Not Found. There is no such configuration group resource at the specified {groupName} The _error field in the response will contain details about the request error. | |
Schema: errorResponse |
getConfigurationGroupValues
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values \
-H 'Accept: application/hal+json' \
-H 'If-None-Match: string' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
If-None-Match: string
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'If-None-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'If-None-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'If-None-Match' => 'string',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'If-None-Match': 'string',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"If-None-Match": []string{"string"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Fetch the values for the specified configuration group
GET https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values
Return a representation of this configuration group values resource.
Parameters
Parameter | Description |
---|---|
groupName in: path | string (required) The unique name of this configuration group. |
If-None-Match in: header | string The entity tag that was returned in the ETag response. If the resource's current entity tag matches, the GET returns 304 (Not Modified) and no response body, else the resource representation is returned. |
Example responses
200 Response
{
"dailyLimit": 5,
"cutoffTime": 63000
}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: configurationValues | |
Header | ETag string |
The ETag response header specifies an entity tag which may be provided in an If-Match request header for PUT |
Status | Description |
---|---|
304 | Not Modified |
Not Modified. The resource has not been modified since it was last fetched. |
Status | Description |
---|---|
404 | Not Found |
Not Found. There is no such configuration group resource at the specified {groupName} The _error field in the response will contain details about the request error. | |
Schema: errorResponse |
updateConfigurationGroupValues
Code samples
# You can also use wget
curl -X PUT https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values \
-H 'Content-Type: application/hal+json' \
-H 'Accept: application/hal+json' \
-H 'If-Match: string' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
PUT https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values HTTP/1.1
Host: api.devbank.apiture.com
Content-Type: application/hal+json
Accept: application/hal+json
If-Match: string
const fetch = require('node-fetch');
const inputBody = '{
"dailyLimit": 5,
"cutoffTime": 63000
}';
const headers = {
'Content-Type':'application/hal+json',
'Accept':'application/hal+json',
'If-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values',
{
method: 'PUT',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Content-Type':'application/hal+json',
'Accept':'application/hal+json',
'If-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values',
method: 'put',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Content-Type' => 'application/hal+json',
'Accept' => 'application/hal+json',
'If-Match' => 'string',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.put 'https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Content-Type': 'application/hal+json',
'Accept': 'application/hal+json',
'If-Match': 'string',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.put('https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("PUT");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Content-Type": []string{"application/hal+json"},
"Accept": []string{"application/hal+json"},
"If-Match": []string{"string"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("PUT", "https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Update the values for the specified configuration group
PUT https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values
Perform a complete replacement of this set of values.
Body parameter
{
"dailyLimit": 5,
"cutoffTime": 63000
}
Parameters
Parameter | Description |
---|---|
groupName in: path | string (required) The unique name of this configuration group. |
If-Match in: header | string The entity tag that was returned in the ETag response. This must match the current entity tag of the resource. |
body | configurationValues (required) |
Example responses
200 Response
{
"type": "object",
"properties": {
"dailyLimit": {
"type": "number",
"description": "The daily limit for the number of transfers"
},
"cutoffTime": {
"type": "string",
"format": "time",
"description": "The cutoff time for scheduling transfers for the current day"
}
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: configurationSchema | |
Header | ETag string |
The ETag response header specifies an entity tag which may be provided in an If-Match request header for PUT |
Status | Description |
---|---|
400 | Bad Request |
Bad Request. The request body or one or more of the query parameters was not well formed. The _error field in the response contains details about the request error. | |
Schema: errorResponse |
Status | Description |
---|---|
403 | Forbidden |
Access denied. Only user allowed to update configurations is an admin. | |
Schema: errorResponse |
Status | Description |
---|---|
404 | Not Found |
Not Found. There is no such configuration group resource at the specified {groupName} The _error field in the response will contain details about the request error. | |
Schema: errorResponse |
Status | Description |
---|---|
412 | Precondition Failed |
Precondition Failed. The supplied This error response may have one of the following | |
Schema: errorResponse |
getConfigurationGroupValue
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName} \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName} HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}',
{
method: 'GET',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}',
method: 'get',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.get 'https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.get('https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("GET");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Accept": []string{"application/hal+json"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("GET", "https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Fetch a single value associated with the specified configuration group
GET https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}
Fetch a single value associated with this configuration group. This provides convenient access to individual values of the configuration group. The response is always a JSON value which can be parsed with a strict JSON parser. The response may be
- a primitive number, boolean, or quoted JSON string.
- a JSON array.
- a JSON object.
null
. Examples:"a string configuration value"
120
true
null
{ "borderWidth": 8, "foregroundColor": "blue" }
To update a specific value, usePUT /users/configurations/groups/{groupName}/values/{valueName}
(operationupdateConfigurationGroupValue
).
Parameters
Parameter | Description |
---|---|
groupName in: path | string (required) The unique name of this configuration group. |
valueName in: path | string (required) The unique name of a value in a configuration group. This is the name of the value in the schema . A {valueName} must be a simple identifier following the pattern letter [letter | digit | '-' | '_']* . |
Example responses
200 Response
"string"
Responses
Status | Description |
---|---|
200 | OK |
OK. The value of the named configuration value as a JSON string, number, boolean, array, or object. | |
Schema: string | |
Header | ETag string |
The ETag response header specifies an entity tag which may be provided in an If-Match request header for PUT or PATCH operations which update this configuration group resource. |
Status | Description |
---|---|
404 | Not Found |
Not Found. There is either no such configuration group resource at the specified {groupName} or no such value at the specified {valueName} . The _error field in the response will contain details about the request error. | |
Schema: errorResponse |
updateConfigurationGroupValue
Code samples
# You can also use wget
curl -X PUT https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName} \
-H 'Content-Type: application/hal+json' \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
PUT https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName} HTTP/1.1
Host: api.devbank.apiture.com
Content-Type: application/hal+json
Accept: application/hal+json
const fetch = require('node-fetch');
const inputBody = 'string';
const headers = {
'Content-Type':'application/hal+json',
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}',
{
method: 'PUT',
body: inputBody,
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Content-Type':'application/hal+json',
'Accept':'application/hal+json',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}',
method: 'put',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Content-Type' => 'application/hal+json',
'Accept' => 'application/hal+json',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.put 'https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Content-Type': 'application/hal+json',
'Accept': 'application/hal+json',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.put('https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("PUT");
int responseCode = con.getResponseCode();
BufferedReader in = new BufferedReader(
new InputStreamReader(con.getInputStream()));
String inputLine;
StringBuffer response = new StringBuffer();
while ((inputLine = in.readLine()) != null) {
response.append(inputLine);
}
in.close();
System.out.println(response.toString());
package main
import (
"bytes"
"net/http"
)
func main() {
headers := map[string][]string{
"Content-Type": []string{"application/hal+json"},
"Accept": []string{"application/hal+json"},
"API-Key": []string{"API_KEY"},
"Authorization": []string{"Bearer {access-token}"},
}
data := bytes.NewBuffer([]byte{jsonReq})
req, err := http.NewRequest("PUT", "https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Update a single value associated with the specified configuration group
PUT https://api.devbank.apiture.com/transactions/configurations/groups/{groupName}/values/{valueName}
Update a single value associated with this configuration group. This provides convenient access to individual values of the configuration group as defined in the configuration group's schema
. The request body must conform to the configuration group's schema for the named {valueName}
. This operation is idempotent. The request body must be a JSON value which can be parsed with a strict JSON parser. The response may be
- a primitive number, boolean, or quoted JSON string.
- a JSON array.
- a JSON object.
null
. Examples:"a string configuration value"
120
true
null
{ "borderWidth": 8, "foregroundColor": "blue" }
To fetch specific value, useGET /users/configurations/groups/{groupName}/values/{valueName}
(operationgetConfigurationGroupValue
).
Body parameter
"string"
Parameters
Parameter | Description |
---|---|
groupName in: path | string (required) The unique name of this configuration group. |
valueName in: path | string (required) The unique name of a value in a configuration group. This is the name of the value in the schema . A {valueName} must be a simple identifier following the pattern letter [letter | digit | '-' | '_']* . |
body | string (required) The request body must a valid JSON value and should be parsable with a JSON parser. The result may be a string, number, boolean, array, or object. |
Example responses
200 Response
"string"
Responses
Status | Description |
---|---|
200 | OK |
OK. | |
Schema: string | |
Header | ETag string |
The ETag response header specifies an entity tag which may be provided in an If-Match request header for PUT or PATCH operations which update this configuration group resource. |
Status | Description |
---|---|
403 | Forbidden |
Access denied. Only user allowed to update configurations is an admin. | |
Schema: errorResponse |
Schemas
abstractRequest
{
"_profile": "https://production.api.apiture.com/schemas/common/abstractRequest/v2.0.0/profile.json",
"_links": {}
}
Abstract Request (v2.0.0)
An abstract schema used to define other request-only schemas. This is a HAL resource representation, minus the _error
defined in abstractResource
.
This schema was resolved from common/abstractRequest
.
Properties
Name | Description |
---|---|
Abstract Request (v2.0.0) | An abstract schema used to define other request-only schemas. This is a HAL resource representation, minus the _error defined in abstractResource . This schema was resolved from |
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
_embedded | An optional map of nested resources, mapping each nested resource name to a nested resource representation. |
_profile | The URI of a resource profile which describes the representation. read-only format: uri |
abstractResource
{
"_profile": "https://production.api.apiture.com/schemas/common/abstractResource/v2.0.0/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
}
}
Abstract Resource (v2.0.0)
An abstract schema used to define other schemas for request and response bodies. This is a HAL resource representation. This model contains hypermedia _links
, and either optional domain object data with _profile
and optional _embedded
objects, or an _error
object. In responses, if the operation was successful, this object will not include the _error
, but if the operation was a 4xx or 5xx error, this object will not include _embedded
or any data fields, only _error
and optionally _links
.
This schema was resolved from common/abstractResource
.
Properties
Name | Description |
---|---|
Abstract Resource (v2.0.0) | An abstract schema used to define other schemas for request and response bodies. This is a HAL resource representation. This model contains hypermedia _links , and either optional domain object data with _profile and optional _embedded objects, or an _error object. In responses, if the operation was successful, this object will not include the _error , but if the operation was a 4xx or 5xx error, this object will not include _embedded or any data fields, only _error and optionally _links . This schema was resolved from |
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
_embedded | An optional map of nested resources, mapping each nested resource name to a nested resource representation. |
_profile | The URI of a resource profile which describes the representation. read-only format: uri |
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only |
ach
{
"traceId": "1234567890",
"payeeName": "Don't Bug Me Pest Control",
"originatingInstitution": "3rd Party Bank"
}
Automated Clearing House Transfer (v1.2.1)
Representation of an automated clearing house or wire transfer.
Properties
Name | Description |
---|---|
Automated Clearing House Transfer (v1.2.1) | Representation of an automated clearing house or wire transfer. |
payeeName | The payee name, if known, for debit transactions.maxLength: 50 |
payeeIfxAccountType | The payee's IFX account type for debit transactions. This property is omitted if the account type is unknown. This is one of the IFX AcctType values.enum values: CCA , CDA , CLA , CMA , DDA , EQU , GLA , ILA , INV , IRA , IRL , LOC , MLA , MMA , PBA , PPA , RWD , SDA |
payerName | The name of the payer (payment originator), if known, for credit transactions.maxLength: 50 |
payerIfxAccountType | The payer's IFX account type for credit transactions. This property is omitted if the account type is unknown. This is one of the IFX AcctType values.enum values: CCA , CDA , CLA , CMA , DDA , EQU , GLA , ILA , INV , IRA , IRL , LOC , MLA , MMA , PBA , PPA , RWD , SDA |
originatingInstitution | The name of the financial institution where credit ACH transaction originated.maxLength: 80 |
traceId | ACH Trace ID (threadId). |
address
{
"type": "home",
"addressLine1": "555 N Front Street",
"addressLine2": "Suite 5555",
"city": "Wilmington",
"regionCode": "NC",
"postalCode": "28401-5405",
"countryCode": "US"
}
Address (v1.0.0)
A postal address.
Properties
Name | Description |
---|---|
Address (v1.0.0) | A postal address. |
addressLine1 | The first street address line of the address, normally a house number and street name. |
addressLine2 | The optional second street address line of the address. |
city | The name of the city or municipality. |
regionCode | The mailing address region code, such as state in the US, or a province in Canada. |
postalCode | The mailing address postal code, such as a US Zip or Zip+4 code, or a Canadian postal code. |
countryCode | The ISO 3166-1 country code. minLength: 2 maxLength: 2 |
attributeValue
{}
Attribute Value (v2.0.0)
The data associated with this attribute.
This schema was resolved from common/attributeValue
.
Properties
Name | Description |
---|---|
Attribute Value (v2.0.0) | The data associated with this attribute. This schema was resolved from |
attributes
{
"property1": {},
"property2": {}
}
Attributes (v2.0.0)
An optional map of name/value pairs which contains additional dynamic data about the resource.
This schema was resolved from common/attributes
.
Properties
Name | Description |
---|---|
Attributes (v2.0.0) | An optional map of name/value pairs which contains additional dynamic data about the resource. This schema was resolved from |
Attribute Value (v2.0.0) | The data associated with this attribute. This schema was resolved from |
balance
{
"current": "3450.30",
"available": "3450.30",
"currency": "USD"
}
Account Balance (v1.0.0)
The balance of the account. This is derived data and not mutable through the API. Balances may be negative, indicating a deficit or loan balance.
Properties
Name | Description |
---|---|
Account Balance (v1.0.0) | The balance of the account. This is derived data and not mutable through the API. Balances may be negative, indicating a deficit or loan balance. |
current | The string representation of the current account balance. This is an exact decimal representation of the numeric balance value. The current balance does not include pending transactions. read-only |
available | The string representation of the exact decimal available balance. For deposit accounts, this reflects the amount that may be used for withdrawals or transfers. This field does not apply to debit accounts such as loans. read-only |
currency | The ISO 4217 currency code for this balance. read-only |
checkImage
{
"_profile": "https://production.api.apiture.com/schemas/checkDeposits/checkImage/v1.1.0/profile.json",
"_links": {
"self": {
"href": "/checkDeposits/checkDeposits/f6c321e6-419a/checks/999a1163-47fd/images/front"
},
"apiture:content": {
"href": "/checkDeposits/checkDeposits/f6c321e6-419a/checks/999a1163-47fd/images/front/content"
}
},
"_id": "7dc00a42-76f9-4bbb-bda3-bd6ed203c01b",
"name": "frontImage.jpeg",
"contentType": "image/jpeg",
"description": "Front check image captured and uploaded from an iPhoneX.",
"sizeBytes": 112800,
"createdAt": "2019-01-04T07:00:49.375Z"
}
Check Image (v1.1.0)
Representation of a check image file. The image may contain an apiture:uploadUrl
link within the item's _links
. The client should next PUT
the file content to the upload URLs. The file must be an image with JPEG format. If file content has been uploaded, the image may have an apiture:content
link to access the direct URI of the file's content.
This schema was resolved from checkDeposits/checkImage
.
Properties
Name | Description |
---|---|
Check Image (v1.1.0) | Representation of a check image file. The image may contain an apiture:uploadUrl link within the item's _links . The client should next PUT the file content to the upload URLs. The file must be an image with JPEG format. If file content has been uploaded, the image may have an apiture:content link to access the direct URI of the file's content. This schema was resolved from |
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
_embedded | An optional map of nested resources, mapping each nested resource name to a nested resource representation. |
_profile | The URI of a resource profile which describes the representation. read-only format: uri |
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only |
name | The file name, for identification purposes. File names may include file extensions such as .jpeg for JPEG images, although the system does not validate or ensure that extensions match the file content type. This is limited to 64 characters and may not contain certain special characters such as / or \. If omitted, the system will assign a name.maxLength: 64 |
description | A description of this file and its contents. maxLength: 4096 |
contentType | The media type for this file. |
sizeBytes | The file size in bytes. This is a derived property and cannot be modified in updates. read-only |
createdAt | The date-time when the image was created or uploaded. read-only format: date-time |
collection
{
"_profile": "https://production.api.apiture.com/schemas/common/abstractResource/v2.0.0/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
}
}
Collection (v2.1.1)
A collection of resources. This is an abstract model schema which is extended to define specific resource collections.
This schema was resolved from common/collection
.
Properties
Name | Description |
---|---|
Collection (v2.1.1) | A collection of resources. This is an abstract model schema which is extended to define specific resource collections. This schema was resolved from |
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
_embedded | An optional map of nested resources, mapping each nested resource name to a nested resource representation. |
_profile | The URI of a resource profile which describes the representation. read-only format: uri |
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only |
count | The number of items in the collection. This value is optional and may be omitted if the count is not computable efficiently. If a filter is applied to the collection (either implicitly or explicitly), the count, if present, indicates the number of items that satisfy the filter. |
start | The start index of this page of items. |
limit | The maximum number of items per page. |
name | The name of the collection. |
configurationGroup
{
"_profile": "https://production.api.apiture.com/schemas/configurations/configurationGroup/v2.1.1/profile.json",
"_links": {
"self": {
"href": "/configurations/groups/basic"
}
},
"name": "basic",
"label": "Basic Settings",
"description": "The basic settings for the Transfers API",
"schema": {
"type": "object",
"properties": {
"dailyLimit": {
"type": "number",
"description": "The daily limit for the number of transfers"
},
"cutoffTime": {
"type": "string",
"format": "time",
"description": "The cutoff time for scheduling transfers for the current day"
}
}
},
"values": {
"dailyLimit": 5,
"cutoffTime": 63000
}
}
Configuration Group (v2.1.1)
Represents a configuration group.
This schema was resolved from configurations/configurationGroup
.
Properties
Name | Description |
---|---|
Configuration Group (v2.1.1) | Represents a configuration group. This schema was resolved from |
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
_embedded | An optional map of nested resources, mapping each nested resource name to a nested resource representation. |
_profile | The URI of a resource profile which describes the representation. read-only format: uri |
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only |
name | The name of this configuration group, must be unique within the set of all resources of this type. minLength: 1 maxLength: 48 pattern: "[a-zA-Z][-\\w_]*" |
label | The text label for this resource, suitable for presentation to the client. minLength: 1 maxLength: 128 |
description | The full description for this resource, suitable for presentation to the client. minLength: 1 maxLength: 4096 |
schema | The schema which defines the name and types of the variables that are part of this configuration definition. Property names must be simple identifiers which follow the pattern letter [letter | digit | - | _]* . This is implicitly a schema for The This schema was resolved from |
values | The data values associated with this configuration group: the group's variable names and values. These values must conform to this item's schema . Note: the For example, multiple configurations may use the same schema that defines values This schema was resolved from |
configurationGroupSummary
{
"_profile": "https://production.api.apiture.com/schemas/configurations/configurationGroupSummary/v2.1.1/profile.json",
"_links": {
"self": {
"href": "/configurations/groups/basic"
}
},
"name": "basic",
"label": "Basic Settings",
"description": "The basic settings for the Transfers API"
}
Configuration Group Summary (v2.1.1)
A summary of the data contained within a configuration group resource.
This schema was resolved from configurations/configurationGroupSummary
.
Properties
Name | Description |
---|---|
Configuration Group Summary (v2.1.1) | A summary of the data contained within a configuration group resource. This schema was resolved from |
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
_embedded | An optional map of nested resources, mapping each nested resource name to a nested resource representation. |
_profile | The URI of a resource profile which describes the representation. read-only format: uri |
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only |
name | The name of this configuration group, must be unique within the set of all resources of this type. minLength: 1 maxLength: 48 pattern: "[a-zA-Z][-\\w_]*" |
label | The text label for this resource, suitable for presentation to the client. minLength: 1 maxLength: 128 |
description | The full description for this resource, suitable for presentation to the client. minLength: 1 maxLength: 4096 |
configurationGroups
{
"_profile": "https://production.api.apiture.com/schemas/configurations/configurationGroups/v2.1.1/profile.json",
"_links": {
"self": {
"href": "/configurations/configurations/groups?start=10&limit=10"
},
"first": {
"href": "/configurations/configurations/groups?start=0&limit=10"
},
"next": {
"href": "/configurations/configurations/groups?start=20&limit=10"
},
"collection": {
"href": "/configurations/configurations/groups"
}
},
"start": 10,
"limit": 10,
"count": 67,
"name": "configurationGroups",
"_embedded": {
"items": [
{
"_profile": "https://production.api.apiture.com/schemas/configurations/configurationGroup/v2.1.1/profile.json",
"_links": {
"self": {
"href": "/configurations/groups/basic"
}
},
"name": "basic",
"label": "Basic Settings",
"description": "The basic settings for the Transfers API"
},
{
"_profile": "https://production.api.apiture.com/schemas/configurations/configurationGroup/v2.1.1/profile.json",
"_links": {
"self": {
"href": "/configurations/groups/calendar"
}
},
"name": "calendar",
"label": "Calendar",
"description": "A calendar that specifies which dates are valid for performing transfers (e.g., weekdays excluding federal holidays)"
}
]
}
}
Configuration Group Collection (v2.1.1)
Collection of configuration groups. The items in the collection are ordered in the _embedded
object with name items
. The top-level _links
object may contain pagination links (self
, next
, prev
, first
, last
, collection
).
This schema was resolved from configurations/configurationGroups
.
Properties
Name | Description |
---|---|
Configuration Group Collection (v2.1.1) | Collection of configuration groups. The items in the collection are ordered in the _embedded object with name items . The top-level _links object may contain pagination links (self , next , prev , first , last , collection ). This schema was resolved from |
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
_embedded | Embedded objects. |
_profile | The URI of a resource profile which describes the representation. read-only format: uri |
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only |
count | The number of items in the collection. This value is optional and may be omitted if the count is not computable efficiently. If a filter is applied to the collection (either implicitly or explicitly), the count, if present, indicates the number of items that satisfy the filter. |
start | The start index of this page of items. |
limit | The maximum number of items per page. |
name | The name of the collection. |
configurationGroupsEmbedded
{
"items": [
{
"_profile": "https://production.api.apiture.com/schemas/configurations/configurationGroupSummary/v2.1.1/profile.json",
"_links": {
"self": {
"href": "/configurations/groups/basic"
}
},
"name": "basic",
"label": "Basic Settings",
"description": "The basic settings for the Transfers API"
}
]
}
Configuration Groups Embedded Objects (v1.1.1)
Objects embedded in the configurationGroups
collection.
This schema was resolved from configurations/configurationGroupsEmbedded
.
Properties
Name | Description |
---|---|
Configuration Groups Embedded Objects (v1.1.1) | Objects embedded in the configurationGroups collection. This schema was resolved from |
items | array: An array containing a page of configuration group items. items: object |
configurationSchema
{
"type": "object",
"properties": {
"dailyLimit": {
"type": "number",
"description": "The daily limit for the number of transfers"
},
"cutoffTime": {
"type": "string",
"format": "time",
"description": "The cutoff time for scheduling transfers for the current day"
}
}
}
Configuration Schema (v2.1.0)
The schema which defines the name and types of the variables that are part of this configuration definition. Property names must be simple identifiers which follow the pattern letter [letter | digit | - | _]*
.
This is implicitly a schema for type: object
and contains the properties.
The values
in a configuration conform to the schema. The names and types are described with a subset of JSON Schema Core and JSON Schema Validation similar to that used to define schemas in OpenAPI Specification 2.0.
This schema was resolved from configurations/configurationSchema
.
Properties
Name | Description |
---|---|
Configuration Schema (v2.1.0) | The schema which defines the name and types of the variables that are part of this configuration definition. Property names must be simple identifiers which follow the pattern letter [letter | digit | - | _]* . This is implicitly a schema for The This schema was resolved from |
Configuration Schema Value (v2.0.0) | The data associated with this configuration schema. This schema was resolved from |
configurationSchemaValue
{}
Configuration Schema Value (v2.0.0)
The data associated with this configuration schema.
This schema was resolved from configurations/configurationSchemaValue
.
Properties
Name | Description |
---|---|
Configuration Schema Value (v2.0.0) | The data associated with this configuration schema. This schema was resolved from |
configurationValue
{}
Configuration Value (v2.0.0)
The data associated with this configuration.
This schema was resolved from configurations/configurationValue
.
Properties
Name | Description |
---|---|
Configuration Value (v2.0.0) | The data associated with this configuration. This schema was resolved from |
configurationValues
{
"dailyLimit": 5,
"cutoffTime": 63000
}
Configuration Values (v2.0.0)
The data values associated with this configuration group: the group's variable names and values. These values must conform to this item's schema
.
Note: the schema
may also contain default
values which, if present, are used if a value is not set in the definition's values
.
For example, multiple configurations may use the same schema that defines values a
, b
, and c
, but each configuration may have their own unique values for a
, b
, and c
which is separate from the schema.
This schema was resolved from configurations/configurationValues
.
Properties
Name | Description |
---|---|
Configuration Values (v2.0.0) | The data values associated with this configuration group: the group's variable names and values. These values must conform to this item's schema . Note: the For example, multiple configurations may use the same schema that defines values This schema was resolved from |
Configuration Value (v2.0.0) | The data associated with this configuration. This schema was resolved from |
disputeState
"none"
Dispute State (v1.0.0)
The current state of a dispute on the transaction.
disputeState
strings may have one of the following enumerated values:
Value | Description |
---|---|
none | None: A transaction that is not in dispute. |
inProgress | In Progress: A transaction dispute is in progress. |
resolved | Resolved: A transaction dispute has been resolved. |
These enumeration values are further described by the label group named disputeState
in the response from the getLabels
operation.
type:
string
enum values: none
, inProgress
, resolved
electronicFundsTransfer
{
"fee": "6.78",
"merchantName": "Don't Bug Me Pest Control",
"merchantAddress": {
"addressLine1": "100 Front St.",
"city": "Wilmington",
"regionCode": "NC",
"postalCode": "28401",
"countryCode": "US"
},
"cardNumbers": {
"masked": "************3210"
},
"location": {
"latitude": -77.9041,
"longitude": 34.2006
},
"panEntryMode": "manual"
}
Electronic Funds Transfer (v1.2.0)
Representation of an electronic funds transfer (EFT).
Properties
Name | Description |
---|---|
Electronic Funds Transfer (v1.2.0) | Representation of an electronic funds transfer (EFT). |
fee | Fees (if applicable). |
merchantName | The optional name of the merchant where the EFT was executed, if known. maxLength: 25 |
cardNumbers | The masked and number this card. |
merchantAddress | The merchant's full address. |
panEntryMode | Indicates how the primary account number (PAN) was entered into the system. This value encodes ISO 8583 point of service PAN entry modes. The allowed values for this property are defined at runtime in the label group named |
location | Geographical world-map coordinates of the transaction's location. |
error
{
"_id": "2eae46e1575c0a7b0115a4b3",
"message": "Descriptive error message...",
"statusCode": 422,
"type": "errorType1",
"remediation": "Remediation string...",
"occurredAt": "2018-01-25T05:50:52.375Z",
"errors": [
{
"_id": "ccdbe2c5c938a230667b3827",
"message": "An optional embedded error"
},
{
"_id": "dbe9088dcfe2460f229338a3",
"message": "Another optional embedded error"
}
],
"_links": {
"describedby": {
"href": "https://developer.apiture.com/errors/errorType1"
}
}
}
Error (v2.0.0)
Describes an error in an API request or in a service called via the API.
This schema was resolved from common/error
.
Properties
Name | Description |
---|---|
Error (v2.0.0) | Describes an error in an API request or in a service called via the API. This schema was resolved from |
message | (required) A localized message string describing the error condition. |
_id | A unique identifier for this error instance. This may be used as a correlation ID with the root cause error (i.e. this ID may be logged at the source of the error). This is is an opaque string. read-only |
statusCode | The HTTP status code associate with this error. minimum: 100 maximum: 599 |
type | An error identifier which indicates the category of error and associate it with API support documentation or which the UI tier can use to render an appropriate message or hint. This provides a finer level of granularity than the statusCode . For example, instead of just 400 Bad Request, the type may be much more specific. such as integerValueNotInAllowedRange or numericValueExceedsMaximum or stringValueNotInAllowedSet . |
occurredAt | An RFC 3339 UTC time stamp indicating when the error occurred. format: date-time |
attributes | Informative values or constraints which describe the error. For example, for a value out of range error, the attributes may specify the minimum and maximum values. This allows clients to present error messages as they see fit (the API does not assume the client/presentation tier). The set of attributes varies by error type . |
remediation | An optional localized string which provides hints for how the user or client can resolve the error. |
errors | array: An optional array of nested error objects. This property is not always present. items: object |
errorResponse
{
"_profile": "https://production.api.apiture.com/schemas/common/errorResponse/v2.1.1/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"_error": {
"_id": "2eae46e1-575c-4d69-8a8f-0a7b0115a4b3",
"message": "Description of the error will appear here.",
"statusCode": 422,
"type": "specificErrorType",
"attributes": {
"value": "Optional attribute describing the error"
},
"remediation": "Optional instructions to remediate the error may appear here.",
"occurredAt": "2018-01-25T05:50:52.375Z",
"_links": {
"describedby": {
"href": "https://production.api.apiture.com/errors/specificErrorType"
}
},
"_embedded": {
"errors": []
}
}
}
Error Response (v2.1.1)
Describes an error response, typically returned on 4xx or 5xx errors from API operations. The _error
object contains the error details.
This schema was resolved from common/errorResponse
.
Properties
Name | Description |
---|---|
Error Response (v2.1.1) | Describes an error response, typically returned on 4xx or 5xx errors from API operations. The _error object contains the error details. This schema was resolved from |
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
_embedded | An optional map of nested resources, mapping each nested resource name to a nested resource representation. |
_profile | The URI of a resource profile which describes the representation. read-only format: uri |
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only |
gpsCoordinates
{
"latitude": -77.9041,
"longitude": 34.2006
}
GPS Coordinates (v1.0.0)
Map coordinates (latitudes, longitude) of a geographical point.
This schema was resolved from auth/gpsCoordinates
.
Properties
Name | Description |
---|---|
GPS Coordinates (v1.0.0) | Map coordinates (latitudes, longitude) of a geographical point. This schema was resolved from |
latitude | (required) Latitude of a geographical point on the map. Represented in decimal notation. minimum: -90 maximum: 90 |
longitude | (required) Longitude of a geographical point on the map. Represented in decimal notation. minimum: -180 maximum: 180 |
holdState
"active"
Hold State (v1.0.0)
Indicates the hold state of the transaction. the holdState
is none
if no hold is associated to the transaction; otherwise, the holdState
indicates if the hold is currently active
or has expired
.
holdState
strings may have one of the following enumerated values:
Value | Description |
---|---|
active | Active: This transaction represents an active hold. |
expired | Expired: This transaction represents an expired hold. |
none | None: This transaction has no associated hold. |
These enumeration values are further described by the label group named holdState
in the response from the getLabels
operation.
type:
string
read-only
enum values: active
, expired
, none
ifxType
"CCA"
IFX Account Type (v1.0.1)
A code which identifies the product type. This is one of the IFX AcctType values. Labels and descriptions for the enumeration values are in the ifxType
key in the response of the getLabels
operation.
ifxType
strings may have one of the following enumerated values:
Value | Description |
---|---|
CCA | Credit card account |
CDA | Certificate of deposit account (CD) |
CLA | Commercial loan account |
CMA | Cash management account |
DDA | Demand deposit account |
EQU | Home equity loan |
GLA | General ledger account |
ILA | Installment loan account |
INV | Investment account |
IRA | Individual retirement account |
IRL | Accounts held in Ireland |
LOC | Consumer line of credit |
MLA | Military Lending Account: Credit facility held by former US service member |
MMA | Money market account |
PBA | Packaged bank Account: Account with additional benefits that charges a fixed monthly fee. |
PPA | Private pension administrator |
RWD | Reward accounts |
SDA | Savings deposit account |
These enumeration values are further described by the label group named ifxType
in the response from the getLabels
operation.
This schema was resolved from products/ifxType
.
type:
string
enum values: CCA
, CDA
, CLA
, CMA
, DDA
, EQU
, GLA
, ILA
, INV
, IRA
, IRL
, LOC
, MLA
, MMA
, PBA
, PPA
, RWD
, SDA
labelGroup
{
"unknown": {
"label": "Unknown",
"code": "0",
"hidden": true
},
"under1Million": {
"label": "Under $1M",
"code": "1",
"range": "[0,1000000.00)",
"variants": {
"fr": {
"label": "Moins de $1M"
}
}
},
"from1to10Million": {
"label": "$1M to $10M",
"code": "2",
"range": "[1000000.00,10000000.00)",
"variants": {
"fr": {
"label": "$1M \\u00e0 $10M"
}
}
},
"from10to100Million": {
"label": "$10M to $100M",
"code": "3",
"range": "[10000000.00,100000000.00)",
"variants": {
"fr": {
"label": "$10M \\u00e0 $100M"
}
}
},
"over100Million": {
"label": "Over $100,000,000.00",
"code": "4",
"range": "[100000000.00,]",
"variants": {
"fr": {
"label": "Plus de $10M"
}
}
},
"other": {
"label": "Other",
"code": "254"
}
}
Label Group (v1.0.3)
A map that defines labels for the items in a group. This is a map from each item name → a labelItem
object. For example, consider a JSON response that includes a property named revenueEstimate
; the values for revenueEstimate
must be one of the items in the group named estimatedAnnualRevenue
, with options ranging under1Million
, to over100Million
. The item name is used as the selected value in an Apiture representation, such as { ..., "revenueEstimate" : "from10to100Million" , ...}
, and the item with the name from10to100Million
defines the presentation labels for that item, as well as other metadata about that choice: this is the range [10000000.00,100000000.00)
.
This allows the client to let the user select a value from a list, such as the following derived from the labels in the example:
- Unknown
- Under $1M
- $1M to $10M
- $10M to $100M
- $100M or more
Note that the other
item is hidden from the selection list, as that item is marked as hidden
. For items which define numeric ranges, a client may instead let the customer directly enter their estimated annual revenue as a number, such as 4,500,000.00. The client can then match that number to one of ranges in the items and set the revenueEstimate
to the corresponding item's name: { ..., "revenueEstimate" : "from1to10Million", ... }
.
This schema was resolved from common/labelGroup
.
Properties
Name | Description |
---|---|
Label Group (v1.0.3) | A map that defines labels for the items in a group. This is a map from each item name → a labelItem object. For example, consider a JSON response that includes a property named revenueEstimate ; the values for revenueEstimate must be one of the items in the group named estimatedAnnualRevenue , with options ranging under1Million , to over100Million . The item name is used as the selected value in an Apiture representation, such as { ..., "revenueEstimate" : "from10to100Million" , ...} , and the item with the name from10to100Million defines the presentation labels for that item, as well as other metadata about that choice: this is the range [10000000.00,100000000.00) . This allows the client to let the user select a value from a list, such as the following derived from the labels in the example:
Note that the This schema was resolved from |
Label Item (v1.0.2) | An item in a labelGroup , with a set of variants which contains different localized labels for the item. Each simpleLabel variant defines the presentation text label and optional description for a language. Items may also have a lookup code to map to external systems, a numeric range, and a hidden boolean to indicate the item is normally hidden in the UI. This schema was resolved from |
labelGroups
{
"_profile": "https://production.api.apiture.com/schemas/common/labelGroups/v1.1.3/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"groups": {
"firstGroup": {
"unknown": {
"label": "Unknown",
"code": "0",
"hidden": true
},
"key1": {
"label": "Label for Key 1",
"code": "1",
"variants": {
"es": {
"label": "(Spanish label for Key 1)"
},
"fr": {
"label": "(French label for Key 1)"
}
}
},
"key2": {
"label": "Label for Key 2",
"code": "2",
"variants": {
"es": {
"label": "(Spanish label for Key 2)"
},
"fr": {
"label": "(French label for Key 2)"
}
}
},
"key3": {
"label": "Label for Key 3",
"code": "3",
"variants": {
"es": {
"label": "(Spanish label for Key 3)"
},
"fr": {
"label": "(French label for Key 3)"
}
}
},
"other": {
"label": "Other",
"variants": {
"es": {
"label": "(Spanish label for Other)"
},
"fr": {
"label": "(French label for Other)"
}
},
"code": "254"
}
},
"secondGroup": {
"unknown": {
"label": "Unknown",
"code": "?",
"hidden": true
},
"optionA": {
"label": "Option A",
"code": "A"
},
"optionB": {
"label": "Option B",
"code": "B"
},
"optionC": {
"label": "Option C",
"code": "C"
},
"other": {
"label": "Other",
"code": "_"
}
}
}
}
Label Groups (v1.1.3)
A set of named groups of labels, each of which contains multiple item labels.
The abbreviated example shows two groups, one named structure
and one named estimatedAnnualRevenue
. The first has items with names such as corporation
, llc
and soleProprietorship
, with text labels for each in the default and in French. The second has items for estimated revenue ranges but no localized labels. For example, the item named from1to10Million
has the label
"$1M to $10M" and the range [1000000.00,10000000.00)
.
This schema was resolved from common/labelGroups
.
Properties
Name | Description |
---|---|
Label Groups (v1.1.3) | A set of named groups of labels, each of which contains multiple item labels. The abbreviated example shows two groups, one named This schema was resolved from |
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
_embedded | An optional map of nested resources, mapping each nested resource name to a nested resource representation. |
_profile | The URI of a resource profile which describes the representation. read-only format: uri |
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only |
groups | Groups of localized labels. This maps group names → a group of labels within that group. |
» Label Group (v1.0.3) | A map that defines labels for the items in a group. This is a map from each item name → a labelItem object. For example, consider a JSON response that includes a property named revenueEstimate ; the values for revenueEstimate must be one of the items in the group named estimatedAnnualRevenue , with options ranging under1Million , to over100Million . The item name is used as the selected value in an Apiture representation, such as { ..., "revenueEstimate" : "from10to100Million" , ...} , and the item with the name from10to100Million defines the presentation labels for that item, as well as other metadata about that choice: this is the range [10000000.00,100000000.00) . This allows the client to let the user select a value from a list, such as the following derived from the labels in the example:
Note that the This schema was resolved from |
labelItem
{
"label": "Over $100,000,000.00",
"code": "4",
"range": "[100000000.00,]",
"variants": {
"fr": {
"label": "Plus de $10M"
}
}
}
Label Item (v1.0.2)
An item in a labelGroup
, with a set of variants
which contains different localized labels for the item. Each simpleLabel
variant defines the presentation text label and optional description for a language. Items may also have a lookup code
to map to external systems, a numeric range, and a hidden
boolean to indicate the item is normally hidden in the UI.
This schema was resolved from common/labelItem
.
Properties
Name | Description |
---|---|
Label Item (v1.0.2) | An item in a labelGroup , with a set of variants which contains different localized labels for the item. Each simpleLabel variant defines the presentation text label and optional description for a language. Items may also have a lookup code to map to external systems, a numeric range, and a hidden boolean to indicate the item is normally hidden in the UI. This schema was resolved from |
label | (required) A label or title which may be used as labels or other UI controls which present a value. |
description | A more detailed localized description of a localizable label. |
variants | The language-specific variants of this label. The keys in this object are RFC 7231 language codes. |
» Simple Label (v1.0.0) | A text label and optional description. This schema was resolved from |
code | If the localized value is associated with an external standard or definition, this is a lookup code or key or URI for that value. minLength: 1 |
hidden | If true , this item is normally hidden from the User Interface. |
range | The range of values, if the item describes a bounded numeric value. This is range notation such as [min,max] , (exclusiveMin,max] , [min,exclusiveMax) , or (exclusiveMin,exclusiveMax) . For example, [0,100) is the range greater than or equal to 0 and less than 100. If the min or max value are omitted, that end of the range is unbounded. For example, (,1000.00) means less than 1000.00 and [20000.00,] means 20000.00 or more. The ranges do not overlap or have gaps.pattern: "^[\\[\\(](-?(0|[1-9][0-9]*)(\\.[0-9]+)?)?,(-?(0|[1-9][0-9]*)(\\.[0-9]+)?)?[\\]\\)]$" |
link
{
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f",
"title": "Application"
}
Link (v1.0.0)
Describes a hypermedia link within a _links
object in HAL representations. In Apiture APIs, links are HAL links, but Apiture APIs do not use the name
or hreflang
properties of HAL. Apiture links may include a method
property.
This schema was resolved from common/link
.
Properties
Name | Description |
---|---|
Link (v1.0.0) | Describes a hypermedia link within a _links object in HAL representations. In Apiture APIs, links are HAL links, but Apiture APIs do not use the name or hreflang properties of HAL. Apiture links may include a method property. This schema was resolved from |
href | (required) The URI or URI template for the resource/operation this link refers to. format: uri |
type | The media type for the resource. |
templated | If true, the link's href is a URI template. |
title | An optional human-readable localized title for the link. |
deprecation | If present, the containing link is deprecated and the value is a URI which provides human-readable text information about the deprecation. format: uri |
profile | The URI of a profile document, a JSON document which describes the target resource/operation. format: uri |
links
{
"property1": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f",
"title": "Application"
},
"property2": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f",
"title": "Application"
}
}
Links (v1.0.0)
An optional map of links, mapping each link relation to a link object. This model defines the _links
object of HAL representations.
This schema was resolved from common/links
.
Properties
Name | Description |
---|---|
Links (v1.0.0) | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
Link (v1.0.0) | Describes a hypermedia link within a _links object in HAL representations. In Apiture APIs, links are HAL links, but Apiture APIs do not use the name or hreflang properties of HAL. Apiture links may include a method property. This schema was resolved from |
money
{
"value": "3456.78",
"currency": "str"
}
Money (v1.0.0)
An amount of money in a specific currency.
Properties
Name | Description |
---|---|
Money (v1.0.0) | An amount of money in a specific currency. |
value | The net monetary value. A negative amount denotes a debit; a positive amount a credit. The numeric value is represented as a string so that it can be exact with no loss of precision. |
currency | The ISO 4217 currency code for this monetary value. This is always upper case ASCII. Note: ISO 4217 defines three-character codes. However, ISO 4217 does not account for cryptocurrencies. Of note, DASH uses 4 characters. minLength: 3 maxLength: 3 |
root
{
"_profile": "https://production.api.apiture.com/schemas/common/root/v2.1.1/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"id": "apiName",
"name": "API name",
"apiVersion": "1.0.0"
}
API Root (v2.1.1)
A HAL response, with hypermedia _links
for the top-level resources and operations in API.
This schema was resolved from common/root
.
Properties
Name | Description |
---|---|
API Root (v2.1.1) | A HAL response, with hypermedia _links for the top-level resources and operations in API. This schema was resolved from |
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
_embedded | An optional map of nested resources, mapping each nested resource name to a nested resource representation. |
_profile | The URI of a resource profile which describes the representation. read-only format: uri |
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only |
_id | This API's unique ID. read-only |
name | This API's name. |
apiVersion | This API's version. |
simpleLabel
{
"label": "Board of Directors",
"description": "string"
}
Simple Label (v1.0.0)
A text label and optional description.
This schema was resolved from common/simpleLabel
.
Properties
Name | Description |
---|---|
Simple Label (v1.0.0) | A text label and optional description. This schema was resolved from |
label | (required) A label or title which may be used as labels or other UI controls which present a value. |
description | A more detailed localized description of a localizable label. |
transaction
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transaction/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions/969d61b1-2b49-4eb6-9b7d-356f242ca0aa"
},
"apiture:account": {
"href": "/accounts/accounts/7e6acb45-71c0-4aa8-9fe4-a5f3b4298be7"
},
"apiture:checkFrontImage": {
"href": "/vault/files/14361265-7837-4eab-8b74-3232c9716385/content"
},
"apiture:checkBackImage": {
"href": "/vault/files/41c9daba-c4c6-412d-9faf-eb82bc76e2e1/content"
},
"apiture:sourceAccount": {
"href": "/accounts/accounts/85efad52-14f6-494f-a52b-5b5960000766"
}
},
"_id": "969d61b1-2b49-4eb6-9b7d-356f242ca0aa",
"amount": {
"value": "327.50",
"currency": "USD"
},
"balance": {
"current": "2180.27",
"currency": "USD"
},
"state": "completed",
"type": "debit",
"providerSummary": "check 1856 | Don't Bug Me Pest Control",
"summary": "check 1856 | Don't Bug Me Pest Control",
"description": "check 1856, processed May 10, 2019",
"memo": "Annual pest control contract fee. #Annual #AutomaticDraft",
"recurs": "recurring",
"cashBackAmount": {
"amount": "123.45",
"currency": "USD"
},
"checkNumber": 1856,
"sourceAccountNumbers": {
"masked": "*************3210",
"full": "9876543210"
},
"sourceAccountName": "My Personal Checking",
"transactionCode": "D480",
"postedOn": "2020-07-01",
"effectiveAt": "2020-07-01T06:24:31.375Z",
"network": "check",
"disputeState": "resolved"
}
A transaction (v1.8.0)
An financial transaction, such as a deposit, a check payment, interest, fees, transaction reversals, etc.
Links
Response and request bodies using this transaction
schema may contain the following links:
Rel | Summary | Method |
---|---|---|
apiture:account | Account | GET |
apiture:sourceAccount | Source Account | GET |
apiture:targetAccount | Target Account | GET |
apiture:checkFrontImage | Check Front Image Content | GET |
apiture:checkBackImage | Check Back Image Content | GET |
apiture:reversedBy | Fetch a representation of this transaction | GET |
apiture:inquirySubmittedBy | User who submitted the inquiry | GET |
apiture:reverses | Fetch a representation of this transaction | GET |
Properties
Name | Description | |||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
A transaction (v1.8.0) | An financial transaction, such as a deposit, a check payment, interest, fees, transaction reversals, etc. LinksResponse and request bodies using this
| |||||||||||||||||||||||||||
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from | |||||||||||||||||||||||||||
_embedded | An optional map of nested resources, mapping each nested resource name to a nested resource representation. | |||||||||||||||||||||||||||
_profile | The URI of a resource profile which describes the representation. read-only format: uri | |||||||||||||||||||||||||||
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only | |||||||||||||||||||||||||||
_id | The unique identifier for this transaction resource. This is an immutable opaque string. read-only | |||||||||||||||||||||||||||
amount | (required) The amount of the transaction. | |||||||||||||||||||||||||||
availableAmount | If there is a hold on a credit transaction, this is the full amount minus the holdAmount . This property is omitted if there is no hold. | |||||||||||||||||||||||||||
balance | The account's running balance as of this transaction. This property is optional and is omitted if not computable. | |||||||||||||||||||||||||||
state | (required) Indicates the current state of the transaction.
These enumeration values are further described by the label group named | |||||||||||||||||||||||||||
type | (required) The type of the transaction, a credit or a debit .
These enumeration values are further described by the label group named | |||||||||||||||||||||||||||
subtype | A subtype, more specific transaction type. | |||||||||||||||||||||||||||
providerSummary | Human readable version of the transaction description. | |||||||||||||||||||||||||||
summary | A cleansed version of the providerSummary . | |||||||||||||||||||||||||||
description | This field contains additional descriptive information about the transaction. | |||||||||||||||||||||||||||
memo | An optional user-settable memo attached to the transaction, derived from the attached memo. maxLength: 500 | |||||||||||||||||||||||||||
recurs | If true , the provider classifies this as a recurring transaction, such as a scheduled bill pay.enum values: recurring , nonRecurring , unknown | |||||||||||||||||||||||||||
checkNumber | If this transaction represents a check drafted against this account, this is the check number. minimum: 0 maximum: 4294967295 | |||||||||||||||||||||||||||
sourceAccountNumbers | If the transaction involves only one account, this is that account's number. If the transaction involves a transfer between accounts, this is the source account the money was transferred from. | |||||||||||||||||||||||||||
sourceAccountName | The name of the transaction's primary or source account. | |||||||||||||||||||||||||||
targetAccountNumbers | If the transaction involves a transfer between accounts, this is the target account the money was transferred to. | |||||||||||||||||||||||||||
targetAccountName | The name of the transaction's target account. | |||||||||||||||||||||||||||
transactionCode | (required) The transaction code returned from the core. | |||||||||||||||||||||||||||
postedOn | The date when the transaction processing completed. This property is set only if the state is completed . This is an RFC 3339 date in YYYY-MM-DD format.format: date | |||||||||||||||||||||||||||
effectiveAt | The date-time when the transaction was applied to the account balance. This may be before postedOn if the transaction was back-dated. This is an RFC 3369 date-time string in YYYY-MM-DDThh:mm:ss.sssZ format, UTC.format: date-time | |||||||||||||||||||||||||||
reversedOn | The date when the transaction was reversed. This property is set only if the state is reversed .format: date | |||||||||||||||||||||||||||
network | The name of the settlement network that is the transaction source, one of (if known):
| |||||||||||||||||||||||||||
holdState | Indicates the hold state of the transaction. the holdState is none if no hold is associated to the transaction; otherwise, the holdState indicates if the hold is currently active or has expired .
These enumeration values are further described by the label group named | |||||||||||||||||||||||||||
holdAmount | The amount of funds on hold. | |||||||||||||||||||||||||||
holdExpiresAt | The date-time when the hold expires. This is an RFC 3369 formatted date-time string, YYYY-MM-DDThh:mm:ss.sssZ , UTC.format: date-time | |||||||||||||||||||||||||||
cashBackAmount | The amount in which the buyer receives cash at the time of purchase. This property only exists if network is eft . | |||||||||||||||||||||||||||
purchaseAmount | The total transaction amount minus the cashbackAmount. This property only exists if network is eft and there is a cashBackAmount . | |||||||||||||||||||||||||||
eft | The electronic funds transfer. This property exists only if network is eft . | |||||||||||||||||||||||||||
ach | The automated clearing house transfer. This property exists only if network is ach . | |||||||||||||||||||||||||||
atmTerminalId | The unique identifier of the automatic teller matching (ATM) used for this transaction. This property is only present for transactions conducted at an ATM. maxLength: 19 | |||||||||||||||||||||||||||
disputeState | The current state of a dispute on the transaction.
These enumeration values are further described by the label group named | |||||||||||||||||||||||||||
inquiries | array: If an account holder submitted any transaction inquiries, this object is present and lists the inquiries. The property is omitted if there are no inquires. Only the user who submited the inquiry can see the corresponding message thread. read-only minItems: 1 items: object | |||||||||||||||||||||||||||
individualItemNumber | Contains an identification number, such as a customer or account number from a CIE bill payment or PPD collection. maxLength: 15 |
transactionAccountNumbers
{
"masked": "*************3210",
"full": "9876543210"
}
Transaction Account Numbers (v1.0.1)
The account numbers associated with a transfer.
Properties
Name | Description |
---|---|
Transaction Account Numbers (v1.0.1) | The account numbers associated with a transfer. |
masked | A partial account number that does not contain all the digits of the full account number. This masked number appears in statements or in user experience presentation. It is sufficient for a user to differentiate this account from other accounts they hold, but is not sufficient for initiating transfers, etc. The first character is the mask character and is repeated; this does not indicate that the full account number is the same as the mask length. This value is derived and immutable. minLength: 9 maxLength: 32 |
full | The full account number. The full number is not included in the representation of the transaction that is included in transaction collection responses. This value only appears when passing ?unmasked=true on the GET /transaction/{transactionId} request.minLength: 9 maxLength: 32 |
transactionCardNumbers
{
"masked": "************3210"
}
Card Numbers (v1.0.0)
Masked representation of a card number.
Properties
Name | Description |
---|---|
Card Numbers (v1.0.0) | Masked representation of a card number. |
masked | A partial (masked) card number that does not contain all the digits of the full card number. This masked number appears in statements or in user experience presentation. It is sufficient for a user to differentiate this card from other cards the user holds, but is not sufficient for initiating transactions, etc. The first character is the mask character and is repeated; this does not indicate that the full card number is the same as the mask length. This value is derived and immutable. read-only maxLength: 16 |
transactionCheckImage
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transactionCheckImage/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/checkDeposits/checkDeposits/f6c321e6-419a/checks/999a1163-47fd/images/front"
},
"apiture:content": {
"href": "https://production.api.apiture.com/transactions/checkImages/f6c321e6-c628-419a/front/content"
},
"apiture:transaction": {
"href": "https://production.api.apiture.com/transactions/transactions/bedfecb5-60a9-4f44-a53a-b6d86608434a'",
"operationId": "getTransaction"
}
},
"_id": "f6c321e6-c628-419a",
"name": "f6c321e6-c628-419a-front.jpeg",
"contentType": "image/jpeg",
"description": "Front check image captured and uploaded from an iPhoneX.",
"sizeBytes": 112800,
"createdAt": "2020-01-04T07:00:49.375Z"
}
Transaction Check Image (v1.0.0)
Metadata for a check image associated with a transaction.
Links
Response and request bodies using this transactionCheckImage
schema may contain the following links:
Rel | Summary | Method |
---|---|---|
apiture:content | The URL of the raw check image file, typically a JPEG image | GET |
apiture:transaction | The transaction that contains this check image | GET |
Properties
Name | Description | |||||||||
---|---|---|---|---|---|---|---|---|---|---|
Transaction Check Image (v1.0.0) | Metadata for a check image associated with a transaction. LinksResponse and request bodies using this
| |||||||||
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from | |||||||||
_embedded | An optional map of nested resources, mapping each nested resource name to a nested resource representation. | |||||||||
_profile | The URI of a resource profile which describes the representation. read-only format: uri | |||||||||
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only | |||||||||
name | The file name, for identification purposes. File names may include file extensions such as .jpeg for JPEG images, although the system does not validate or ensure that extensions match the file content type. This is limited to 64 characters and may not contain certain special characters such as / or \. If omitted, the system will assign a name.maxLength: 64 | |||||||||
description | A description of this file and its contents. maxLength: 4096 | |||||||||
contentType | The media type for this file. | |||||||||
sizeBytes | The file size in bytes. This is a derived property and cannot be modified in updates. read-only | |||||||||
createdAt | The date-time when the image was created or uploaded. read-only format: date-time | |||||||||
_id | The unique ID of the check for this transaction. (The check ID is shared for the images of the front and back of check.) read-only minLength: 16 maxLength: 48 |
transactionInquiry
{
"state": "submitted",
"createdBy": "70b8dd47-aaf0-4ab1-bcbf-6e9f296963f8",
"createdByFirstName": "Catherine",
"createdByLastName": "Wilson",
"createdAt": "2021-05-24T06:13:22.375Z",
"_links": {
"apiture:messageThread": {
"href": "https://api.devbank.apiture.com/messages/messageThreads/3126d1f6-a799-4010-a793-03ccea70196e"
}
}
}
Transaction Inquiry (v1.0.2)
If an account holder submitted an inquiry about this transaction, this object describes the inquiry. Operators may escalate inquiries to transaction disputes or may mark the inquiry as resolved. Note: the apiture:messageThread
link is only present if the current user submitted the inquiry. The same message thread is retained if the inquiry is escalated to a dispute.
Links
Response and request bodies using this transactionInquiry
schema may contain the following links:
Rel | Summary | Method |
---|---|---|
apiture:messageThread | Message thread containing the inquiry | GET |
Properties
Name | Description | ||||||
---|---|---|---|---|---|---|---|
Transaction Inquiry (v1.0.2) | If an account holder submitted an inquiry about this transaction, this object describes the inquiry. Operators may escalate inquiries to transaction disputes or may mark the inquiry as resolved. Note: the LinksResponse and request bodies using this
| ||||||
state | The state of this inquiry. if the inquiry state is convertedToDispute , refer to the disputeState on the transaction.read-only enum values: none , submitted , convertedToDispute , resolved | ||||||
createdBy | The ID of the user who created the inquiry. This is the _id of the authenticated user, as defined by the Uses API. (It is not the username .)read-only maxLength: 48 | ||||||
createdAt | The time when the customer created the transaction. This is an RFC 3369 date-time string in YYYY-MM-DDThh:mm:ss.sssZ format, UTC.read-only format: date-time | ||||||
createdByFirstName | The first name of the banking customer who created the transaction inquiry. read-only maxLength: 80 | ||||||
createdByLastName | The last name of the banking customer who created the transaction inquiry. read-only maxLength: 80 | ||||||
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
transactionInquiryState
"none"
Transaction Inquiry State (v1.0.0)
The state of a transaction inquiry.
transactionInquiryState
strings may have one of the following enumerated values:
Value | Description |
---|---|
none | None: No transaction inquiry exists. |
submitted | Submitted: A banking customer has opened an inquiry against this transaction. |
convertedToDispute | Converted to Dispute: An operator at the financial institution has converted this inquiry into a transaction dispute. |
resolved | Resolved: The banking customer or the financial institution operator has resolved the inquiry. |
These enumeration values are further described by the label group named transactionInquiryState
in the response from the getLabels
operation.
type:
string
enum values: none
, submitted
, convertedToDispute
, resolved
transactionMemo
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transactionMemo/v1.1.1/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"text": "Annual pest control contract fee. #Annual #AutomaticDraft"
}
Transaction Memo (v1.1.1)
A user-settable memo associated with this transaction.
Properties
Name | Description |
---|---|
Transaction Memo (v1.1.1) | A user-settable memo associated with this transaction. |
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
_embedded | An optional map of nested resources, mapping each nested resource name to a nested resource representation. |
_profile | The URI of a resource profile which describes the representation. read-only format: uri |
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only |
text | The memo text. This text is also included in each transaction as transaction.memo .maxLength: 500 |
transactionRecurrence
"recurring"
Transaction Recurrence (v1.0.0)
Indicates if the transaction is recurring, not recurring, or unknown.
type:
string
enum values: recurring
, nonRecurring
, unknown
transactionState
"pending"
Transaction State (v1.0.0)
Indicates the current state of the transaction.
transactionState
strings may have one of the following enumerated values:
Value | Description |
---|---|
pending | Pending: The transaction is pending and may be completed in the future. |
completed | Completed: A completed transaction. |
reversed | Reversed: A transaction that was completed but then reversed, such as a disputed fee that the financial institution reversed. |
These enumeration values are further described by the label group named transactionState
in the response from the getLabels
operation.
type:
string
enum values: pending
, completed
, reversed
transactionType
"credit"
Transaction Type (v1.0.0)
The type of the transaction, a credit
or a debit
.
transactionType
strings may have one of the following enumerated values:
Value | Description |
---|---|
debit | Debit: A debit of funds from the account, such as a check written against an account or an assessed fee. |
credit | Credit: A credit posted to the account, such as the transfer of funds to this account or interested posted to the account. |
These enumeration values are further described by the label group named transactionType
in the response from the getLabels
operation.
type:
string
enum values: credit
, debit
transactions
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transactions/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions?start=10&limit=10"
},
"first": {
"href": "/transactions/transactions?start=0&limit=10"
},
"next": {
"href": "/transactions/transactions?start=20&limit=10"
},
"collection": {
"href": "/transactions/transactions"
}
},
"start": 10,
"limit": 10,
"count": 67,
"name": "transactions",
"_embedded": {
"items": [
{
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_profile": "https://production.api.apiture.com/schemas/transactions/transaction/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions/0399abed-fd3d-4830-a88b-30f38b8a365c"
},
"apiture:account": {
"href": "/transactions/accounts/86de587e-a5a7-11e8-98d0-529269fb1459"
},
"apiture:organization": {
"href": "/transactions/organizations/86de587e-a5a7-11e8-98d0-529269fb1459"
}
},
"amount": {
"value": "35.00",
"currency": "USD"
},
"state": "pending",
"type": "debit",
"providerSummary": "gas station"
},
{
"_id": "d62c0701-0d74-4836-83f9-ebf3709442ea",
"_profile": "https://production.api.apiture.com/schemas/transactions/transaction/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions/d62c0701-0d74-4836-83f9-ebf3709442ea"
},
"apiture:account": {
"href": "/transactions/accounts/86de587e-a5a7-11e8-98d0-529269fb1459"
},
"apiture:organization": {
"href": "/transactions/organizations/86de587e-a5a7-11e8-98d0-529269fb1459"
}
},
"amount": {
"value": "1000.00",
"currency": "USD"
},
"state": "pending",
"type": "debit",
"providerSummary": "donation"
}
]
}
}
Transaction Collection (v1.8.0)
Collection of transactions. The items in the collection are ordered in the _embedded
object with array items
. The top-level _links
object may contain pagination links (self
, next
, prev
, first
, last
, collection
).
When this response is used for the getPendingTransactions
operation, the pagination links reference /transactions/pendingTransactions
; when this response is used for the getTransactions
operation, the pagination links references /transactions/transactions
; when this response is used for the getHistory
operation, the pagination links references /transactions/history
. The example shows the response for getTransactions
.
Properties
Name | Description |
---|---|
Transaction Collection (v1.8.0) | Collection of transactions. The items in the collection are ordered in the _embedded object with array items . The top-level _links object may contain pagination links (self , next , prev , first , last , collection ). When this response is used for the |
_links | An optional map of links, mapping each link relation to a link object. This model defines the _links object of HAL representations. This schema was resolved from |
_embedded | The transactions schema's embedded items collection. |
_profile | The URI of a resource profile which describes the representation. read-only format: uri |
_error | An object which describes an error. This value is omitted if the operation succeeded without error. read-only |
count | The number of items in the collection. This value is optional and may be omitted if the count is not computable efficiently. If a filter is applied to the collection (either implicitly or explicitly), the count, if present, indicates the number of items that satisfy the filter. |
start | The start index of this page of items. |
limit | The maximum number of items per page. |
name | The name of the collection. |
transactionsEmbedded
{
"items": [
{
"_profile": "https://production.api.apiture.com/schemas/transactions/transaction/v1.8.0/profile.json",
"_links": {
"self": {
"href": "/transactions/transactions/969d61b1-2b49-4eb6-9b7d-356f242ca0aa"
},
"apiture:account": {
"href": "/accounts/accounts/7e6acb45-71c0-4aa8-9fe4-a5f3b4298be7"
},
"apiture:checkFrontImage": {
"href": "/vault/files/14361265-7837-4eab-8b74-3232c9716385/content"
},
"apiture:checkBackImage": {
"href": "/vault/files/41c9daba-c4c6-412d-9faf-eb82bc76e2e1/content"
},
"apiture:sourceAccount": {
"href": "/accounts/accounts/85efad52-14f6-494f-a52b-5b5960000766"
}
},
"_id": "969d61b1-2b49-4eb6-9b7d-356f242ca0aa",
"amount": {
"value": "327.50",
"currency": "USD"
},
"balance": {
"current": "2180.27",
"currency": "USD"
},
"state": "completed",
"type": "debit",
"providerSummary": "check 1856 | Don't Bug Me Pest Control",
"summary": "check 1856 | Don't Bug Me Pest Control",
"description": "check 1856, processed May 10, 2019",
"memo": "Annual pest control contract fee. #Annual #AutomaticDraft",
"recurs": "recurring",
"cashBackAmount": {
"amount": "123.45",
"currency": "USD"
},
"checkNumber": 1856,
"sourceAccountNumbers": {
"masked": "*************3210",
"full": "9876543210"
},
"sourceAccountName": "My Personal Checking",
"transactionCode": "D480",
"postedOn": "2020-07-01",
"effectiveAt": "2020-07-01T06:24:31.375Z",
"network": "check",
"disputeState": "resolved"
}
]
}
Transactions Embedded Objects (v1.7.0)
Objects embedded in the transactions
schema.
Properties
Name | Description |
---|---|
Transactions Embedded Objects (v1.7.0) | Objects embedded in the transactions schema. |
items | array: An array containing a page of transaction items. items: object |
@apiture/api-doc
3.2.4 on Mon Oct 28 2024 14:41:10 GMT+0000 (Coordinated Universal Time).