Rely.io · Capability

Rely.io Public API — Self-Service Actions

Rely.io Public API — Self-Service Actions. 5 operations. Lead operation: List Self-Service Actions. Self-contained Naftiko capability covering one Rely business surface.

Run with Naftiko RelySelf-Service Actions

What You Can Do

GET
Listactions — List Self-Service Actions
/v1/api/v1/actions
POST
Createaction — Create Self-Service Action
/v1/api/v1/actions
GET
Getaction — Get Self-Service Action
/v1/api/v1/actions/{actionid}
PUT
Updateaction — Update Self-Service Action
/v1/api/v1/actions/{actionid}
DELETE
Deleteaction — Delete Self-Service Action
/v1/api/v1/actions/{actionid}

MCP Tools

list-self-service-actions

List Self-Service Actions

read-only idempotent
create-self-service-action

Create Self-Service Action

get-self-service-action

Get Self-Service Action

read-only idempotent
update-self-service-action

Update Self-Service Action

idempotent
delete-self-service-action

Delete Self-Service Action

idempotent

Capability Spec

rely-self-service-actions.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Rely.io Public API — Self-Service Actions
  description: 'Rely.io Public API — Self-Service Actions. 5 operations. Lead operation: List Self-Service Actions. Self-contained
    Naftiko capability covering one Rely business surface.'
  tags:
  - Rely
  - Self-Service Actions
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RELY_API_KEY: RELY_API_KEY
capability:
  consumes:
  - type: http
    namespace: rely-self-service-actions
    baseUri: https://api.rely.io
    description: Rely.io Public API — Self-Service Actions business capability. Self-contained, no shared references.
    resources:
    - name: api-v1-actions
      path: /api/v1/actions
      operations:
      - name: listactions
        method: GET
        description: List Self-Service Actions
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: createaction
        method: POST
        description: Create Self-Service Action
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: api-v1-actions-actionId
      path: /api/v1/actions/{actionId}
      operations:
      - name: getaction
        method: GET
        description: Get Self-Service Action
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updateaction
        method: PUT
        description: Update Self-Service Action
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteaction
        method: DELETE
        description: Delete Self-Service Action
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.RELY_API_KEY}}'
  exposes:
  - type: rest
    namespace: rely-self-service-actions-rest
    port: 8080
    description: REST adapter for Rely.io Public API — Self-Service Actions. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/api/v1/actions
      name: api-v1-actions
      description: REST surface for api-v1-actions.
      operations:
      - method: GET
        name: listactions
        description: List Self-Service Actions
        call: rely-self-service-actions.listactions
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createaction
        description: Create Self-Service Action
        call: rely-self-service-actions.createaction
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/api/v1/actions/{actionid}
      name: api-v1-actions-actionid
      description: REST surface for api-v1-actions-actionId.
      operations:
      - method: GET
        name: getaction
        description: Get Self-Service Action
        call: rely-self-service-actions.getaction
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateaction
        description: Update Self-Service Action
        call: rely-self-service-actions.updateaction
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteaction
        description: Delete Self-Service Action
        call: rely-self-service-actions.deleteaction
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: rely-self-service-actions-mcp
    port: 9090
    transport: http
    description: MCP adapter for Rely.io Public API — Self-Service Actions. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-self-service-actions
      description: List Self-Service Actions
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rely-self-service-actions.listactions
      outputParameters:
      - type: object
        mapping: $.
    - name: create-self-service-action
      description: Create Self-Service Action
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: rely-self-service-actions.createaction
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-self-service-action
      description: Get Self-Service Action
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: rely-self-service-actions.getaction
      outputParameters:
      - type: object
        mapping: $.
    - name: update-self-service-action
      description: Update Self-Service Action
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: rely-self-service-actions.updateaction
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-self-service-action
      description: Delete Self-Service Action
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: rely-self-service-actions.deleteaction
      outputParameters:
      - type: object
        mapping: $.