Get session passings by range

Gets the list of passings from the timing session.

With this method you can navigate trough the passings of a session using the num_passing property of the passings as index.

Gets the list of passings from the timing session.

GET https://api.runonrufus.com/v0/passings/session/{token_session}

Path Parameters

NameTypeDescription

token_session*

String

Session token identifier.

Query Parameters

NameTypeDescription

first

Int

Number of the first passing of the session to retrieve.

last

Int

Number of the last passing of the session to retrieve.

page

Int

Page number of the list of passing to retrieve. Each page can contain up to 5000 passings.

Headers

NameTypeDescription

api_key*

String

Account api key with READ or READ_WRITE access type.

{
  "description": "Success",
  "result": [
    {
      "token_session": "2A19294BB886C3D5C7783309BBC6E385515C843893A6BC126FECE3904C6E2B25",
      "timestamp": "2023-02-03T16:08:18.263Z",
      "num_passing": 1,
      "latitude": "0.0",
      "longitude": "0.0",
      "status": "Sent",
      "participant_id": null,
      "chip": null,
      "bib": "1",
      "timezone": "CET",
      "gender": null,
      "deviceid": "65A1B7E0C6BC3D32C268C1506E3F6F39E225DC6ED79573E177E7243E8E38115B"
    },
    {
      "token_session": "2A19294BB886C3D5C7783309BBC6E385515C843893A6BC126FECE3904C6E2B25",
      "timestamp": "2023-02-03T16:08:21.448Z",
      "num_passing": 2,
      "latitude": "0.0",
      "longitude": "0.0",
      "status": "Sent",
      "participant_id": null,
      "chip": null,
      "bib": "2",
      "timezone": null,
      "gender": null,
      "deviceid": "65A1B7E0C6BC3D32C268C1506E3F6F39E225DC6ED79573E177E7243E8E38115B"
    },
    {
      "token_session": "2A19294BB886C3D5C7783309BBC6E385515C843893A6BC126FECE3904C6E2B25",
      "timestamp": "2023-02-03T16:08:21.932Z",
      "num_passing": 3,
      "latitude": "0.0",
      "longitude": "0.0",
      "status": "Sent",
      "participant_id": null,
      "chip": null,
      "bib": "3",
      "timezone": "CET",
      "gender": null,
      "deviceid": "65A1B7E0C6BC3D32C268C1506E3F6F39E225DC6ED79573E177E7243E8E38115B"
    }
    ]
  }
curl -X GET \
-H "Content-Type: application/json" \
-H "api_key: ror-ae4fc6c19681a20fad30" \
https://api.runonrufus.com/v0/passings/session/2A19294BB886C3D5C7783309BBC6E385515C843893A6BC126FECE3904C6E2B25

Last updated