Wallets, Accounts, Addresses
Returns a list of wallets for the connection.
Cursor for pagination. Use the next cursor from previous response to get next page
Number of records to return per page
Field to order results by
Set to "true" or "1" for descending order
The provider connection through which the resource is accessed
GET /v1/provider/wallets HTTP/1.1
Host: auth.armory.playnarval.com
detached-jws: YOUR_API_KEY
x-client-id: text
Accept: */*
{
"data": [
{
"accounts": [
{
"accountId": "text",
"addresses": [
{
"accountId": "text",
"address": "text",
"addressId": "text",
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"externalId": "text",
"provider": "anchorage",
"updatedAt": null
}
],
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"externalId": "text",
"label": "text",
"networkId": "text",
"provider": "anchorage",
"updatedAt": null,
"walletId": "text"
}
],
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"externalId": "text",
"label": "text",
"provider": "anchorage",
"updatedAt": null,
"walletId": "text"
}
],
"page": {
"next": "text"
}
}
Returns a specific wallet by ID.
The ID of the wallet to retrieve
The provider connection through which the resource is accessed
GET /v1/provider/wallets/{walletId} HTTP/1.1
Host: auth.armory.playnarval.com
detached-jws: YOUR_API_KEY
x-client-id: text
Accept: */*
{
"data": {
"accounts": [
{
"accountId": "text",
"addresses": [
{
"accountId": "text",
"address": "text",
"addressId": "text",
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"externalId": "text",
"provider": "anchorage",
"updatedAt": null
}
],
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"externalId": "text",
"label": "text",
"networkId": "text",
"provider": "anchorage",
"updatedAt": null,
"walletId": "text"
}
],
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"externalId": "text",
"label": "text",
"provider": "anchorage",
"updatedAt": null,
"walletId": "text"
}
}
Returns a list of accounts for the connection.
Cursor for pagination. Use the next cursor from previous response to get next page
Number of records to return per page
Field to order results by
Set to "true" or "1" for descending order
The provider connection through which the resource is accessed
GET /v1/provider/accounts HTTP/1.1
Host: auth.armory.playnarval.com
detached-jws: YOUR_API_KEY
x-client-id: text
Accept: */*
{
"data": [
{
"accountId": "text",
"addresses": [
{
"accountId": "text",
"address": "text",
"addressId": "text",
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"externalId": "text",
"provider": "anchorage",
"updatedAt": null
}
],
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"externalId": "text",
"label": "text",
"networkId": "text",
"provider": "anchorage",
"updatedAt": null,
"walletId": "text"
}
],
"page": {
"next": "text"
}
}
Returns a specific account by ID.
The ID of the account to retrieve
The provider connection through which the resource is accessed
GET /v1/provider/accounts/{accountId} HTTP/1.1
Host: auth.armory.playnarval.com
detached-jws: YOUR_API_KEY
x-client-id: text
Accept: */*
{
"data": {
"accountId": "text",
"addresses": [
{
"accountId": "text",
"address": "text",
"addressId": "text",
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"externalId": "text",
"provider": "anchorage",
"updatedAt": null
}
],
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"externalId": "text",
"label": "text",
"networkId": "text",
"provider": "anchorage",
"updatedAt": null,
"walletId": "text"
}
}
Returns a list of addresses for the connection.
Cursor for pagination. Use the next cursor from previous response to get next page
Number of records to return per page
Field to order results by
Set to "true" or "1" for descending order
The provider connection through which the resource is accessed
GET /v1/provider/addresses HTTP/1.1
Host: auth.armory.playnarval.com
detached-jws: YOUR_API_KEY
x-client-id: text
Accept: */*
{
"data": [
{
"accountId": "text",
"address": "text",
"addressId": "text",
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"externalId": "text",
"provider": "anchorage",
"updatedAt": null
}
],
"page": {
"next": "text"
}
}
Returns a specific address by ID.
The ID of the address to retrieve
The provider connection through which the resource is accessed
GET /v1/provider/addresses/{addressId} HTTP/1.1
Host: auth.armory.playnarval.com
detached-jws: YOUR_API_KEY
x-client-id: text
Accept: */*
{
"data": [
{
"accountId": "text",
"address": "text",
"addressId": "text",
"clientId": "text",
"connectionId": "text",
"createdAt": null,
"externalId": "text",
"provider": "anchorage",
"updatedAt": null
}
],
"page": {
"next": "text"
}
}
Last updated