Get all public result sets for all races based on last updated dates.
Parameter | HTTP Method | Default | Description | Datatype |
---|---|---|---|---|
modified_since_timestamp |
GET | Get result sets modified on or after a given time. | unix_timestamp |
|
modified_until_timestamp |
GET | Get result sets modified on or before a given time. | unix_timestamp |
|
page Required |
GET | 1 | Page number to get. | uint |
num_per_page Required |
GET | 5000 | Number per page. | uint |
{ "openapi": "3.0.3", "info": { "title": "Get All Updated Public Race Result Sets", "description": "Get all public result sets for all races based on last updated dates.", "version": "1.0.0", "contact": { "name": "RunSignup API Support", "url": "https://runsignup.com/API", "email": "info@runsignup.com" } }, "servers": [ { "url": "https://runsignup.com/API", "description": "Production API Server" } ], "tags": [ { "name": "Results", "description": "APIs related to Results" } ], "components": { "schemas": { "Error": { "type": "object", "properties": { "error": { "type": "string", "description": "Error message" } }, "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/results/updated-result-sets.json": { "get": { "tags": [ "Results" ], "summary": "Get All Updated Public Race Result Sets", "description": "Get all public result sets for all races based on last updated dates.", "operationId": "v2_results_updated_result_sets_json", "parameters": [ { "name": "modified_since_timestamp", "in": "query", "description": "Get result sets modified on or after a given time.", "required": false, "schema": { "type": "string" } }, { "name": "modified_until_timestamp", "in": "query", "description": "Get result sets modified on or before a given time.", "required": false, "schema": { "type": "string" } }, { "name": "page", "in": "query", "description": "Page number to get.", "required": true, "schema": { "type": "integer", "default": "1" } }, { "name": "num_per_page", "in": "query", "description": "Number per page.", "required": true, "schema": { "type": "integer", "default": "5000" } } ], "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": [ "affiliates", "partners", "race_directors", "timers" ] } } } }