M3ter · Capability

m3ter API — ScheduledEventConfigurations

m3ter API — ScheduledEventConfigurations. 5 operations. Lead operation: List ScheduledEventConfigurations. Self-contained Naftiko capability covering one M3ter business surface.

Run with Naftiko M3terScheduledEventConfigurations

What You Can Do

GET
Listscheduledeventconfigurations — List ScheduledEventConfigurations
/v1/organizations/{orgid}/scheduledevents/configurations
POST
Createscheduledeventconfiguration — Create ScheduledEventConfiguration
/v1/organizations/{orgid}/scheduledevents/configurations
GET
Getscheduledeventconfiguration — Retrieve ScheduledEventConfiguration
/v1/organizations/{orgid}/scheduledevents/configurations/{id}
PUT
Updatescheduledeventconfiguration — Update ScheduledEventConfiguration
/v1/organizations/{orgid}/scheduledevents/configurations/{id}
DELETE
Deletescheduledeventconfiguration — Delete ScheduledEventConfiguration
/v1/organizations/{orgid}/scheduledevents/configurations/{id}

MCP Tools

list-scheduledeventconfigurations

List ScheduledEventConfigurations

read-only idempotent
create-scheduledeventconfiguration

Create ScheduledEventConfiguration

retrieve-scheduledeventconfiguration

Retrieve ScheduledEventConfiguration

read-only idempotent
update-scheduledeventconfiguration

Update ScheduledEventConfiguration

idempotent
delete-scheduledeventconfiguration

Delete ScheduledEventConfiguration

idempotent

Capability Spec

m3ter-scheduledeventconfigurations.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: m3ter API — ScheduledEventConfigurations
  description: 'm3ter API — ScheduledEventConfigurations. 5 operations. Lead operation: List ScheduledEventConfigurations.
    Self-contained Naftiko capability covering one M3ter business surface.'
  tags:
  - M3ter
  - ScheduledEventConfigurations
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    M3TER_API_KEY: M3TER_API_KEY
capability:
  consumes:
  - type: http
    namespace: m3ter-scheduledeventconfigurations
    baseUri: https://api.m3ter.com
    description: m3ter API — ScheduledEventConfigurations business capability. Self-contained, no shared references.
    resources:
    - name: organizations-orgId-scheduledevents-configurations
      path: /organizations/{orgId}/scheduledevents/configurations
      operations:
      - name: listscheduledeventconfigurations
        method: GET
        description: List ScheduledEventConfigurations
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: path
          type: string
          description: UUID of the organization
          required: true
        - name: pageSize
          in: query
          type: integer
          description: Number of ScheduledEventConfigurations to retrieve per page
        - name: nextToken
          in: query
          type: string
          description: nextToken for multi page retrievals
        - name: ids
          in: query
          type: array
          description: list of UUIDs to retrieve
      - name: createscheduledeventconfiguration
        method: POST
        description: Create ScheduledEventConfiguration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: path
          type: string
          description: UUID of the organization
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: organizations-orgId-scheduledevents-configurations-id
      path: /organizations/{orgId}/scheduledevents/configurations/{id}
      operations:
      - name: getscheduledeventconfiguration
        method: GET
        description: Retrieve ScheduledEventConfiguration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: path
          type: string
          description: UUID of the organization
          required: true
        - name: id
          in: path
          type: string
          description: The UUID of the ScheduledEventConfiguration to retrieve.
          required: true
      - name: updatescheduledeventconfiguration
        method: PUT
        description: Update ScheduledEventConfiguration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: path
          type: string
          description: UUID of the organization
          required: true
        - name: id
          in: path
          type: string
          description: The UUID of the ScheduledEventConfiguration to update.
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletescheduledeventconfiguration
        method: DELETE
        description: Delete ScheduledEventConfiguration
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: orgId
          in: path
          type: string
          description: UUID of the organization
          required: true
        - name: id
          in: path
          type: string
          description: The UUID of the ScheduledEventConfiguration to delete.
          required: true
    authentication:
      type: bearer
      token: '{{env.M3TER_API_KEY}}'
  exposes:
  - type: rest
    namespace: m3ter-scheduledeventconfigurations-rest
    port: 8080
    description: REST adapter for m3ter API — ScheduledEventConfigurations. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/organizations/{orgid}/scheduledevents/configurations
      name: organizations-orgid-scheduledevents-configurations
      description: REST surface for organizations-orgId-scheduledevents-configurations.
      operations:
      - method: GET
        name: listscheduledeventconfigurations
        description: List ScheduledEventConfigurations
        call: m3ter-scheduledeventconfigurations.listscheduledeventconfigurations
        with:
          orgId: rest.orgId
          pageSize: rest.pageSize
          nextToken: rest.nextToken
          ids: rest.ids
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createscheduledeventconfiguration
        description: Create ScheduledEventConfiguration
        call: m3ter-scheduledeventconfigurations.createscheduledeventconfiguration
        with:
          orgId: rest.orgId
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/organizations/{orgid}/scheduledevents/configurations/{id}
      name: organizations-orgid-scheduledevents-configurations-id
      description: REST surface for organizations-orgId-scheduledevents-configurations-id.
      operations:
      - method: GET
        name: getscheduledeventconfiguration
        description: Retrieve ScheduledEventConfiguration
        call: m3ter-scheduledeventconfigurations.getscheduledeventconfiguration
        with:
          orgId: rest.orgId
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatescheduledeventconfiguration
        description: Update ScheduledEventConfiguration
        call: m3ter-scheduledeventconfigurations.updatescheduledeventconfiguration
        with:
          orgId: rest.orgId
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletescheduledeventconfiguration
        description: Delete ScheduledEventConfiguration
        call: m3ter-scheduledeventconfigurations.deletescheduledeventconfiguration
        with:
          orgId: rest.orgId
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: m3ter-scheduledeventconfigurations-mcp
    port: 9090
    transport: http
    description: MCP adapter for m3ter API — ScheduledEventConfigurations. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-scheduledeventconfigurations
      description: List ScheduledEventConfigurations
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: m3ter-scheduledeventconfigurations.listscheduledeventconfigurations
      with:
        orgId: tools.orgId
        pageSize: tools.pageSize
        nextToken: tools.nextToken
        ids: tools.ids
      outputParameters:
      - type: object
        mapping: $.
    - name: create-scheduledeventconfiguration
      description: Create ScheduledEventConfiguration
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: m3ter-scheduledeventconfigurations.createscheduledeventconfiguration
      with:
        orgId: tools.orgId
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: retrieve-scheduledeventconfiguration
      description: Retrieve ScheduledEventConfiguration
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: m3ter-scheduledeventconfigurations.getscheduledeventconfiguration
      with:
        orgId: tools.orgId
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-scheduledeventconfiguration
      description: Update ScheduledEventConfiguration
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: m3ter-scheduledeventconfigurations.updatescheduledeventconfiguration
      with:
        orgId: tools.orgId
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-scheduledeventconfiguration
      description: Delete ScheduledEventConfiguration
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: m3ter-scheduledeventconfigurations.deletescheduledeventconfiguration
      with:
        orgId: tools.orgId
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.