API Request
api/v3
To construct a REST API request, combine the following components:
Component
Description
HTTP Method
GET
. Requests data from resource.
POST
. Submits data to a resource.
URL to API
http://{address}:{port}/api/
.
URI to resource
The resource to query, submit data to, update, or delete information. For example, v3/address
HTTP request header
Required for operations with request body.
Generally, 'Content-Type: application/json'
is used.
JSON request body
Required for most operations.
This sample queries a specific address:
Last updated
Was this helpful?