GET api/groups/{groupid}/groupplans/{groupplanid}/perdiems/{perdiemid}/perdiemrates
Gets a collection of per diem rates for a per diem resource
Request Information
URI Parameters
| Name | Description | Type | Additional information |
|---|---|---|---|
| groupid |
Group identifier |
integer |
Required |
| groupplanid |
Group Plan identifier |
integer |
Required |
| perdiemid |
Per Diem identifier |
integer |
Required |
Body Parameters
None.
Response Information
Resource Description
A list of per diem rates
Collection of PerDiemRateModel| Name | Description | Type | Additional information |
|---|---|---|---|
| PerDiemNo |
Gets or sets the identifier for the Per Diem associated with this Per Diem Rate |
integer |
None. |
| EffectiveStartDate |
Gets or sets the effective start date of the per diem rate |
date |
None. |
| Rate |
Gets or sets the rate |
decimal number |
None. |
| Url |
Gets or sets the link representing a link back to the resource |
string |
None. |
| ID |
Gets or sets the identifier for the resource |
integer |
None. |
Response Formats
application/json, text/json, application/json-patch+json
Sample:
[
{
"url": "sample string 2",
"id": 3,
"perDiemNo": 1,
"effectiveStartDate": "2025-12-09T19:21:49.1852523-06:00",
"rate": 1.0
},
{
"url": "sample string 2",
"id": 3,
"perDiemNo": 1,
"effectiveStartDate": "2025-12-09T19:21:49.1852523-06:00",
"rate": 1.0
}
]