This is the main entry point for the REST API. From here you can navigate the REST API via the provided HATEOAS links.
Return a list of available resource endpoints.
GET /rest
{
"_links":
[
{
"href": "https://d9tready.com/rest/stores",
"rel": "stores"
},
{
"href": "https://d9tready.com/rest/applications",
"rel": "applications"
},
{
"href": "https://d9tready.com/rest/privatekeys",
"rel": "privatekeys"
},
{
"href": "https://d9tready.com/rest/balances",
"rel": "balances"
},
{
"href": "https://d9tready.com/rest/certificates",
"rel": "certificates"
},
{
"href": "https://d9tready.com/rest/invoices",
"rel": "invoices"
},
{
"href": "https://d9tready.com/rest/profiles",
"rel": "profiles"
},
]
}
| Status Code | Description |
|---|---|
| 200 OK | No error, operation successful |
| 403 FORBIDDEN | Authentication failure |