# Get campaign notes Retrieve campaign notes for a specific campaign Endpoint: GET /api/v2/campaigns/notes Version: 2.0.0 Security: JWTAuth ## Query parameters: - `campaign_id` (integer, required) The ID of the campaign ## Response 200 fields (application/json): - `error` (boolean) Flag to indicate an error. - `messages` (array) An array of messages related to the request. - `pagination` (object) Pagination information. - `data` (object) The campaign notes data - `data.campaign_id` (integer) The ID of the campaign Example: 654321 - `data.writer_instructions` (string) Instructions for the writer Example: "instructions for the writer" - `data.additional_instructions` (string) Additional instructions for the writer Example: "additiona instructions for the writer" - `data.created_at` (string) Timestamp when the notes were created Example: "2024-03-15T10:30:00Z" - `data.updated_at` (string) Timestamp when the notes were last updated Example: "2024-03-15T10:30:00Z" ## Response 400 fields (application/json): - `error` (boolean) Example: true - `messages` (array) - `pagination` (object) - `data` (object) ## Response 401 fields (application/json): - `error` (boolean) Example: true - `messages` (array) - `pagination` (object) - `data` (object)