Date

List Dates Custom Properties

This endpoint allows you to retrieve all date custom properties

Custom properties are key-value pairs that can be associated with dates to store additional information. They can be used to filter, sort, and group dates based on their values.

get/2/etickets/dates/custom-properties

Query parameters

withstring

Optional : Allows loading additional data about a resource, which may include related resources.

idsinteger[] nullable
name_valuesstring[] nullable
period_idsinteger[] nullable
searchstring nullable
group_by'"name"' | '"name_value"' | '"value"' nullable
order_forstring[]

Response

OK

result'success' | 'error' | 'asynchronous' required

Result of the HTTP request

Example response

{
  "result": "success",
  "data": [
    {
      "id": 1332,
      "name": "Category",
      "value": "Amusement",
      "name_value": "Category / Amusement"
    }
  ]
}

Changes