WildApricot · Capability

WildApricot Admin API — OnlineStore.Orders

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

Run with Naftiko WildapricotOnlineStore.Orders

What You Can Do

GET
Onlinestoreordersgetlist — WildApricot GET /accounts/{accountId}/store/orders
/v1/accounts/{accountid}/store/orders
GET
Onlinestoreordersgetbynumber — WildApricot GET /accounts/{accountId}/store/orders/{orderNumber}
/v1/accounts/{accountid}/store/orders/{ordernumber}

MCP Tools

wildapricot-get-accounts-accountid-store

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

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

WildApricot GET /accounts/{accountId}/store/orders/{orderNumber}

read-only idempotent

Capability Spec

admin-onlinestore-orders.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: WildApricot Admin API — OnlineStore.Orders
  description: 'WildApricot Admin API — OnlineStore.Orders. 2 operations. Lead operation: WildApricot GET /accounts/{accountId}/store/orders.
    Self-contained Naftiko capability covering one Wildapricot business surface.'
  tags:
  - Wildapricot
  - OnlineStore.Orders
  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-orders
    baseUri: https://api.wildapricot.org/v2.2
    description: WildApricot Admin API — OnlineStore.Orders business capability. Self-contained, no shared references.
    resources:
    - name: accounts-accountId-store-orders
      path: /accounts/{accountId}/store/orders
      operations:
      - name: onlinestoreordersgetlist
        method: GET
        description: WildApricot GET /accounts/{accountId}/store/orders
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: $skip
          in: query
          type: integer
          description: '''Specifies the number of records to skip (not include in a result set). For example if you expect
            about 300 records in result set and want to get them in small '
        - name: $top
          in: query
          type: integer
          description: this parameter specifies the maximum number of entries to be returned
        - name: status
          in: query
          type: string
          description: Order status
        - name: paymentStatus
          in: query
          type: string
          description: Invoice status
        - name: From
          in: query
          type: string
          description: Start date of the range
        - name: To
          in: query
          type: string
          description: End of the range
    - name: accounts-accountId-store-orders-orderNumber
      path: /accounts/{accountId}/store/orders/{orderNumber}
      operations:
      - name: onlinestoreordersgetbynumber
        method: GET
        description: WildApricot GET /accounts/{accountId}/store/orders/{orderNumber}
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orderNumber
          in: path
          type: string
          description: Order number
          required: true
    authentication:
      type: bearer
      token: '{{env.WILDAPRICOT_API_KEY}}'
  exposes:
  - type: rest
    namespace: admin-onlinestore-orders-rest
    port: 8080
    description: REST adapter for WildApricot Admin API — OnlineStore.Orders. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/accounts/{accountid}/store/orders
      name: accounts-accountid-store-orders
      description: REST surface for accounts-accountId-store-orders.
      operations:
      - method: GET
        name: onlinestoreordersgetlist
        description: WildApricot GET /accounts/{accountId}/store/orders
        call: admin-onlinestore-orders.onlinestoreordersgetlist
        with:
          $skip: rest.$skip
          $top: rest.$top
          status: rest.status
          paymentStatus: rest.paymentStatus
          From: rest.From
          To: rest.To
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountid}/store/orders/{ordernumber}
      name: accounts-accountid-store-orders-ordernumber
      description: REST surface for accounts-accountId-store-orders-orderNumber.
      operations:
      - method: GET
        name: onlinestoreordersgetbynumber
        description: WildApricot GET /accounts/{accountId}/store/orders/{orderNumber}
        call: admin-onlinestore-orders.onlinestoreordersgetbynumber
        with:
          orderNumber: rest.orderNumber
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-onlinestore-orders-mcp
    port: 9090
    transport: http
    description: MCP adapter for WildApricot Admin API — OnlineStore.Orders. 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/orders
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-onlinestore-orders.onlinestoreordersgetlist
      with:
        $skip: tools.$skip
        $top: tools.$top
        status: tools.status
        paymentStatus: tools.paymentStatus
        From: tools.From
        To: tools.To
      outputParameters:
      - type: object
        mapping: $.
    - name: wildapricot-get-accounts-accountid-store-2
      description: WildApricot GET /accounts/{accountId}/store/orders/{orderNumber}
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-onlinestore-orders.onlinestoreordersgetbynumber
      with:
        orderNumber: tools.orderNumber
      outputParameters:
      - type: object
        mapping: $.