# Trip Notes ## Create a note for agents - [POST /v2/trips/{tripId}/agent-notes](https://developer.spotnana.com/openapi/tripapi/trip-notes/createagentnote.md): Creates a note addressed to the agents assigned for a specific trip. Agent notes are used to communicate trip-related information to agents handling the trip, such as special instructions, updates made on the booking, or any unresolved issues reported by the traveler. Use this endpoint to: - Add a note to a trip so the agents working on it will have all the latest information about the trip. - Use the optional pnrId field in the request body to link a note to a specific PNR within a trip. ## Read all agent notes for a trip - [GET /v2/trips/{tripId}/agent-notes](https://developer.spotnana.com/openapi/tripapi/trip-notes/listagentnotes.md): Retrieves all agent notes associated with a specific trip. Each note in the response includes the message, the sender's basic information, and timestamps. Use this endpoint to: - Review the full history of agent notes added to a trip. - Identify who created each note and when, using the senderInfo, createdAt, and updatedAt fields. Note: The response may contain a pnrId if it was added during the note creation. Otherwise, the pnrId field is omitted in the response. ## Delete an agent note - [DELETE /v2/trips/{tripId}/agent-notes/{noteId}](https://developer.spotnana.com/openapi/tripapi/trip-notes/deleteagentnote.md): Deletes an existing agent note from a trip. Once deleted, the note cannot be retrieved later. Use this endpoint to: - Remove an agent note that is no longer relevant or was added by mistake.