Creating test account
To create a test account, you must have an access account. For our test environment you can create an account via API.
http
POST /v1/create-account HTTP/1.1
Host: sandbox.tristarexpress.com
Content-Type: x-www-form-urlencoded
Accept: application/json
name=John Doe&email=john.doe%40example.com&password=123456
Parameters:
| Property | Required | Type | Description |
|---|---|---|---|
| name | Y | String | Your name |
| Y | String | Your email | |
| password | Y | String | A strong password |
Response:
json
{
"id": 1,
"bearer_token": "1|mRxEle6EDfp4mtS4LwSMvPZt8OdAMBxEMY3CTtMm"
}
Store the property "bearer_token", it will be used to authenticate the requests.

