Gets volunteers that were removed from a race (assignments marked as deleted).
The page and num parameters can be used to control paging.
Consider using modified_since_timestamp to download removed volunteers since the last API request when downloading removed volunteers over time.
Note that the maximum number of removed volunteers that can be downloaded at a time is 500.
When using modified_since_timestamp, note that it returns volunteers that have been removed on or after the specified timestamp.
If modified_since_timestamp is used in conjunction with the highest returned modified timestamp for subsequent API calls, you may need to increment modified_since_timestamp to prevent the same removed volunteer(s) from being returned each time.
{
"removed_volunteers": [
{
"assignment_id": 12345,
"user_id": 67890,
"race_user_id": 13579,
"volunteer_task_id": 24680,
"volunteer_people_resource_id": 11223,
"assignment_ts": 1727740200,
"first_name": "Jane",
"last_name": "Doe",
"email": "jane.doe@example.com",
"phone": "555-123-4567",
"volunteer_session_id": 42,
"last_modified_ts": 1727740300
},
{
"assignment_id": 12346,
"user_id": 67891,
"race_user_id": 13580,
"volunteer_task_id": 24681,
"volunteer_people_resource_id": 11224,
"assignment_ts": 1727740150,
"first_name": "John",
"last_name": "Smith",
"email": "john.smith@example.com",
"phone": "555-987-6543",
"volunteer_session_id": 42,
"last_modified_ts": 1727740350
}
]
}
| Parameter | HTTP Method | Default | Description | Datatype |
|---|---|---|---|---|
race_idRequired |
GET | Race ID. | uint |
|
modified_since_timestamp |
GET | Get removed race volunteers modified since a given time. | uint |
|
api_key |
GET | API key. | string |
|
api_secret |
GET | API secret. | string |
|
num |
GET | 100 | Number of results per page. | uint |
page |
GET | 1 | Number of pages. | uint |
{
"openapi": "3.0.3",
"info": {
"title": "Get Removed Race Volunteers",
"description": "Get removed race volunteers.",
"version": "1.0.0",
"contact": {
"name": "RunSignup API Support",
"url": "https://runsignup.com/API",
"email": "info@runsignup.com"
}
},
"servers": [
{
"url": "https://api.runsignup.com/rest",
"description": "Production API Server"
}
],
"tags": [
{
"name": "Volunteers",
"description": "APIs related to Volunteers"
}
],
"components": {
"schemas": {
"Error": {
"type": "object",
"properties": {
"error": {
"type": "string",
"description": "Error message"
},
"details": {
"type": "object",
"description": "Additional error details",
"additionalProperties": true
}
},
"required": [
"error"
]
},
"BadRequestError": {
"allOf": [
{
"$ref": "#/components/schemas/Error"
},
{
"description": "Error indicating invalid request parameters or structure"
}
]
},
"UnauthorizedError": {
"allOf": [
{
"$ref": "#/components/schemas/Error"
},
{
"description": "Error indicating authentication failure"
}
]
},
"ForbiddenError": {
"allOf": [
{
"$ref": "#/components/schemas/Error"
},
{
"description": "Error indicating the authenticated user lacks required permissions"
}
]
},
"NotFoundError": {
"allOf": [
{
"$ref": "#/components/schemas/Error"
},
{
"description": "Error indicating the requested resource does not exist"
}
]
},
"ServerError": {
"allOf": [
{
"$ref": "#/components/schemas/Error"
},
{
"description": "Error indicating an unexpected server-side issue"
}
]
}
},
"securitySchemes": {
"apiKey": {
"type": "apiKey",
"in": "query",
"name": "api_key",
"description": "RunSignup API Key"
},
"apiSecret": {
"type": "apiKey",
"in": "query",
"name": "api_secret",
"description": "RunSignup API Secret"
}
}
},
"paths": {
"/v2/volunteers/get-removed-race-volunteers.json": {
"get": {
"tags": [
"Volunteers"
],
"summary": "Get Removed Race Volunteers",
"description": "Get removed race volunteers.",
"operationId": "v2_volunteers_get_removed_race_volunteers_json",
"parameters": [
{
"name": "race_id",
"in": "query",
"description": "Race ID.",
"required": true,
"schema": {
"type": "integer"
}
},
{
"name": "modified_since_timestamp",
"in": "query",
"description": "Get removed race volunteers modified since a given time.",
"required": false,
"schema": {
"type": "integer"
}
},
{
"name": "checkin_api_key",
"in": "query",
"description": "Checkin API key.",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "X-CHECKIN-API-SECRET",
"in": "header",
"description": "Checkin API secret.",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "api_key",
"in": "query",
"description": "API key.",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "api_secret",
"in": "query",
"description": "API secret.",
"required": false,
"schema": {
"type": "string"
}
},
{
"name": "num",
"in": "query",
"description": "Number of results per page.",
"required": false,
"schema": {
"type": "integer",
"default": "100"
}
},
{
"name": "page",
"in": "query",
"description": "Number of pages.",
"required": false,
"schema": {
"type": "integer",
"default": "1"
}
}
],
"security": [
{
"apiKey": [],
"apiSecret": []
}
],
"responses": {
"200": {
"description": "Successful response",
"content": {
"application/json": {
"schema": {
"type": "object"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BadRequestError"
}
}
}
},
"401": {
"description": "Unauthorized",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/UnauthorizedError"
}
}
}
},
"403": {
"description": "Forbidden",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ForbiddenError"
}
}
}
},
"404": {
"description": "Not Found",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/NotFoundError"
}
}
}
},
"500": {
"description": "Internal Server Error",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/ServerError"
}
}
}
}
},
"x-permissions": [
"partners",
"race_directors",
"timers"
]
}
}
}
}