Skip to Content
DocsAPISurvey List

Survey List

Retrieve all survey questionnaires your organization has authored, including ordered question metadata.

Endpoint

  • GET: /api/v2/organizations/:organization_id/surveys

Response Example

{ "success": true, "surveys": [ { "id": 42, "name": "Monthly Satisfaction", "default_questionnaire": false, "question_count": 3, "questions": [ { "id": 101, "content": "How was the meeting?", "position": 1 }, { "id": 102, "content": "Would you recommend us?", "position": 2 } ], "created_at": "2025-03-01T14:04:32Z", "updated_at": "2025-03-05T09:17:11Z" } ] }

Notes

  • Results are ordered by created_at DESC.
  • Questions respect the persisted position ordering so you can render the survey exactly as authored.*** End Patch
Last updated on