Skip to main content
POST
/
organisations
/
{orgId}
/
workspaces
/
{workspaceId}
/
feedback-document
Upload feedback document
curl --request POST \
  --url https://api.meetsquad.ai/organisations/{orgId}/workspaces/{workspaceId}/feedback-document \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '
{
  "fileName": "report.pdf",
  "source": "interview"
}
'
{
  "data": {
    "uploadUrl": "https://example.com/documents/doc_123?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=..."
  }
}

Authorizations

Authorization
string
header
required

JWT authentication for organization-scoped endpoints.

Path Parameters

orgId
string
required

Organization ID

workspaceId
string
required

Workspace ID

Body

application/json

Feedback document upload request

fileName
string
required

Name of the document to upload

Example:

"report.pdf"

source
string

Source of the document

Example:

"interview"

Response

Document uploaded successfully

Uploaded document information

data
object
required