List all sequences

Endpoint and Request Method:

GET /api/sequences/

This endpoint retrieves a paginated list of all sequences for the authenticated institution.

Example Request:

GET https://api.vomevolunteer.com/api/sequences/

Authorization:

Requests to this endpoint require an API-KEY in the header for authentication.

headers = {
    "API-KEY": "your_unique_api_key_here"
}

response = requests.get(
    "https://api.vomevolunteer.com/api/sequences/",
    headers=headers
)

Supported query parameters:

  • page: Page number.

  • page_size: Number of results per page, up to 100.

  • status: Filters by sequence status (0 = Draft, 1 = Published, 2 = Unpublished).

  • display_status: Filters by sequence visibility (0 = Private, 1 = Public).

Response Structure:

The response is a paginated object containing sequence records. Each record represents a single sequence along with folder details, volunteer counts, and step metadata.

Response Object:

Last updated