Skip to main content
GET
/
allocations
/
{id}
/
dates
Get allocation dates
curl --request GET \
  --url https://www.ruddr.io/api/workspace/allocations/{id}/dates \
  --header 'Authorization: Bearer <token>'
{
  "results": [
    {
      "date": "2026-03-03",
      "hours": 2.0408163265306123,
      "costCurrency": "USD",
      "costPerHour": 50,
      "isWorkingDay": true
    }
  ],
  "hasMore": false
}
A resource allocation for a member or placeholder.

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The allocation uuid

Query Parameters

start
string<date>

A filter in the format YYYY-MM-DD. This will match dates on and after (>=) the date specified. If only end is provided, start will default to 1000 days before end.

end
string<date>

A filter in the format YYYY-MM-DD. This will match dates on and before (<=) the date specified.

Response

200

results
object[]
hasMore
boolean

Whether there are more results available after this page.