Gift notes V2 endpoints (Public Preview)

Gift notes endpoints are now available as a public preview in the Gift V2 API. These endpoints allow you to manage notes on a gift record, including:

  • Get a paginated list of notes for a gift
  • Get a single note by ID
  • Create a note on a gift
  • Edit an existing note
  • Delete a note

OperationId

Route

GetGiftNotes

GET /v2/gifts/{gift_id}/notes

CreateGiftNote

POST /v2/gifts/{gift_id}/notes

GetGiftNoteById

GET /v2/gifts/{gift_id}/notes/{note_id}

EditGiftNote

PATCH /v2/gifts/{gift_id}/notes/{note_id}

DeleteGiftNote

DELETE /v2/gifts/{gift_id}/notes/{note_id}

For more information, see the Gift V2 API endpoint reference.

Categories