GET /notes

At least one of the following query parameters is required: casting_id, booking_id, model_id, contact_id

Query parameters

  • casting_id integer(int32)

    ID of casting to return notes for

  • booking_id integer(int32)

    ID of booking to return notes for

  • model_id integer(int32)

    ID of model to return notes for

  • package_id integer(int32)

    ID of package to return notes for

Responses

  • 200 application/json

    An array of notes

  • 400 application/json

    Validation error occurred

    Hide response attributes Show response attributes object
    • code integer(int32) Required
    • message string Required
  • 500 application/json

    An unexpected error occurred

    Hide response attributes Show response attributes object
    • code integer(int32) Required
    • message string Required
GET /notes
curl \
 --request GET 'https://*.syngency.com/admin/api/notes'
Response examples (200)
[
  [
    []
  ]
]
Response examples (400)
{
  "code": 42,
  "message": "string"
}
Response examples (500)
{
  "code": 42,
  "message": "string"
}