Fill rate, gaps, and response-time stats for a signup
Aggregates participant + slot + item data into a single snapshot. Recomputed live per call — fine for dashboards but call sparingly. Numbers are accurate to the latest registration.
Aggregates participant + slot + item data into a single snapshot. Recomputed live per call — fine for dashboards but call sparingly. Numbers are accurate to the latest registration.
Authorization
ApiKey Long-lived org-scoped API key. Generate one from your account dashboard. Pass as Authorization: Bearer sgn_live_….
In: header
Path Parameters
uuidResponse Body
application/json
application/problem+json
application/problem+json
application/problem+json
application/problem+json
curl -X GET "https://example.com/signups/497f6eca-6276-4993-bfeb-53cbbbba6f08/analytics"{
"eventId": "d6703cc8-9e79-415d-ac03-a4dc7f6ab43c",
"participantCount": 0,
"quantityCommitted": 0,
"fillRate": {
"capacity": 0,
"ratio": 0
},
"slots": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"title": "string",
"capacity": 0,
"registered": 0,
"ratio": 0
}
],
"items": [
{
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"name": "string",
"needed": 0,
"claimed": 0,
"ratio": 0
}
],
"gaps": [
{
"kind": "slot",
"id": "497f6eca-6276-4993-bfeb-53cbbbba6f08",
"label": "string",
"shortBy": 1
}
],
"responseTime": {
"firstRegistrationAt": "2019-08-24T14:15:22Z",
"lastRegistrationAt": "2019-08-24T14:15:22Z",
"averageHoursBetweenRegistrations": 0
}
}{
"type": "https://thesignup.app/problems/not-found",
"title": "Not found",
"status": 404,
"detail": "string",
"code": "missing_credentials",
"errors": [
{
"path": "string",
"message": "string"
}
],
"cause": {
"property1": null,
"property2": null
}
}{
"type": "https://thesignup.app/problems/not-found",
"title": "Not found",
"status": 404,
"detail": "string",
"code": "missing_credentials",
"errors": [
{
"path": "string",
"message": "string"
}
],
"cause": {
"property1": null,
"property2": null
}
}{
"type": "https://thesignup.app/problems/not-found",
"title": "Not found",
"status": 404,
"detail": "string",
"code": "missing_credentials",
"errors": [
{
"path": "string",
"message": "string"
}
],
"cause": {
"property1": null,
"property2": null
}
}{
"type": "https://thesignup.app/problems/not-found",
"title": "Not found",
"status": 404,
"detail": "string",
"code": "missing_credentials",
"errors": [
{
"path": "string",
"message": "string"
}
],
"cause": {
"property1": null,
"property2": null
}
}Update a signup PATCH
Partial update — only the supplied fields are changed. Use null to clear nullable fields (description, location, signupCloseDate, etc.).
Duplicate a signup POST
Creates a fresh draft copy of the source signup with a new id and slug. The title is suffixed with `(copy)`. Slots + items are NOT copied in this slice — they need to be added to the copy separately.