Get Period

This endpoint retrieves a specific period by its ID.

GET/Period/GetPeriod

Authorization

AuthorizationRequiredBearer <token>

Authorization header using the Bearer scheme. Example: "Bearer {token}"

In: header

Query Parameters

PeriodIdstring

The ID of the period to be retrieved.

Format: "uuid"
curl -X GET "https://example.com/Period/GetPeriod?PeriodId=497f6eca-6276-4993-bfeb-53cbbbba6f08" \
  -H "Authorization: Bearer <token>"

Returns the period if found.

{
  "id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
  "name": "string",
  "startDate": "2019-08-24T14:15:22Z",
  "endDate": "2019-08-24T14:15:22Z"
}