Feedback Forms

Feedback Forms capture feedback on Matches where the conversation did take place.

Some of the endpoints will support pagination.

Retrieve a list of Feedback Forms

GET https://api.orbiit.ai/v0/workspaces/:workspaceId/feedback-forms

This endpoint supports pagination

.

Path Parameters

Name
Type
Description

workspaceId*

String

Query Parameters

Name
Type
Description

engagementIds

String

Comma-separated string to filter on specific Engagements

memberIds

String

Comma-separated string to filter on specific Members

matchIds

String

Comma-separated string to filter on specific Matches

// Sample response
{
  "totalCount": 310,
  "pageInfo": {
    "hasNextPage": true,
    "hasPreviousPage": false,
    "startCursor": "eyJpZCI6I...",
    "endCursor": "eyJpZCI6..."
  },
  "results": [
    {
      "id": "6b7967723770373971357839",
      "createdAt": "1999-12-31T14:20:16.000Z",
      "engagementId": "6d7331396e70647334627430",
      "matchId": "346b7968377871743335346c",
      "memberId": "393866616c3277697a793271",
      "optInFormId": "34787032626a63747562616b",
      "fields": {
        "nps": 4,
        "matchRating": 2,
        "testimonial": "I liked the way we can benefit from each other's career journey even though we have not been connected before.",
        "advice": "Qui possimus voluptas molestiae pariatur consectetur. Illo rerum earum officia sed iure consequuntur. Consequatur a est odit. Est magnam dolorem cum accusamus aliquid est."
      }
    },
  ],
}

Last updated