WildApricot · Capability

WildApricot Admin API — Emailing.SentEmails

WildApricot Admin API — Emailing.SentEmails. 2 operations. Lead operation: WildApricot Sent Emails. Self-contained Naftiko capability covering one Wildapricot business surface.

Run with Naftiko WildapricotEmailing.SentEmails

What You Can Do

GET
Getsentemailslog — WildApricot Sent Emails
/v1/accounts/{accountid}/sentemails
GET
Getsentemaildetails — WildApricot Sent Email Details
/v1/accounts/{accountid}/sentemails/{emailid}

MCP Tools

wildapricot-sent-emails

WildApricot Sent Emails

read-only idempotent
wildapricot-sent-email-details

WildApricot Sent Email Details

read-only idempotent

Capability Spec

admin-emailing-sentemails.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: WildApricot Admin API — Emailing.SentEmails
  description: 'WildApricot Admin API — Emailing.SentEmails. 2 operations. Lead operation: WildApricot Sent Emails. Self-contained
    Naftiko capability covering one Wildapricot business surface.'
  tags:
  - Wildapricot
  - Emailing.SentEmails
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    WILDAPRICOT_API_KEY: WILDAPRICOT_API_KEY
capability:
  consumes:
  - type: http
    namespace: admin-emailing-sentemails
    baseUri: https://api.wildapricot.org/v2.2
    description: WildApricot Admin API — Emailing.SentEmails business capability. Self-contained, no shared references.
    resources:
    - name: accounts-accountId-SentEmails
      path: /accounts/{accountId}/SentEmails
      operations:
      - name: getsentemailslog
        method: GET
        description: WildApricot Sent Emails
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: idsOnly
          in: query
          type: boolean
          description: To get only a list of email identifiers as a result of search request.
        - name: $filter
          in: query
          type: string
          description: 'Allowed filter fields (**allowed operations**):'
    - name: accounts-accountId-SentEmails-emailId
      path: /accounts/{accountId}/SentEmails/{emailId}
      operations:
      - name: getsentemaildetails
        method: GET
        description: WildApricot Sent Email Details
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: emailId
          in: path
          type: integer
          description: Email unique Id
          required: true
    authentication:
      type: bearer
      token: '{{env.WILDAPRICOT_API_KEY}}'
  exposes:
  - type: rest
    namespace: admin-emailing-sentemails-rest
    port: 8080
    description: REST adapter for WildApricot Admin API — Emailing.SentEmails. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/accounts/{accountid}/sentemails
      name: accounts-accountid-sentemails
      description: REST surface for accounts-accountId-SentEmails.
      operations:
      - method: GET
        name: getsentemailslog
        description: WildApricot Sent Emails
        call: admin-emailing-sentemails.getsentemailslog
        with:
          idsOnly: rest.idsOnly
          $filter: rest.$filter
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/accounts/{accountid}/sentemails/{emailid}
      name: accounts-accountid-sentemails-emailid
      description: REST surface for accounts-accountId-SentEmails-emailId.
      operations:
      - method: GET
        name: getsentemaildetails
        description: WildApricot Sent Email Details
        call: admin-emailing-sentemails.getsentemaildetails
        with:
          emailId: rest.emailId
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: admin-emailing-sentemails-mcp
    port: 9090
    transport: http
    description: MCP adapter for WildApricot Admin API — Emailing.SentEmails. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: wildapricot-sent-emails
      description: WildApricot Sent Emails
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-emailing-sentemails.getsentemailslog
      with:
        idsOnly: tools.idsOnly
        $filter: tools.$filter
      outputParameters:
      - type: object
        mapping: $.
    - name: wildapricot-sent-email-details
      description: WildApricot Sent Email Details
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: admin-emailing-sentemails.getsentemaildetails
      with:
        emailId: tools.emailId
      outputParameters:
      - type: object
        mapping: $.