Wash plan impact¶
Get wash plan impact in daily.
Request Format¶
METHOD {URI-scheme}://{apigw-address}/solar-api/{version}/analyticsService/getWashPlanImpact
Request Parameters¶
Name | Location | Required | Datatype | Description |
---|---|---|---|---|
token | Query | false | String | token, required when user account calls Solar API |
orgId | Query | false | String | orgnization Id, required when service account calls Solar API |
siteId | Query | true | String | site id |
Response Parameters¶
Name | Datatype | Description |
---|---|---|
siteId | String | site id |
zoneId | String | soiling zone id |
day | String | date, format: MM-dd |
washCount | Int | wash counts |
rainQuantity | Double | rain quantity in mm |
soilingLossWithoutWash | Double | soiling loss without wash |
soilingLoss | Double | soiling loss with wash |
Error Codes¶
See Common response code.
Example¶
Request Example¶
GET
https://{apigw-address}/solar-api/v1.0/analyticsService/getWashPlanImpact?siteId=Lnxxxxxs&token=APP_PORTAL_S_P3HKyz7Qpk7FUwSxxxxxxxv3M86n4ZZ
Response Example¶
{
"data": [
{
"siteId": "193a2470ca43c000",
"zoneId": "group1",
"washCount": 5,
"day": "01-01",
"rainQuantity": 10.0,
"soilingLossWithoutWash": 100.0,
"soilingLoss": 90.0
}
],
"status": 0,
"msg": "success"
}