Scaleway · Capability

Transactional Email API — Project Settings

Transactional Email API — Project Settings. 2 operations. Lead operation: List project settings. Self-contained Naftiko capability covering one Scaleway business surface.

Run with Naftiko ScalewayProject Settings

What You Can Do

GET
Getprojectsettings — List project settings
/v1/transactional-email/v1alpha1/regions/{region}/project/{project-id}/settings
PATCH
Updateprojectsettings — Update project settings
/v1/transactional-email/v1alpha1/regions/{region}/project/{project-id}/settings

MCP Tools

list-project-settings

List project settings

read-only idempotent
update-project-settings

Update project settings

idempotent

Capability Spec

transactional-email-project-settings.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Transactional Email API — Project Settings
  description: 'Transactional Email API — Project Settings. 2 operations. Lead operation: List project settings. Self-contained
    Naftiko capability covering one Scaleway business surface.'
  tags:
  - Scaleway
  - Project Settings
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SCALEWAY_API_KEY: SCALEWAY_API_KEY
capability:
  consumes:
  - type: http
    namespace: transactional-email-project-settings
    baseUri: https://api.scaleway.com
    description: Transactional Email API — Project Settings business capability. Self-contained, no shared references.
    resources:
    - name: transactional-email-v1alpha1-regions-region-project-project_id-settings
      path: /transactional-email/v1alpha1/regions/{region}/project/{project_id}/settings
      operations:
      - name: getprojectsettings
        method: GET
        description: List project settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: region
          in: path
          type: string
          description: The region you want to target
          required: true
        - name: project_id
          in: path
          type: string
          description: ID of the project. (UUID format)
          required: true
      - name: updateprojectsettings
        method: PATCH
        description: Update project settings
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: region
          in: path
          type: string
          description: The region you want to target
          required: true
        - name: project_id
          in: path
          type: string
          description: ID of the project. (UUID format)
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: apikey
      key: X-Auth-Token
      value: '{{env.SCALEWAY_API_KEY}}'
      placement: header
  exposes:
  - type: rest
    namespace: transactional-email-project-settings-rest
    port: 8080
    description: REST adapter for Transactional Email API — Project Settings. One Spectral-compliant resource per consumed
      operation, prefixed with /v1.
    resources:
    - path: /v1/transactional-email/v1alpha1/regions/{region}/project/{project-id}/settings
      name: transactional-email-v1alpha1-regions-region-project-project-id-settings
      description: REST surface for transactional-email-v1alpha1-regions-region-project-project_id-settings.
      operations:
      - method: GET
        name: getprojectsettings
        description: List project settings
        call: transactional-email-project-settings.getprojectsettings
        with:
          region: rest.region
          project_id: rest.project_id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: updateprojectsettings
        description: Update project settings
        call: transactional-email-project-settings.updateprojectsettings
        with:
          region: rest.region
          project_id: rest.project_id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: transactional-email-project-settings-mcp
    port: 9090
    transport: http
    description: MCP adapter for Transactional Email API — Project Settings. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: list-project-settings
      description: List project settings
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: transactional-email-project-settings.getprojectsettings
      with:
        region: tools.region
        project_id: tools.project_id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-project-settings
      description: Update project settings
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: transactional-email-project-settings.updateprojectsettings
      with:
        region: tools.region
        project_id: tools.project_id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.