account_*

account_get

Get your account information.

Parameters

Name Type Default Description
token string none Your API token

Example Response

{
  "status": "success",
  "code": 0,
  "data": {
    "id": 1,
    "name": "Thuan",
    "timezone": "America\/New_York",
    "plan": "Business",
    "dailyExec": 50000,
    "memberLimit": 5,
    "expiryDate": "2023-10-14"
  }
}            

account_edit

Update your account settings, currently we only support changing account's timezone.

Parameters

Name Type Default Description
token string none Your API token
timezone string none Account's timezone

Example Response

{
  "status": "success",
  "code": 0,
  "data": {
    "id": 1,
    "name": "Thuan",
    "timezone": "America\/New_York",
    "plan": "Business",
    "dailyExec": 50000,
    "memberLimit": 5,
    "expiryDate": "2023-10-14"
  }
}            

account_secret

Set a secret parameter to your account. When your cronjob runs, the keyword __secret__ in URL, POST data, HTTP headers will be replaced with this.

Parameters

Name Type Default Description
token string none Your API token
secret string none The secret parameter

Example Response

{
  "status": "success",
  "code": 0,
  "data": {
    "id": 1,
    "name": "Thuan",
    "timezone": "America\/New_York",
    "plan": "Business",
    "dailyExec": 50000,
    "memberLimit": 5,
    "expiryDate": "2023-10-14"
  }
}