Sinch · Capability

Sinch Brands API — Brands

Sinch Brands API — Brands. 7 operations. Lead operation: List Brands. Self-contained Naftiko capability covering one Sinch business surface.

Run with Naftiko SinchBrands

What You Can Do

GET
Listbrands — List Brands
/v1/v1/projects/{project-id}/brands
POST
Createbrand — Create a Brand
/v1/v1/projects/{project-id}/brands
GET
Getbrand — Get a Brand
/v1/v1/projects/{project-id}/brands/{brand-id}
PUT
Updatebrand — Update a Brand
/v1/v1/projects/{project-id}/brands/{brand-id}
DELETE
Deletebrand — Delete a Brand
/v1/v1/projects/{project-id}/brands/{brand-id}
POST
Submitbrand — Submit a Brand for Verification
/v1/v1/projects/{project-id}/brands/brand-id-submit
POST
Createandsubmitbrand — Create and Submit a Brand
/v1/v1/projects/{project-id}/brands-submit

MCP Tools

list-brands

List Brands

read-only idempotent
create-brand

Create a Brand

get-brand

Get a Brand

read-only idempotent
update-brand

Update a Brand

idempotent
delete-brand

Delete a Brand

idempotent
submit-brand-verification

Submit a Brand for Verification

create-and-submit-brand

Create and Submit a Brand

Capability Spec

brands-brands.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sinch Brands API — Brands
  description: 'Sinch Brands API — Brands. 7 operations. Lead operation: List Brands. Self-contained Naftiko capability covering
    one Sinch business surface.'
  tags:
  - Sinch
  - Brands
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SINCH_API_KEY: SINCH_API_KEY
capability:
  consumes:
  - type: http
    namespace: brands-brands
    baseUri: https://brands.api.sinch.com
    description: Sinch Brands API — Brands business capability. Self-contained, no shared references.
    resources:
    - name: v1-projects-project_id-brands
      path: /v1/projects/{project_id}/brands
      operations:
      - name: listbrands
        method: GET
        description: List Brands
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: pageSize
          in: query
          type: integer
          description: Number of results per page
        - name: pageToken
          in: query
          type: string
          description: Pagination token
      - name: createbrand
        method: POST
        description: Create a Brand
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-projects-project_id-brands-brand_id
      path: /v1/projects/{project_id}/brands/{brand_id}
      operations:
      - name: getbrand
        method: GET
        description: Get a Brand
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: updatebrand
        method: PUT
        description: Update a Brand
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletebrand
        method: DELETE
        description: Delete a Brand
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-projects-project_id-brands-brand_id}:submit
      path: /v1/projects/{project_id}/brands/{brand_id}:submit
      operations:
      - name: submitbrand
        method: POST
        description: Submit a Brand for Verification
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: v1-projects-project_id-brands:submit
      path: /v1/projects/{project_id}/brands:submit
      operations:
      - name: createandsubmitbrand
        method: POST
        description: Create and Submit a Brand
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: bearer
      token: '{{env.SINCH_API_KEY}}'
  exposes:
  - type: rest
    namespace: brands-brands-rest
    port: 8080
    description: REST adapter for Sinch Brands API — Brands. One Spectral-compliant resource per consumed operation, prefixed
      with /v1.
    resources:
    - path: /v1/v1/projects/{project-id}/brands
      name: v1-projects-project-id-brands
      description: REST surface for v1-projects-project_id-brands.
      operations:
      - method: GET
        name: listbrands
        description: List Brands
        call: brands-brands.listbrands
        with:
          pageSize: rest.pageSize
          pageToken: rest.pageToken
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createbrand
        description: Create a Brand
        call: brands-brands.createbrand
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/projects/{project-id}/brands/{brand-id}
      name: v1-projects-project-id-brands-brand-id
      description: REST surface for v1-projects-project_id-brands-brand_id.
      operations:
      - method: GET
        name: getbrand
        description: Get a Brand
        call: brands-brands.getbrand
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatebrand
        description: Update a Brand
        call: brands-brands.updatebrand
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletebrand
        description: Delete a Brand
        call: brands-brands.deletebrand
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/projects/{project-id}/brands/brand-id-submit
      name: v1-projects-project-id-brands-brand-id-submit
      description: REST surface for v1-projects-project_id-brands-brand_id}:submit.
      operations:
      - method: POST
        name: submitbrand
        description: Submit a Brand for Verification
        call: brands-brands.submitbrand
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/projects/{project-id}/brands-submit
      name: v1-projects-project-id-brands-submit
      description: REST surface for v1-projects-project_id-brands:submit.
      operations:
      - method: POST
        name: createandsubmitbrand
        description: Create and Submit a Brand
        call: brands-brands.createandsubmitbrand
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: brands-brands-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sinch Brands API — Brands. One tool per consumed operation, routed inline through this capability's
      consumes block.
    tools:
    - name: list-brands
      description: List Brands
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: brands-brands.listbrands
      with:
        pageSize: tools.pageSize
        pageToken: tools.pageToken
      outputParameters:
      - type: object
        mapping: $.
    - name: create-brand
      description: Create a Brand
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: brands-brands.createbrand
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-brand
      description: Get a Brand
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: brands-brands.getbrand
      outputParameters:
      - type: object
        mapping: $.
    - name: update-brand
      description: Update a Brand
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: brands-brands.updatebrand
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-brand
      description: Delete a Brand
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: brands-brands.deletebrand
      outputParameters:
      - type: object
        mapping: $.
    - name: submit-brand-verification
      description: Submit a Brand for Verification
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: brands-brands.submitbrand
      outputParameters:
      - type: object
        mapping: $.
    - name: create-and-submit-brand
      description: Create and Submit a Brand
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: brands-brands.createandsubmitbrand
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.