Account

Account Information

GET /v1/account/information

NOTE

Don't include trailing slash / at the end of the endpoint. Doing so can result in a "not found" error.

INFO

Retrieve unique identification information associated with your account.

Response Parameters

ParameterTypeComments
statusCodenumber200
resultobjectResult object
result.uuidstringUnique user identification string
messagestringResponse message

Request Example

GET /v1/account/information HTTP/1.1
Host: api.heatmex.com
X-HEATMEX-SIGN: XXXXX
X-HEATMEX-API-KEY: XXXXX
Content-Type: application/json

Response Example

{
  "statusCode": 200,
  "result": {
    "uuid": "46964150"
  },
  "message": "OK"
}

On this page