Read Request

Get a collection request by ID

GET /di/collection-request/{id}

Path parameters

ParamRequiredDescription
idYesCollection request ID

Example

Production:

curl 'https://api.qidpro.xyz/di/collection-request/6ecb23iadf2342304' \
  --header 'Authorization: Bearer your-secret-key' \
  --header 'tokenId: your-token-id'

Staging:

curl 'https://staging.qidpro.xyz/di/collection-request/6ecb23iadf2342304' \
  --header 'Authorization: Bearer your-secret-key' \
  --header 'tokenId: your-token-id'

Example response

{
  "_id": "69ae919d383217210dca57a8",
  "account_id": "65df6943fdfc8d36890575d7",
  "title": "Check-In for Indian Guest",
  "participantList": [
    {
      "email": "[email protected]"
    }
  ],
  "minimumParticipants": 1,
  "maximumParticipants": 1,
  "shareStatus": "open",
  "createTime": "2026-03-09T09:23:41.630Z",
  "shareId": "69ae9560ba7f6726e85f60ca",
  "template": {
    "_id": "68f3c241c222712d98c925c5",
    "purpose": "Check-In for Indian Guest"
  }
}

Once a share is created, use the shareId to read the share.


Did this page help you?