Getting Started

GreenDeal Open API

Programmatic access to STC job management for solar retailers and installers — create, retrieve, update and delete jobs and pull public scheme information over a simple authenticated REST interface.

Server Information

Account — Please retrieve your Client_ID and Secret from Retail Portal > Settings > APP Credentials.

Rate Limits

The rate limit of the endpoint is 3000 requests/hour. When an application exceeds the rate limit for a given GreenDeal API endpoint, the following error message will be returned in the response body:

{"code": 429, "error": "Rate limit exceeded"}

Request Parameter

For every web service call, following parameters must be present in the request.

ParameterTypeIs Required?Description
client_idStringYesassign client_id to app
timestampStringYesFormat is yyyy-MM-ddTHH:mm:ss:z, for example: 2016-01-01T12:00:00+11:00. The maximum time error that the API server allowed is 10 minutes.
signatureStringYesPlease see Signature Algorithm section for working out the value of the signature.

Signature Algorithm

For every request, we will need to have a 'signature' parameter in it for the authentication. Server will reject the request if the signature value failed in the validation.

  1. Append client_id, timestamp, client_secret in a string, with the appendix of "GD:" — e.g. signature_string = "GD:" + client_id + timestamp + client_secret
  2. Encrypt the signature_string from the step above, e.g. md5(signature_string).
  3. MD5 uses a 128-bit length digest algorithm, which is expressed in hexadecimal. A hexadecimal character can represent 4 bits, so the signed character length is fixed to 32 hexadecimal characters.
Signature Example
client = 'uid7'
timestamp = '2018-11-04T22:49:36+11:00'
client_secret = 'secret7'
signature_string = "GD:uid72018-11-04T22:49:36+11:00secret7"
response from MD5:
signature = b1dd868452f87473b91131e7a58e044a

Endpoints

By clicking "Accept All Cookies", you agree to the storing of cookies on your device to enhance site navigation, analyze site usage, and assist in our marketing efforts. Further information about our use of cookies and similar technologies can be found in our cookie policy .

Copyright ©2026, GreenDeal. All Rights Reserved