WildApricot · Capability

WildApricot Admin API — OnlineStore.Products

WildApricot Admin API — OnlineStore.Products. 2 operations. Lead operation: WildApricot GET /accounts/{accountId}/store/products. Self-contained Naftiko capability covering one Wildapricot business surface.

Run with Naftiko WildapricotOnlineStore.Products

What You Can Do

GET
Onlinestoreproductsgetlist — WildApricot GET /accounts/{accountId}/store/products
/v1/accounts/{accountid}/store/products
GET
Onlinestoreproductsgetbyid — WildApricot GET /accounts/{accountId}/store/products/{id}
/v1/accounts/{accountid}/store/products/{id}

MCP Tools

wildapricot-get-accounts-accountid-store

WildApricot GET /accounts/{accountId}/store/products

read-only idempotent
wildapricot-get-accounts-accountid-store-2

WildApricot GET /accounts/{accountId}/store/products/{id}

read-only idempotent

Capability Spec

admin-onlinestore-products.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: WildApricot Admin API — OnlineStore.Products
  description: 'WildApricot Admin API — OnlineStore.Products. 2 operations. Lead operation: WildApricot GET /accounts/{accountId}/store/products.
    Self-contained Naftiko capability covering one Wildapricot business surface.'
  tags:
  - Wildapricot
  - OnlineStore.Products
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WILDAPRICOT_API_KEY: WILDAPRICOT_API_KEY
capability:
  consumes:
  - type: http
    namespace: admin-onlinestore-products
    baseUri: https://api.wildapricot.org/v2.2
    description: WildApricot Admin API — OnlineStore.Products business capability. Self-contained, no shared references.
    resources:
    - name: accounts-accountId-store-products
      path: /accounts/{accountId}/store/products
      operations:
      - name: onlinestoreproductsgetlist
        method: GET
        description: WildApricot GET /accounts/{accountId}/store/products
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: $skip
          in: query
          type: integer
        - name: $top
          in: query
          type: integer
    - name: accounts-accountId-store-products-id
      path: /accounts/{accountId}/store/products/{id}
      operations:
      - name: onlinestoreproductsgetbyid
        method: GET
        description: WildApricot GET /accounts/{accountId}/store/products/{id}
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: integer
          required: true
    authentication:
      type: bearer
      token: '{{env.WILDAPRICOT_API_KEY}}'
  exposes:
  - type: rest
    namespace: admin-onlinestore-products-rest
    port: 8080
    description: REST adapter for WildApricot Admin API — OnlineStore.Products. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/accounts/{accountid}/store/products
      name: accounts-accountid-store-products
      description: REST surface for accounts-accountId-store-products.
      operations:
      - method: GET
        name: onlinestoreproductsgetlist
        description: WildApricot GET /accounts/{accountId}/store/products
        call: admin-onlinestore-products.onlinestoreproductsgetlist
        with:
          $skip: rest.$skip
          $top: rest.$top
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountid}/store/products/{id}
      name: accounts-accountid-store-products-id
      description: REST surface for accounts-accountId-store-products-id.
      operations:
      - method: GET
        name: onlinestoreproductsgetbyid
        description: WildApricot GET /accounts/{accountId}/store/products/{id}
        call: admin-onlinestore-products.onlinestoreproductsgetbyid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-onlinestore-products-mcp
    port: 9090
    transport: http
    description: MCP adapter for WildApricot Admin API — OnlineStore.Products. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: wildapricot-get-accounts-accountid-store
      description: WildApricot GET /accounts/{accountId}/store/products
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-onlinestore-products.onlinestoreproductsgetlist
      with:
        $skip: tools.$skip
        $top: tools.$top
      outputParameters:
      - type: object
        mapping: $.
    - name: wildapricot-get-accounts-accountid-store-2
      description: WildApricot GET /accounts/{accountId}/store/products/{id}
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-onlinestore-products.onlinestoreproductsgetbyid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.