Root Resource

This is the main entry point for the REST API. From here you can navigate the REST API via the provided HATEOAS links.

List Resources

Return a list of available resource endpoints.

GET /rest

Response

{
   "_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"
       },
   ]
}

HTTP Status Codes

Status Code Description
200 OK No error, operation successful
403 FORBIDDEN Authentication failure

Table Of Contents

Previous topic

Certificates

Next topic

Store Resource