- Associations v0.8.4
- Error Types
- Authentication
- Associations
- Roles
- API
- Schemas
Associations v0.8.4
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 Associations API associates source resources to target resources using association roles.
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.
invalidAssociationId
Description: No associations were found for the specified associationId.
Remediation: Check to make sure that the supplied associationId corresponds to an apiture association resource.
invalidRoleId
Description: No roles were found for the specified roleId.
Remediation: Check to make sure that the supplied associationId corresponds to an apiture role resource.
invalidRoleLink
Description: There was a problem processing the roleUri.
Remediation: Send a valid and properly formed roleUri with the association.
invalidSourceLink
Description: There was a problem processing the sourceUri.
Remediation: Send a valid and properly formed sourceUri with the association.
roleInUse
Description: The requested role is in use and cannot be deleted.
Remediation: Update everywhere necessary so that the role is not in use.
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 optional andclientSecret
) 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 |
---|---|
data/read |
Read access to non-account, non-profile data. |
data/write |
Write (update) access to non-account, non-profile data. |
data/delete |
Delete access to non-account, non-profile data. |
data/full |
Full access to non-account, non-profile data. |
Associations
An Association between two Resources
getAssociations
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/associations/associations \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/associations/associations 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/associations/associations',
{
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/associations/associations',
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/associations/associations',
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/associations/associations', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/associations");
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/associations/associations", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Return a collection of associations.
GET https://api.devbank.apiture.com/associations/associations
Return a paginated sortable filterable searchable collection of associations. The links in the response include pagination links.
Parameters
Parameter | Description |
---|---|
start in: query | integer(int64) The zero-based index of the first association item to include in this page. The default 0 denotes the beginning of the collection. format: int64 default: 0 |
limit in: query | integer(int32) The maximum number of association representations to return in this page. format: int32 default: 100 |
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: • name • type • label • roleName • createdAt . |
filter in: query | string Optional filter criteria. See filtering. This collection may be filtered by the following properties and functions: • Property name using functions eq , ne , lt , le , gt , ge , startsWith , endsWith , contains , search • Property type using functions eq , ne , in • Property label using functions eq , ne , lt , le , gt , ge , startsWith , endsWith , contains , search • Property _id using functions eq , in • Property sourceUri using functions eq • Property targetUri using functions eq • Property roleName using functions eq , contains . |
q in: query | string Optional search string. See searching. |
name in: query | string Subset the collection to those with this name value. Use | to separate multiple values. For example, ?name=Bartell will match only items whose name is Bartell; ?name=Bartell|kirsten will match items whose name is Bartell or kirsten. This is combined with an implicit and with other filters if they are used. See filtering. |
type in: query | string Subset the associations collection to those with this exact type value. Use | to separate multiple values. For example, ?type=Personal%20Savings matches only items whose type is Personal Savings; ?type=Personal%20Savings|Investment%20Account matches items whose type is Personal Savings or Investment Account. This is combined with an implicit and with other filters if they are used. See filtering. |
label in: query | string Subset the collection to those with this label value. Use | to separate multiple values. For example, ?label=email_verification matches only items whose label is email_verification ; ?label=email_verification|account_verification matches items whose label is email_verification or account_verification . This is combined with an implicit and with other filters if they are used. See filtering. |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/associations/associations/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/associations?start=10&limit=10"
},
"first": {
"href": "/associations/associations?start=0&limit=10"
},
"next": {
"href": "/associations/associations?start=20&limit=10"
},
"collection": {
"href": "/associations/associations"
}
},
"start": 10,
"limit": 10,
"count": 67,
"name": "associations",
"_embedded": {
"items": [
{
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_profile": "https://production.api.apiture.com/schemas/associations/association/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/associations/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"roleName": "primaryUser",
"_embedded": {
"role": {
"_id": "c83790c9-8bcb-4754-a989-7a45342697cb",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"name": "primaryUser",
"label": "primaryUser",
"description": "The account owner has full control across the account. For personal accounts, the orimary user is also known as the account owner. For organization accounts, the organization is the \"owner\"; the primary user is the person who is granted administration permissions on the account, which includes managing permissions and roles of other users associated with the account.\nThere may be only one primary user."
},
"target": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/users/user/v1.0.0/profile.json",
"type": "user",
"firstName": "Bobette",
"middleName": "",
"lastName": "Wellphunded"
},
"source": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/accounts/account/v1.0.0/profile.json",
"type": "account",
"name": "Personal Checking"
}
}
}
]
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK | |
Schema: associations |
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 will contain 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 will contain details about the request error. | |
Schema: errorResponse |
createAssociation
Code samples
# You can also use wget
curl -X POST https://api.devbank.apiture.com/associations/associations \
-H 'Content-Type: application/hal+json' \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
POST https://api.devbank.apiture.com/associations/associations HTTP/1.1
Host: api.devbank.apiture.com
Content-Type: application/hal+json
Accept: application/hal+json
const fetch = require('node-fetch');
const inputBody = '{
"sourceUri": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"roleUri": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd",
"roleName": "primaryUser",
"targetUri": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"_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"
}
}
}';
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/associations/associations',
{
method: 'POST',
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/associations/associations',
method: 'post',
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.post 'https://api.devbank.apiture.com/associations/associations',
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.post('https://api.devbank.apiture.com/associations/associations', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/associations");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("POST");
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("POST", "https://api.devbank.apiture.com/associations/associations", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Create a new association
POST https://api.devbank.apiture.com/associations/associations
Create a new association between two resources. The request must include a valid link (apiture:source
) to a source resource, (apiture:role
) to an association role instance and a link (apiture:target
) to a target resource.
Body parameter
{
"sourceUri": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"roleUri": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd",
"roleName": "primaryUser",
"targetUri": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"_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"
}
}
}
Parameters
Parameter | Description |
---|---|
body | createAssociation (required) The data necessary to create a new association. |
Example responses
201 Response
{
"_profile": "https://production.api.apiture.com/schemas/associations/association/v1.0.0/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
},
"apiture:role": {
"href": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd"
},
"apiture:source": {
"href": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed"
},
"apiture:target": {
"href": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed"
}
},
"sourceUri": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"roleUri": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd",
"roleName": "primaryUser",
"targetUri": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_embedded": {
"source": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/accounts/account/v1.0.0/profile.json",
"type": "account",
"name": "Personal Checking",
"TODO": "Refine this example when Accounts API is defined."
},
"role": {
"_id": "c83790c9-8bcb-4754-a989-7a45342697cb",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account. For personal accounts, the primary user is also known as the account owner. For organization accounts, the organization is the \"owner\"; the primary user is the person who is granted administration permissions on the account, which includes managing permissions and roles of other users associated with the account.\nThere may be only one primary user."
},
"target": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/user/user/v1.0.0/profile.json",
"type": "user",
"firstName": "Bobette",
"middleName": "",
"lastName": "Wellphunded"
}
}
}
Responses
Status | Description |
---|---|
201 | Created |
Created. A representation of the new association is returned, including the self link, the role, source and target of the association. | |
Schema: association | |
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 This error response may have one of the following | |
Schema: errorResponse |
getAssociation
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/associations/associations/{associationId} \
-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/associations/associations/{associationId} 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/associations/associations/{associationId}',
{
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/associations/associations/{associationId}',
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/associations/associations/{associationId}',
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/associations/associations/{associationId}', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/associations/{associationId}");
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/associations/associations/{associationId}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Fetch a representation of this association
GET https://api.devbank.apiture.com/associations/associations/{associationId}
Return a HAL representation of this association resource.
Parameters
Parameter | Description |
---|---|
associationId in: path | string (required) The unique identifier of this association. This is an opaque string. |
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 will return 304 (Not Modified) and no response body, else the resource representation will be returned. |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/associations/association/v1.0.0/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
},
"apiture:role": {
"href": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd"
},
"apiture:source": {
"href": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed"
},
"apiture:target": {
"href": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed"
}
},
"sourceUri": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"roleUri": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd",
"roleName": "primaryUser",
"targetUri": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_embedded": {
"source": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/accounts/account/v1.0.0/profile.json",
"type": "account",
"name": "Personal Checking",
"TODO": "Refine this example when Accounts API is defined."
},
"role": {
"_id": "c83790c9-8bcb-4754-a989-7a45342697cb",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account. For personal accounts, the primary user is also known as the account owner. For organization accounts, the organization is the \"owner\"; the primary user is the person who is granted administration permissions on the account, which includes managing permissions and roles of other users associated with the account.\nThere may be only one primary user."
},
"target": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/user/user/v1.0.0/profile.json",
"type": "user",
"firstName": "Bobette",
"middleName": "",
"lastName": "Wellphunded"
}
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK | |
Schema: association | |
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 association 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 association resource at the specified This error response may have one of the following | |
Schema: errorResponse |
patchAssociation
Code samples
# You can also use wget
curl -X PATCH https://api.devbank.apiture.com/associations/associations/{associationId} \
-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}'
PATCH https://api.devbank.apiture.com/associations/associations/{associationId} 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 = '{
"_profile": "https://production.api.apiture.com/schemas/associations/association/v1.0.0/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
},
"apiture:role": {
"href": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd"
},
"apiture:source": {
"href": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed"
},
"apiture:target": {
"href": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed"
}
},
"sourceUri": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"roleUri": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd",
"roleName": "primaryUser",
"targetUri": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_embedded": {
"source": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/accounts/account/v1.0.0/profile.json",
"type": "account",
"name": "Personal Checking",
"TODO": "Refine this example when Accounts API is defined."
},
"role": {
"_id": "c83790c9-8bcb-4754-a989-7a45342697cb",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account. For personal accounts, the primary user is also known as the account owner. For organization accounts, the organization is the \"owner\"; the primary user is the person who is granted administration permissions on the account, which includes managing permissions and roles of other users associated with the account.\nThere may be only one primary user."
},
"target": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/user/user/v1.0.0/profile.json",
"type": "user",
"firstName": "Bobette",
"middleName": "",
"lastName": "Wellphunded"
}
}
}';
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/associations/associations/{associationId}',
{
method: 'PATCH',
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/associations/associations/{associationId}',
method: 'patch',
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.patch 'https://api.devbank.apiture.com/associations/associations/{associationId}',
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.patch('https://api.devbank.apiture.com/associations/associations/{associationId}', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/associations/{associationId}");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("PATCH");
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("PATCH", "https://api.devbank.apiture.com/associations/associations/{associationId}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Update this association
PATCH https://api.devbank.apiture.com/associations/associations/{associationId}
Perform a partial update of this association. Fields which are omitted are not updated.
Body parameter
{
"_profile": "https://production.api.apiture.com/schemas/associations/association/v1.0.0/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
},
"apiture:role": {
"href": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd"
},
"apiture:source": {
"href": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed"
},
"apiture:target": {
"href": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed"
}
},
"sourceUri": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"roleUri": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd",
"roleName": "primaryUser",
"targetUri": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_embedded": {
"source": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/accounts/account/v1.0.0/profile.json",
"type": "account",
"name": "Personal Checking",
"TODO": "Refine this example when Accounts API is defined."
},
"role": {
"_id": "c83790c9-8bcb-4754-a989-7a45342697cb",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account. For personal accounts, the primary user is also known as the account owner. For organization accounts, the organization is the \"owner\"; the primary user is the person who is granted administration permissions on the account, which includes managing permissions and roles of other users associated with the account.\nThere may be only one primary user."
},
"target": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/user/user/v1.0.0/profile.json",
"type": "user",
"firstName": "Bobette",
"middleName": "",
"lastName": "Wellphunded"
}
}
}
Parameters
Parameter | Description |
---|---|
associationId in: path | string (required) The unique identifier of this association. This is an opaque string. |
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 | association (required) |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/associations/association/v1.0.0/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
},
"apiture:role": {
"href": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd"
},
"apiture:source": {
"href": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed"
},
"apiture:target": {
"href": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed"
}
},
"sourceUri": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"roleUri": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd",
"roleName": "primaryUser",
"targetUri": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_embedded": {
"source": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/accounts/account/v1.0.0/profile.json",
"type": "account",
"name": "Personal Checking",
"TODO": "Refine this example when Accounts API is defined."
},
"role": {
"_id": "c83790c9-8bcb-4754-a989-7a45342697cb",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account. For personal accounts, the primary user is also known as the account owner. For organization accounts, the organization is the \"owner\"; the primary user is the person who is granted administration permissions on the account, which includes managing permissions and roles of other users associated with the account.\nThere may be only one primary user."
},
"target": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/user/user/v1.0.0/profile.json",
"type": "user",
"firstName": "Bobette",
"middleName": "",
"lastName": "Wellphunded"
}
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK | |
Schema: association | |
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 association resource. |
Status | Description |
---|---|
400 | Bad Request |
Bad Request. The request body or one or more of the query parameters was not well formed. The This error response may have one of the following | |
Schema: errorResponse |
Status | Description |
---|---|
404 | Not Found |
Not Found. There is no such association resource at the specified This error response may have one of the following | |
Schema: errorResponse |
Status | Description |
---|---|
412 | Precondition Failed |
Precondition Failed. The supplied if-Match header value does not match the most recent ETag response header value. The resource has changed in the interim. | |
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 will contain details about the request error. | |
Schema: errorResponse |
deleteAssociation
Code samples
# You can also use wget
curl -X DELETE https://api.devbank.apiture.com/associations/associations/{associationId} \
-H 'Accept: application/hal+json' \
-H 'If-Match: string' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
DELETE https://api.devbank.apiture.com/associations/associations/{associationId} HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
If-Match: string
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'If-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/associations/associations/{associationId}',
{
method: 'DELETE',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'If-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/associations/associations/{associationId}',
method: 'delete',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'If-Match' => 'string',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.delete 'https://api.devbank.apiture.com/associations/associations/{associationId}',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'If-Match': 'string',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.delete('https://api.devbank.apiture.com/associations/associations/{associationId}', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/associations/{associationId}");
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"},
"If-Match": []string{"string"},
"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/associations/associations/{associationId}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Delete this association resource
DELETE https://api.devbank.apiture.com/associations/associations/{associationId}
Delete this association resource and any resources that are owned by it. Deleting an association does not delete the source, role, or target resources.
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. |
associationId in: path | string (required) The unique identifier of this association. This is an opaque string. |
Example responses
412 Response
{
"_profile": "https://production.api.apiture.com/schemas/common/errorResponse/v2.0.0/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": "The value for deposit must be greater than 0.",
"statusCode": 422,
"type": "positiveNumberRequired",
"attributes": {
"value": -125.5
},
"remediation": "Provide a value which is greater than 0",
"occurredAt": "2018-01-25T05:50:52.375Z",
"_links": {
"describedby": {
"href": "https://production.api.apiture.com/errors/positiveNumberRequired"
}
},
"_embedded": {
"errors": []
}
}
}
Responses
Status | Description |
---|---|
204 | No Content |
No Content. The resource was deleted successfully. |
Status | Description |
---|---|
412 | Precondition Failed |
Precondition Failed. The supplied if-Match header value does not match the most recent ETag response header value. The resource has changed in the interim. | |
Schema: errorResponse |
Roles
The Role of an Association
getRoles
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/associations/roles \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
GET https://api.devbank.apiture.com/associations/roles 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/associations/roles',
{
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/associations/roles',
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/associations/roles',
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/associations/roles', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/roles");
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/associations/roles", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Return a collection of roles
GET https://api.devbank.apiture.com/associations/roles
Return a paginated sortable filterable searchable collection of roles. The links in the response include pagination links.
Parameters
Parameter | Description |
---|---|
start in: query | integer(int64) The zero-based index of the first role item to include in this page. The default 0 denotes the beginning of the collection. format: int64 default: 0 |
limit in: query | integer(int32) The maximum number of role representations to return in this page. format: int32 default: 100 |
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: • name • label • description . |
filter in: query | string Optional filter criteria. See filtering. This collection may be filtered by the following properties and functions: • Property name using functions eq , ne , lt , le , gt , ge , startsWith , endsWith , contains , search • Property label using functions eq , ne , lt , le , gt , ge , startsWith , endsWith , contains , search • Property _id using functions eq , in . |
q in: query | string Optional search string. See searching. |
name in: query | string Subset the collection to those with this name value. Use | to separate multiple values. For example, ?name=Bartell will match only items whose name is Bartell; ?name=Bartell|kirsten will match items whose name is Bartell or kirsten. This is combined with an implicit and with other filters if they are used. See filtering. |
label in: query | string Subset the collection to those with this label value. Use | to separate multiple values. For example, ?label=email_verification matches only items whose label is email_verification ; ?label=email_verification|account_verification matches items whose label is email_verification or account_verification . This is combined with an implicit and with other filters if they are used. See filtering. |
Example responses
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/associations/roles/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles?start=10&limit=10"
},
"first": {
"href": "/associations/roles?start=0&limit=10"
},
"next": {
"href": "/associations/roles?start=20&limit=10"
},
"collection": {
"href": "/associations/roles"
}
},
"start": 10,
"limit": 10,
"count": 67,
"name": "roles",
"_embedded": {
"items": [
{
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"name": "primaryUser",
"label": "Primary User",
"description": "The primary user on the account.\nThere may be only one primary user on an account.",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
}
},
{
"_id": "1e0c734d-f0e7-4204-942d-222a860eed03",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"name": "beneficiary",
"label": "Beneficiary",
"description": "An account beneficiary.",
"_links": {
"self": {
"href": "/associations/roles/1e0c734d-f0e7-4204-942d-222a860eed03"
}
}
}
]
}
}
Responses
Status | Description |
---|---|
200 | OK |
OK | |
Schema: roles |
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 will contain 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 will contain details about the request error. | |
Schema: errorResponse |
createRole
Code samples
# You can also use wget
curl -X POST https://api.devbank.apiture.com/associations/roles \
-H 'Content-Type: application/hal+json' \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
POST https://api.devbank.apiture.com/associations/roles HTTP/1.1
Host: api.devbank.apiture.com
Content-Type: application/hal+json
Accept: application/hal+json
const fetch = require('node-fetch');
const inputBody = '{
"name": "primaryUser",
"label": "Primary User",
"description": "The primary user on the account.\nThere may be only one primary user on an account.",
"_profile": "https://production.api.apiture.com/schemas/associations/summaryRole/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c"
}';
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/associations/roles',
{
method: 'POST',
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/associations/roles',
method: 'post',
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.post 'https://api.devbank.apiture.com/associations/roles',
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.post('https://api.devbank.apiture.com/associations/roles', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/roles");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("POST");
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("POST", "https://api.devbank.apiture.com/associations/roles", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Create a new role
POST https://api.devbank.apiture.com/associations/roles
Create a new role which is used to associate two resources.
Body parameter
{
"name": "primaryUser",
"label": "Primary User",
"description": "The primary user on the account.\nThere may be only one primary user on an account.",
"_profile": "https://production.api.apiture.com/schemas/associations/summaryRole/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c"
}
Parameters
Parameter | Description |
---|---|
body | createRole (required) The data necessary to create a new role. |
Example responses
201 Response
{
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account.\n\nThere may be only one primary user.",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"createdAt": "2018-02-01T13:07:01.375Z"
}
Responses
Status | Description |
---|---|
201 | Created |
Created | |
Schema: role | |
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 will contain details about the request error. | |
Schema: errorResponse |
getRole
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/associations/roles/{roleId} \
-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/associations/roles/{roleId} 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/associations/roles/{roleId}',
{
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/associations/roles/{roleId}',
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/associations/roles/{roleId}',
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/associations/roles/{roleId}', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/roles/{roleId}");
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/associations/roles/{roleId}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Fetch a representation of this role
GET https://api.devbank.apiture.com/associations/roles/{roleId}
Return a HAL representation of this role resource.
Parameters
Parameter | Description |
---|---|
roleId in: path | string (required) The unique identifier of this role. This is an opaque string. |
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 will return 304 (Not Modified) and no response body, else the resource representation will be returned. |
Example responses
200 Response
{
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account.\n\nThere may be only one primary user.",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"createdAt": "2018-02-01T13:07:01.375Z"
}
Responses
Status | Description |
---|---|
200 | OK |
OK | |
Schema: role | |
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 role 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 role resource at the specified This error response may have one of the following | |
Schema: errorResponse |
Status | Description |
---|---|
412 | Precondition Failed |
Precondition Failed. The supplied if-Match header value does not match the most recent ETag response header value. The resource has changed in the interim. | |
Schema: errorResponse |
patchRole
Code samples
# You can also use wget
curl -X PATCH https://api.devbank.apiture.com/associations/roles/{roleId} \
-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}'
PATCH https://api.devbank.apiture.com/associations/roles/{roleId} 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 = '{
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account.\n\nThere may be only one primary user.",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"createdAt": "2018-02-01T13:07:01.375Z"
}';
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/associations/roles/{roleId}',
{
method: 'PATCH',
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/associations/roles/{roleId}',
method: 'patch',
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.patch 'https://api.devbank.apiture.com/associations/roles/{roleId}',
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.patch('https://api.devbank.apiture.com/associations/roles/{roleId}', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/roles/{roleId}");
HttpURLConnection con = (HttpURLConnection) obj.openConnection();
con.setRequestMethod("PATCH");
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("PATCH", "https://api.devbank.apiture.com/associations/roles/{roleId}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Update this role
PATCH https://api.devbank.apiture.com/associations/roles/{roleId}
Perform a partial update of this role. Fields which are omitted are not updated. Nested _embedded
and _links
are ignored if included.
Body parameter
{
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account.\n\nThere may be only one primary user.",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"createdAt": "2018-02-01T13:07:01.375Z"
}
Parameters
Parameter | Description |
---|---|
roleId in: path | string (required) The unique identifier of this role. This is an opaque string. |
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 | role (required) |
Example responses
200 Response
{
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account.\n\nThere may be only one primary user.",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"createdAt": "2018-02-01T13:07:01.375Z"
}
Responses
Status | Description |
---|---|
200 | OK |
OK | |
Schema: role | |
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 role 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 will contain details about the request error. | |
Schema: errorResponse |
Status | Description |
---|---|
404 | Not Found |
Not Found. There is no such role resource at the specified This error response may have one of the following | |
Schema: errorResponse |
Status | Description |
---|---|
412 | Precondition Failed |
Precondition Failed. The supplied if-Match header value does not match the most recent ETag response header value. The resource has changed in the interim. | |
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 will contain details about the request error. | |
Schema: errorResponse |
updateRole
Code samples
# You can also use wget
curl -X PUT https://api.devbank.apiture.com/associations/roles/{roleId} \
-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/associations/roles/{roleId} 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 = '{
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account.\n\nThere may be only one primary user.",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"createdAt": "2018-02-01T13:07:01.375Z"
}';
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/associations/roles/{roleId}',
{
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/associations/roles/{roleId}',
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/associations/roles/{roleId}',
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/associations/roles/{roleId}', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/roles/{roleId}");
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/associations/roles/{roleId}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Update this role
PUT https://api.devbank.apiture.com/associations/roles/{roleId}
Perform a complete replacement of this role.
Body parameter
{
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account.\n\nThere may be only one primary user.",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"createdAt": "2018-02-01T13:07:01.375Z"
}
Parameters
Parameter | Description |
---|---|
roleId in: path | string (required) The unique identifier of this role. This is an opaque string. |
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 | role (required) |
Example responses
200 Response
{
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account.\n\nThere may be only one primary user.",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"createdAt": "2018-02-01T13:07:01.375Z"
}
Responses
Status | Description |
---|---|
200 | OK |
OK | |
Schema: role | |
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 role 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 will contain details about the request error. | |
Schema: errorResponse |
Status | Description |
---|---|
404 | Not Found |
Not Found. There is no such role resource at the specified This error response may have one of the following | |
Schema: errorResponse |
Status | Description |
---|---|
412 | Precondition Failed |
Precondition Failed. The supplied if-Match header value does not match the most recent ETag response header value. The resource has changed in the interim. | |
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 will contain details about the request error. | |
Schema: errorResponse |
deleteRole
Code samples
# You can also use wget
curl -X DELETE https://api.devbank.apiture.com/associations/roles/{roleId} \
-H 'Accept: application/hal+json' \
-H 'If-Match: string' \
-H 'API-Key: API_KEY' \
-H 'Authorization: Bearer {access-token}'
DELETE https://api.devbank.apiture.com/associations/roles/{roleId} HTTP/1.1
Host: api.devbank.apiture.com
Accept: application/hal+json
If-Match: string
const fetch = require('node-fetch');
const headers = {
'Accept':'application/hal+json',
'If-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
fetch('https://api.devbank.apiture.com/associations/roles/{roleId}',
{
method: 'DELETE',
headers: headers
})
.then(function(res) {
return res.json();
}).then(function(body) {
console.log(body);
});
var headers = {
'Accept':'application/hal+json',
'If-Match':'string',
'API-Key':'API_KEY',
'Authorization':'Bearer {access-token}'
};
$.ajax({
url: 'https://api.devbank.apiture.com/associations/roles/{roleId}',
method: 'delete',
headers: headers,
success: function(data) {
console.log(JSON.stringify(data));
}
})
require 'rest-client'
require 'json'
headers = {
'Accept' => 'application/hal+json',
'If-Match' => 'string',
'API-Key' => 'API_KEY',
'Authorization' => 'Bearer {access-token}'
}
result = RestClient.delete 'https://api.devbank.apiture.com/associations/roles/{roleId}',
params: {
}, headers: headers
p JSON.parse(result)
import requests
headers = {
'Accept': 'application/hal+json',
'If-Match': 'string',
'API-Key': 'API_KEY',
'Authorization': 'Bearer {access-token}'
}
r = requests.delete('https://api.devbank.apiture.com/associations/roles/{roleId}', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/roles/{roleId}");
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"},
"If-Match": []string{"string"},
"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/associations/roles/{roleId}", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Delete this role resource
DELETE https://api.devbank.apiture.com/associations/roles/{roleId}
Delete this role resource and any resources that are owned by it. A role cannot be deleted if it is in use in an association.
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. |
roleId in: path | string (required) The unique identifier of this role. This is an opaque string. |
Example responses
409 Response
{
"_profile": "https://production.api.apiture.com/schemas/common/errorResponse/v2.0.0/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": "The value for deposit must be greater than 0.",
"statusCode": 422,
"type": "positiveNumberRequired",
"attributes": {
"value": -125.5
},
"remediation": "Provide a value which is greater than 0",
"occurredAt": "2018-01-25T05:50:52.375Z",
"_links": {
"describedby": {
"href": "https://production.api.apiture.com/errors/positiveNumberRequired"
}
},
"_embedded": {
"errors": []
}
}
}
Responses
Status | Description |
---|---|
204 | No Content |
No Content. The resource was deleted successfully. |
Status | Description |
---|---|
409 | Conflict |
Conflict. There is a conflict between the request and the current state of the resource. It may be one of the following: This error response may have one of the following | |
Schema: errorResponse |
Status | Description |
---|---|
412 | Precondition Failed |
Precondition Failed. The supplied if-Match header value does not match the most recent ETag response header value. The resource has changed in the interim. | |
Schema: errorResponse |
API
The Associations API
getApi
Code samples
# You can also use wget
curl -X GET https://api.devbank.apiture.com/associations/ \
-H 'Accept: application/hal+json' \
-H 'API-Key: API_KEY'
GET https://api.devbank.apiture.com/associations/ 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/associations/',
{
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/associations/',
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/associations/',
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/associations/', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/");
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/associations/", 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/associations/
Return links to the top-level resources and operations in this API. This API returns the following links: apiture:associations
: links to the collection of associations held at this financial institution. apiture:roles
: links to the collection of roles held at this financial institution.
Example responses
OK
{
"id": "associations",
"name": "Associations",
"apiVersion": "0.1.0",
"_profile": "https://production.api.apiture.com/schemas/common/root/v2.0.0/profile.json",
"_links": {
"apiture:associations": {
"href": "/associations/associations"
},
"apiture:roles": {
"href": "/associations/roles"
}
}
}
200 Response
{
"_profile": "https://production.api.apiture.com/schemas/common/root/v2.0.0/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/associations/apiDoc \
-H 'Accept: application/json' \
-H 'API-Key: API_KEY'
GET https://api.devbank.apiture.com/associations/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/associations/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/associations/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/associations/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/associations/apiDoc', params={
}, headers = headers)
print r.json()
URL obj = new URL("https://api.devbank.apiture.com/associations/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/associations/apiDoc", data)
req.Header = headers
client := &http.Client{}
resp, err := client.Do(req)
// ...
}
Return API definition document
GET https://api.devbank.apiture.com/associations/apiDoc
Return the OpenAPI document that describes this API.
Example responses
200 Response
{}
Responses
Status | Description |
---|---|
200 | OK |
OK | |
Schema: Inline |
Response Schema
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 |
association
{
"_profile": "https://production.api.apiture.com/schemas/associations/association/v1.0.0/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
},
"apiture:role": {
"href": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd"
},
"apiture:source": {
"href": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed"
},
"apiture:target": {
"href": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed"
}
},
"sourceUri": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"roleUri": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd",
"roleName": "primaryUser",
"targetUri": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_embedded": {
"source": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/accounts/account/v1.0.0/profile.json",
"type": "account",
"name": "Personal Checking",
"TODO": "Refine this example when Accounts API is defined."
},
"role": {
"_id": "c83790c9-8bcb-4754-a989-7a45342697cb",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account. For personal accounts, the primary user is also known as the account owner. For organization accounts, the organization is the \"owner\"; the primary user is the person who is granted administration permissions on the account, which includes managing permissions and roles of other users associated with the account.\nThere may be only one primary user."
},
"target": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/user/user/v1.0.0/profile.json",
"type": "user",
"firstName": "Bobette",
"middleName": "",
"lastName": "Wellphunded"
}
}
}
Association (v1.0.0)
Representation of an association between two resources. When used to create a new association, the request must contain links to the elements of the association: a role (apiture:role
) a source resource (apiture:source
) and a target resource (apiture:target
). In many cases, the target resource is a person or user; a source or target may be any resource.
Properties
Name | Description |
---|---|
Association (v1.0.0) | Representation of an association between two resources. When used to create a new association, the request must contain links to the elements of the association: a role ( apiture:role ) a source resource (apiture:source ) and a target resource (apiture:target ). In many cases, the target resource is a person or user; a source or target may be any resource. |
_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 objects which participate in this association |
» source | The source resource for this association. |
» role | The role for this association |
» target | The target resource for this association. |
_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 |
sourceUri | The URI of association source resource. |
roleUri | The URI of association role resource. |
roleName | The name of the role used to associate two resources. This is a derived value and is ignored on updates. |
targetUri | The URI of association target resource. |
attributes | Data attribute associated with the error, such as values or constraints. |
_id | The unique identifier for this association resource. This is an immutable opaque string. read-only |
createdAt | The date-time when the association was created. This is in ISO 8601 format, UTC. This is derived and immutable. read-only format: date-time |
associations
{
"_profile": "https://production.api.apiture.com/schemas/associations/associations/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/associations?start=10&limit=10"
},
"first": {
"href": "/associations/associations?start=0&limit=10"
},
"next": {
"href": "/associations/associations?start=20&limit=10"
},
"collection": {
"href": "/associations/associations"
}
},
"start": 10,
"limit": 10,
"count": 67,
"name": "associations",
"_embedded": {
"items": [
{
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_profile": "https://production.api.apiture.com/schemas/associations/association/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/associations/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"roleName": "primaryUser",
"_embedded": {
"role": {
"_id": "c83790c9-8bcb-4754-a989-7a45342697cb",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"name": "primaryUser",
"label": "primaryUser",
"description": "The account owner has full control across the account. For personal accounts, the orimary user is also known as the account owner. For organization accounts, the organization is the \"owner\"; the primary user is the person who is granted administration permissions on the account, which includes managing permissions and roles of other users associated with the account.\nThere may be only one primary user."
},
"target": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/users/user/v1.0.0/profile.json",
"type": "user",
"firstName": "Bobette",
"middleName": "",
"lastName": "Wellphunded"
},
"source": {
"_id": "4222e6e8-bd85-487e-8864-ec16a0b0d058",
"_profile": "https://production.api.apiture.com/schemas/accounts/account/v1.0.0/profile.json",
"type": "account",
"name": "Personal Checking"
}
}
}
]
}
}
Association Collection (v1.0.0)
Collection of associations. 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
).
Properties
Name | Description |
---|---|
Association Collection (v1.0.0) | Collection of associations. 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 ). |
_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. |
» items | array: An array containing a page of association items. items: object |
_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. |
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 |
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.0.0)
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.0.0) | 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. |
createAssociation
{
"sourceUri": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"roleUri": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd",
"roleName": "primaryUser",
"targetUri": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"_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"
}
}
}
Create Association (v1.0.0)
Representation used to create a new association.
Properties
Name | Description |
---|---|
Create Association (v1.0.0) | Representation used to create a new association. |
sourceUri | (required) The URI of association source resource. |
roleUri | (required) The URI of association role resource. |
roleName | The name of the role used to associate two resources. This is a derived value and is ignored on updates. |
targetUri | (required) The URI of association target resource. |
attributes | Data attribute associated with the error, such as values or constraints. |
_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 |
createRole
{
"name": "primaryUser",
"label": "Primary User",
"description": "The primary user on the account.\nThere may be only one primary user on an account.",
"_profile": "https://production.api.apiture.com/schemas/associations/summaryRole/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c"
}
Create Role (v1.0.0)
Representation used to create a new role.
Properties
Name | Description |
---|---|
Create Role (v1.0.0) | Representation used to create a new role. |
name | (required) The name of this role, for identification purposes, such as primaryOwner , beneficiary , authorizedSigner . Some roles have well-known uses in the platform.minLength: 1 maxLength: 128 |
label | (required) The text label for this role, for use in human presentation. This field may be localized. minLength: 1 maxLength: 128 |
description | A fuller description of this role. This field may be localized. minLength: 1 maxLength: 4096 |
_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 role resource. This is an immutable opaque string. read-only |
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.0.0/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": "The value for deposit must be greater than 0.",
"statusCode": 422,
"type": "positiveNumberRequired",
"attributes": {
"value": -125.5
},
"remediation": "Provide a value which is greater than 0",
"occurredAt": "2018-01-25T05:50:52.375Z",
"_links": {
"describedby": {
"href": "https://production.api.apiture.com/errors/positiveNumberRequired"
}
},
"_embedded": {
"errors": []
}
}
}
Error Response (v2.0.0)
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.0.0) | 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 |
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 |
role
{
"name": "primaryUser",
"label": "Primary User",
"description": "The account owner has full control across the account.\n\nThere may be only one primary user.",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"createdAt": "2018-02-01T13:07:01.375Z"
}
Role (v1.0.0)
Representation of a role resource. Roles are used to associate resources. The most common roles may be related to entitlements(users) but can also be applied to organizations or non-users (such as beneficiaries, payees, etc.).
Properties
Name | Description |
---|---|
Role (v1.0.0) | Representation of a role resource. Roles are used to associate resources. The most common roles may be related to entitlements(users) but can also be applied to organizations or non-users (such as beneficiaries, payees, etc.). |
name | The name of this role, for identification purposes, such as primaryOwner , beneficiary , authorizedSigner . Some roles have well-known uses in the platform.minLength: 1 maxLength: 128 |
label | The text label for this role, for use in human presentation. This field may be localized. minLength: 1 maxLength: 128 |
description | A fuller description of this role. This field may be localized. minLength: 1 maxLength: 4096 |
_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 role resource. This is an immutable opaque string. read-only |
createdAt | The date-time when the role was created. This is in ISO 8601 format, UTC. This is derived and immutable. read-only format: date-time |
roles
{
"_profile": "https://production.api.apiture.com/schemas/associations/roles/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles?start=10&limit=10"
},
"first": {
"href": "/associations/roles?start=0&limit=10"
},
"next": {
"href": "/associations/roles?start=20&limit=10"
},
"collection": {
"href": "/associations/roles"
}
},
"start": 10,
"limit": 10,
"count": 67,
"name": "roles",
"_embedded": {
"items": [
{
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"name": "primaryUser",
"label": "Primary User",
"description": "The primary user on the account.\nThere may be only one primary user on an account.",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
}
},
{
"_id": "1e0c734d-f0e7-4204-942d-222a860eed03",
"_profile": "https://production.api.apiture.com/schemas/associations/role/v1.0.0/profile.json",
"name": "beneficiary",
"label": "Beneficiary",
"description": "An account beneficiary.",
"_links": {
"self": {
"href": "/associations/roles/1e0c734d-f0e7-4204-942d-222a860eed03"
}
}
}
]
}
}
Role Collection (v1.0.0)
Collection of roles. 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
).
Properties
Name | Description |
---|---|
Role Collection (v1.0.0) | Collection of roles. 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 ). |
_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. |
» items | array: An array containing a page of role items. items: object |
_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. |
root
{
"_profile": "https://production.api.apiture.com/schemas/common/root/v2.0.0/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.0.0)
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.0.0) | 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. |
summaryAssociation
{
"sourceUri": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"roleUri": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd",
"roleName": "primaryUser",
"targetUri": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"_profile": "https://production.api.apiture.com/schemas/associations/summaryAssociation/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/associations/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c"
}
Association Summary (v1.0.0)
Summary representation of an association resource in associations collections.
Properties
Name | Description |
---|---|
Association Summary (v1.0.0) | Summary representation of an association resource in associations collections. |
sourceUri | (required) The URI of association source resource. |
roleUri | (required) The URI of association role resource. |
roleName | The name of the role used to associate two resources. This is a derived value and is ignored on updates. |
targetUri | (required) The URI of association target resource. |
attributes | Data attribute associated with the error, such as values or constraints. |
_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 association resource. This is an immutable opaque string. read-only |
summaryRole
{
"name": "primaryUser",
"label": "Primary User",
"description": "The primary user on the account.\nThere may be only one primary user on an account.",
"_profile": "https://production.api.apiture.com/schemas/associations/summaryRole/v1.0.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c"
}
Role Summary (v1.0.0)
Summary representation of a role resource in roles collections. This representation normally does not contain any _embedded
objects. If needed, call the GET
operation on the item's self
link to get _embedded
objects.
Properties
Name | Description |
---|---|
Role Summary (v1.0.0) | Summary representation of a role resource in roles collections. This representation normally does not contain any _embedded objects. If needed, call the GET operation on the item's self link to get _embedded objects. |
name | The name of this role, for identification purposes, such as primaryOwner , beneficiary , authorizedSigner . Some roles have well-known uses in the platform.minLength: 1 maxLength: 128 |
label | The text label for this role, for use in human presentation. This field may be localized. minLength: 1 maxLength: 128 |
description | A fuller description of this role. This field may be localized. minLength: 1 maxLength: 4096 |
_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 role resource. This is an immutable opaque string. read-only |
updateAssociation
{
"_profile": "https://production.api.apiture.com/schemas/associations/updateAssociation/v1.1.0/profile.json",
"_links": {
"self": {
"href": "https://api.devbank.apiture.com/applications/application/328f6bf6-d762-422f-a077-ab91ca4d0b6f"
}
},
"sourceUri": "/accounts/accounts/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"roleUri": "/associations/roles/e4f09b4d-eba6-46da-86d3-ba28595067cd",
"roleName": "primaryUser",
"targetUri": "/users/users/540f4849-0df4-4fbc-b987-6ad1f29998ed",
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c"
}
Update Association (v1.1.0)
Representation used to update or patch an association.
Warning: The schema updateAssociation
was deprecated on version v0.8.0
of the API. Use association
schema instead. updateAssociation
will be removed on version v0.9.0
of the API.
deprecated
Properties
Name | Description |
---|---|
| Representation used to update or patch an association. Warning: The schema updateAssociation was deprecated on version v0.8.0 of the API. Use association schema instead. updateAssociation will be removed on version v0.9.0 of the API.deprecated: true |
_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 |
sourceUri | The URI of association source resource. |
roleUri | The URI of association role resource. |
roleName | The name of the role used to associate two resources. This is a derived value and is ignored on updates. |
targetUri | The URI of association target resource. |
attributes | Data attribute associated with the error, such as values or constraints. |
_id | The unique identifier for this association resource. This is an immutable opaque string. read-only |
updateRole
{
"name": "primaryUser",
"label": "primary user",
"description": "The primary user for this account.",
"_profile": "https://production.api.apiture.com/schemas/associations/updateRole/v1.1.0/profile.json",
"_links": {
"self": {
"href": "/associations/roles/0399abed-fd3d-4830-a88b-30f38b8a365c"
}
},
"_id": "0399abed-fd3d-4830-a88b-30f38b8a365c"
}
Update Role (v1.1.0)
Representation used to update or patch a role.
Warning: The schema updateRole
was deprecated on version v0.8.0
of the API. Use role
schema instead. updateRole
will be removed on version v0.9.0
of the API.
deprecated
Properties
Name | Description |
---|---|
| Representation used to update or patch a role. Warning: The schema updateRole was deprecated on version v0.8.0 of the API. Use role schema instead. updateRole will be removed on version v0.9.0 of the API.deprecated: true |
name | The name of this role, for identification purposes, such as primaryOwner , beneficiary , authorizedSigner . Some roles have well-known uses in the platform.minLength: 1 maxLength: 128 |
label | The text label for this role, for use in human presentation. This field may be localized. minLength: 1 maxLength: 128 |
description | A fuller description of this role. This field may be localized. minLength: 1 maxLength: 4096 |
_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 role resource. This is an immutable opaque string. read-only |
@apiture/api-doc
3.2.4 on Mon Oct 28 2024 14:41:03 GMT+0000 (Coordinated Universal Time).