Arccos Golf Webhooks API

The Webhooks API from Arccos Golf — 2 operation(s) for webhooks.

Operations 3

GET /v5/webhooks Get Webhooks #
POST /v5/webhooks Create Webhook #
DELETE /v5/webhooks/{webhookId} Delete Webhook #

Documentation

Specifications

Other Resources

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/arccos-golf-webhooks-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

arccos-golf-webhooks-api-openapi.yml Raw ↑
openapi: 3.2.0
info:
  title: Arccos Golf Webhooks API
  version: '1'
  description: 'Operations tagged Webhooks across 2 of this provider''s published API definitions: arccos-golf-on-course-data-api-openapi.yml, arccos-golf-webhooks-api-openapi.yml. Each path carries the servers of the definition it was published in.'
servers:
- url: https://api.arccosgolf.com/
  description: Base URL declared by the provider in apis.yml (roadmap#122).
tags:
- name: Webhooks
paths:
  /v5/webhooks:
    get:
      summary: Get Webhooks
      description: "Webhook events sent to registered URLs are postRound, patchRound, deleteRound, and accountDisconnected. postRound and patchRound include userId, roundId, courseId, courseVersion, and isEnded. deleteRound includes roundId and userId. accountDisconnected includes eventId, eventVersion, createdAt, userId, clientId, disconnectedAt, and reason=user_disconnected. For accountDisconnected, eventId is the idempotency key for a published webhook event and remains stable across delivery retries of that event. Repeated disconnect actions can produce another event for the same disconnected account, so consumers should also make cleanup idempotent by userId and clientId. Delivery is at-least-once, so consumers should tolerate duplicates and delays and respond with 2xx after durable receipt.\n\n You can use these endpoints to manage your webhooks yourself using basic authentication."
      tags:
      - Webhooks
      operationId: handle_get_webhooks.get./v5/webhooks
      security:
      - BasicAuth: []
      responses:
        '200':
          description: 200 response
          content:
            application/json:
              schema:
                $ref: '#/components/schemas/GetWebhooksResponse'
    post:
      summary: Create Webhook
      description: Create Webhook
      tags:
      - Webhooks
      operationId: handle_create_webhook.post./v5/webhooks
      security:
      - BasicAuth: []
      responses:
        '200':
          description: 200 response
      requestBody:
        content:
          application/json:
            schema:
              $ref: '#/components/schemas/CreateWebhookRequest'
        description: Body required in the request
        required: true
  /v5/webhooks/{webhookId}:
    delete:
      summary: Delete Webhook
      description: Delete Webhook
      tags:
      - Webhooks
      operationId: handle_delete_webhook.delete./v5/webhooks/{webhookId}
      security:
      - BasicAuth: []
      parameters:
      - name: webhookId
        in: path
        required: true
        schema:
          type: string
      responses:
        '200':
          description: 200 response
components:
  schemas:
    Webhook:
      properties:
        id:
          title: Webhook.id
          type: number
        webhookUrl:
          title: Webhook.webhookUrl
          type: string
      required:
      - id
      - webhookUrl
      additionalProperties: false
      title: Webhook
      type: object
    CreateWebhookRequest:
      properties:
        webhookUrl:
          title: CreateWebhookRequest.webhookUrl
          type: string
      required:
      - webhookUrl
      additionalProperties: false
      title: CreateWebhookRequest
      type: object
    GetWebhooksResponse:
      items:
        $ref: '#/components/schemas/Webhook'
        title: GetWebhooksResponse.[]
      title: GetWebhooksResponse.[]
      type: array
  securitySchemes:
    AccessCodeAuth:
      type: oauth2
      flows:
        authorizationCode:
          scopes:
            openid: Required for all endpoints that have userId in the path
            arccos/read:users: Grants read users access
            arccos/read:rounds: Grants read rounds access
            arccos/read:clubs: Grants read clubs access
          authorizationUrl: https://signin.arccosgolf.com/login
          tokenUrl: https://api.arccosgolf.com/oauth2/token
    BasicAuth:
      type: http
      scheme: basic
x-refined-from:
- arccos-golf-on-course-data-api-openapi.yml
- arccos-golf-webhooks-api-openapi.yml