The KPI frequencies determine the KPI data entry frequency.
The object has the following properties:
| Name | Type | Read Only | Mandatory | Max Len. | Notes |
|---|---|---|---|---|---|
| id | integer | yes | no | Internal id | |
| name | string | yes | no | The name of the frequency |
{
"id": "D",
"name": "Daily"
}
<KPIFrequency xmlns="http://schemas.datacontract.org/2004/07/Waytobi.App.Api.Models"
xmlns:i="http://www.w3.org/2001/XMLSchema-instance">
<id>D</id>
<name>Daily</name>
</KPIFrequency>
GET /api/kpifrequencies
curl https://app.waytobi.com/api/kpifrequencies
-v -u {token}
Status: 200 OK
[
{
"id": "D",
"name": "Daily"
},
{
"id": "W",
"name": "Weekly"
}
]
GET /api/kpifrequencies/{id}
curl https://app.waytobi.com/api/kpifrequencies/{id}
-v -u {token}
Status: 200 OK
{
"id": "D",
"name": "Daily"
}
Looking for anything specific article which resides in general queries? Just browse the various relevant folders and categories and then you will find the desired article.
Contact Us