PUT /notes/{note_id}

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

Path parameters

  • note_id integer(int32) Required

    ID of note to update

Query parameters

  • casting_id integer(int32)

    ID of casting to assign note to

  • booking_id integer(int32)

    ID of booking to assign note to

  • model_id integer(int32)

    ID of model to assign note to

  • package_id integer(int32)

    ID of package to assign note to

Responses

  • 200 application/json

    Note updated successfully

  • 400 application/json

    A 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
PUT /notes/{note_id}
curl \
 --request PUT 'https://*.syngency.com/admin/api/notes/{note_id}'
Response examples (200)
[
  [
    []
  ]
]
Response examples (400)
{
  "code": 42,
  "message": "string"
}
Response examples (500)
{
  "code": 42,
  "message": "string"
}