Outdoorsy Checkout Steps API

The checkoutSteps API from Outdoorsy — 1 operation(s) for checkoutsteps.

Operations 2

GET /checkout_steps/{booking_id} #
PATCH /checkout_steps/{booking_id} #

Work with this as data

Every API here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for apis

7 MCP tools reach this
  • find_apisBrowse and filter every API in the catalog.
  • get_api_artifactsOne API's artifacts, grouped by type.
  • get_openapiThe primary OpenAPI for this API.
  • find_similar_apisAPIs that look like this one.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This API
curl "https://apis.io/api/v1/apis/outdoorsy-checkoutsteps-api"
All apis
curl "https://apis.io/api/v1/apis?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.

OpenAPI Specification

outdoorsy-checkoutsteps-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Outdoorsy Checkout Steps API
  version: 0.0.1
  description: 'Operations tagged checkoutSteps across 2 of this provider''s published API definitions: outdoorsy-checkoutsteps-api-openapi.yml, outdoorsy-openapi-original.json. Each path carries the servers of the definition it was published in.'
servers:
- url: /v0
security:
- Bearer:
  - '[]'
- API-Key:
  - '[]'
tags:
- name: checkoutSteps
paths:
  /checkout_steps/{booking_id}:
    get:
      description: 'Returns the list objects, containing step name, order and status for clients to use when

        sending a renter through the reservation (checkout) flow.'
      tags:
      - checkoutSteps
      operationId: getCheckoutSteps
      parameters:
      - x-go-name: BookingID
        name: booking_id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          $ref: '#/components/responses/checkoutStepsResponse'
        '401':
          $ref: '#/components/responses/unauthorizedError'
        '404':
          $ref: '#/components/responses/notFoundError'
        default:
          $ref: '#/components/responses/genericError'
    patch:
      description: 'Updates the status of steps for the specified booking. Send incomplete/complete for each

        step in the list.'
      tags:
      - checkoutSteps
      operationId: updateCheckoutSteps
      parameters:
      - x-go-name: BookingID
        name: booking_id
        in: path
        required: true
        schema:
          type: integer
          format: int64
      responses:
        '200':
          $ref: '#/components/responses/checkoutStepsResponse'
        '401':
          $ref: '#/components/responses/unauthorizedError'
        '404':
          $ref: '#/components/responses/notFoundError'
        default:
          $ref: '#/components/responses/genericError'
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/UpdateRequest'
    servers:
    - url: /v0
components:
  schemas:
    UpdateRequest:
      type: object
      properties:
        id:
          type: integer
          format: int64
          x-go-name: ID
        name:
          type: string
          x-go-name: Name
        status:
          type: string
          x-go-name: Status
        steps:
          type: array
          items:
            $ref: '#/components/schemas/CheckoutStep'
          x-go-name: Steps
      x-go-package: github.com/outdoorsy/api/pkg/checkout_steps
    ReadResponse:
      type: object
      properties:
        id:
          type: integer
          format: int64
          x-go-name: ID
        imminent_departure:
          type: boolean
          x-go-name: ImminentDeparture
        readonly_insurance:
          type: boolean
          x-go-name: ReadOnlyInsurance
        route:
          type: string
          x-go-name: Route
        steps:
          type: array
          items:
            $ref: '#/components/schemas/CheckoutStep'
          x-go-name: Steps
      x-go-package: github.com/outdoorsy/api/pkg/checkout_steps
    CheckoutStep:
      type: object
      properties:
        name:
          type: string
          x-go-name: Name
        order:
          type: integer
          format: int64
          x-go-name: Order
        status:
          type: string
          x-go-name: Status
      x-go-package: github.com/outdoorsy/api/pkg/checkout_steps
  responses:
    genericError:
      description: An unknown, unexpected error.
    unauthorizedError:
      description: Unauthorized error
    checkoutStepsResponse:
      description: ''
      content:
        application/json:
          schema:
            $ref: '#/components/schemas/ReadResponse'
    notFoundError:
      description: Not found error
  securitySchemes:
    API-Key:
      type: apiKey
      name: API-Key
      in: header
    Bearer:
      type: apiKey
      name: Authorization
      in: header
x-refined-from:
- outdoorsy-checkoutsteps-api-openapi.yml
- outdoorsy-openapi-original.json