Get panel brands
Path: /dictionaries/panel_brands.json
Example: https://www.greendeal.com.au/rapi/v1/dictionaries/panel_brands.json
HTTP Method: GET
Request Parameter
Parameter | Type | Is Required? | Description | Example |
brand_id | Int | No | When brand_id not provided, default returns records for all brand | 2648 |
Response
Parameter | Type | Description |
brand_id | Int | |
text | String | panel brand(eg:Canadian Solar Inc) |
id | String | model number of panel (eg:CS6K-255P-SD) |
expiry_date | String | expiry date(eg:2025-03-30) |
Request One Example
{
"client_id": "23565656e63f33016ad7f4f338a6f70be78c136addbbb9c803d09756c6ee93f1",
"signature": "2dc1b977b376a2fd26bf05c1f15da59b",
"timestamp": "2019-08-02T10:31:50+11:00",
"brand_id": 4480
}
Response One Example
{
"message": "success",
"code": 200,
"response": {
"body": {
"id": "YL360CG2536F-2 1/2",
"text": "Yingli Energy China Co Ltd",
"brand_id": 4480,
"expiry_date":"2025-03-30"
}
}
}
Request All Example
{
"client_id": "23565656e63f33016ad7f4f338a6f70be78c136addbbb9c803d09756c6ee93f1",
"signature": "2dc1b977b376a2fd26bf05c1f15da59b",
"timestamp": "2019-08-02T10:31:50+11:00"
}
Response All Example
{
"message": "success",
"code": 200,
"response": {
"body": [
...
{
"id": "YL360CG2536F-2 1/2",
"text": "Yingli Energy China Co Ltd",
"brand_id": 4480,
"expiry_date":"2025-03-30"
},
...
]
}
}