cURL
curl --request GET \
--url 'https://app.floral.so/api/v1/workspaces/acme-nordic/events/42/participants/0f8b6c1e-3a52-4d6e-9b7a-2c4e5f6a7b8c/restricted-responses' \
--header 'Authorization: Bearer $FLORAL_TOKEN'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.floral.so/api/v1/workspaces/{workspaceSlug}/events/{eventId}/participants/{participantId}/restricted-responses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"restrictedResponses": {
"participantId": "0f8b6c1e-3a52-4d6e-9b7a-2c4e5f6a7b8c",
"responses": {
"dietary_requirements": {
"answeredAt": "2026-09-02T10:20:00.000Z",
"value": "Vegetarian"
}
},
"version": "v1.eyJpZCI6IjBmOGI2YzFlLTNhNTItNGQ2ZS05YjdhLTJjNGU1ZjZhN2I4YyIsInJlc291cmNlIjoicGFydGljaXBhbnQiLCJ2ZXJzaW9uIjoiMiJ9"
}
}{
"error": {
"code": "INVALID_INPUT",
"message": "The request contains invalid values.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "UNAUTHENTICATED",
"message": "A valid bearer credential is required.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "FORBIDDEN",
"message": "The credential does not grant this operation.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "The resource was not found.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Too many requests. Retry shortly.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "An unexpected error occurred.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}Event participants
Get restricted participant answers
Get a participant’s answers to restricted, logistics-sensitive registration fields. Only the event organiser or a workspace admin can read them; other members receive 403.
GET
https://app.floral.so
/
api
/
v1
/
workspaces
/
{workspaceSlug}
/
events
/
{eventId}
/
participants
/
{participantId}
/
restricted-responses
cURL
curl --request GET \
--url 'https://app.floral.so/api/v1/workspaces/acme-nordic/events/42/participants/0f8b6c1e-3a52-4d6e-9b7a-2c4e5f6a7b8c/restricted-responses' \
--header 'Authorization: Bearer $FLORAL_TOKEN'const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://app.floral.so/api/v1/workspaces/{workspaceSlug}/events/{eventId}/participants/{participantId}/restricted-responses', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"restrictedResponses": {
"participantId": "0f8b6c1e-3a52-4d6e-9b7a-2c4e5f6a7b8c",
"responses": {
"dietary_requirements": {
"answeredAt": "2026-09-02T10:20:00.000Z",
"value": "Vegetarian"
}
},
"version": "v1.eyJpZCI6IjBmOGI2YzFlLTNhNTItNGQ2ZS05YjdhLTJjNGU1ZjZhN2I4YyIsInJlc291cmNlIjoicGFydGljaXBhbnQiLCJ2ZXJzaW9uIjoiMiJ9"
}
}{
"error": {
"code": "INVALID_INPUT",
"message": "The request contains invalid values.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "UNAUTHENTICATED",
"message": "A valid bearer credential is required.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "FORBIDDEN",
"message": "The credential does not grant this operation.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "NOT_FOUND",
"message": "The resource was not found.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "RATE_LIMITED",
"message": "Too many requests. Retry shortly.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}{
"error": {
"code": "INTERNAL_ERROR",
"message": "An unexpected error occurred.",
"requestId": "550e8400-e29b-41d4-a716-446655440000"
}
}Authorizations
Authenticate with a workspace-pinned Floral personal access token.
Headers
Optional caller-generated correlation ID. Floral returns the effective value in X-Request-ID.
Required string length:
1 - 128Path Parameters
Slug of the workspace pinned to the credential.
Required string length:
1 - 100Pattern:
^[a-z0-9]+(?:-[a-z0-9]+)*$Stable numeric event ID.
Required range:
x >= 1Stable participant UUID.
Response
Successful response
Show child attributes
Show child attributes
