Resemble AI · Capability

API Reference — subpackage_projects

API Reference — subpackage_projects. 5 operations. Lead operation: List projects. Self-contained Naftiko capability covering one Resemble Ai business surface.

Run with Naftiko Resemble Aisubpackage_projects

What You Can Do

GET
Listprojects — List projects
/v1/projects
POST
Createproject — Create project
/v1/projects
GET
Getproject — Get project
/v1/projects/{project-uuid}
PUT
Updateproject — Update project
/v1/projects/{project-uuid}
DELETE
Deleteproject — Delete project
/v1/projects/{project-uuid}

MCP Tools

list-projects

List projects

read-only idempotent
create-project

Create project

get-project

Get project

read-only idempotent
update-project

Update project

idempotent
delete-project

Delete project

idempotent

Capability Spec

resemble-ai-subpackage-projects.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: API Reference — subpackage_projects
  description: 'API Reference — subpackage_projects. 5 operations. Lead operation: List projects. Self-contained Naftiko capability
    covering one Resemble Ai business surface.'
  tags:
  - Resemble Ai
  - subpackage_projects
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    RESEMBLE_AI_API_KEY: RESEMBLE_AI_API_KEY
capability:
  consumes:
  - type: http
    namespace: resemble-ai-subpackage-projects
    baseUri: https://f.cluster.resemble.ai
    description: API Reference — subpackage_projects business capability. Self-contained, no shared references.
    resources:
    - name: projects
      path: /projects
      operations:
      - name: listprojects
        method: GET
        description: List projects
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: page
          in: query
          type: integer
          required: true
        - name: page_size
          in: query
          type: integer
        - name: Authorization
          in: header
          type: string
          description: API token from https://app.resemble.ai/account/api
          required: true
      - name: createproject
        method: POST
        description: Create project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: Authorization
          in: header
          type: string
          description: API token from https://app.resemble.ai/account/api
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
    - name: projects-project_uuid
      path: /projects/{project_uuid}
      operations:
      - name: getproject
        method: GET
        description: Get project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: project_uuid
          in: path
          type: string
          required: true
        - name: Authorization
          in: header
          type: string
          description: API token from https://app.resemble.ai/account/api
          required: true
      - name: updateproject
        method: PUT
        description: Update project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: project_uuid
          in: path
          type: string
          required: true
        - name: Authorization
          in: header
          type: string
          description: API token from https://app.resemble.ai/account/api
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: false
      - name: deleteproject
        method: DELETE
        description: Delete project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: project_uuid
          in: path
          type: string
          required: true
        - name: Authorization
          in: header
          type: string
          description: API token from https://app.resemble.ai/account/api
          required: true
    authentication:
      type: bearer
      token: '{{env.RESEMBLE_AI_API_KEY}}'
  exposes:
  - type: rest
    namespace: resemble-ai-subpackage-projects-rest
    port: 8080
    description: REST adapter for API Reference — subpackage_projects. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/projects
      name: projects
      description: REST surface for projects.
      operations:
      - method: GET
        name: listprojects
        description: List projects
        call: resemble-ai-subpackage-projects.listprojects
        with:
          page: rest.page
          page_size: rest.page_size
          Authorization: rest.Authorization
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createproject
        description: Create project
        call: resemble-ai-subpackage-projects.createproject
        with:
          Authorization: rest.Authorization
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/projects/{project-uuid}
      name: projects-project-uuid
      description: REST surface for projects-project_uuid.
      operations:
      - method: GET
        name: getproject
        description: Get project
        call: resemble-ai-subpackage-projects.getproject
        with:
          project_uuid: rest.project_uuid
          Authorization: rest.Authorization
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updateproject
        description: Update project
        call: resemble-ai-subpackage-projects.updateproject
        with:
          project_uuid: rest.project_uuid
          Authorization: rest.Authorization
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteproject
        description: Delete project
        call: resemble-ai-subpackage-projects.deleteproject
        with:
          project_uuid: rest.project_uuid
          Authorization: rest.Authorization
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: resemble-ai-subpackage-projects-mcp
    port: 9090
    transport: http
    description: MCP adapter for API Reference — subpackage_projects. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-projects
      description: List projects
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: resemble-ai-subpackage-projects.listprojects
      with:
        page: tools.page
        page_size: tools.page_size
        Authorization: tools.Authorization
      outputParameters:
      - type: object
        mapping: $.
    - name: create-project
      description: Create project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: resemble-ai-subpackage-projects.createproject
      with:
        Authorization: tools.Authorization
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-project
      description: Get project
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: resemble-ai-subpackage-projects.getproject
      with:
        project_uuid: tools.project_uuid
        Authorization: tools.Authorization
      outputParameters:
      - type: object
        mapping: $.
    - name: update-project
      description: Update project
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: resemble-ai-subpackage-projects.updateproject
      with:
        project_uuid: tools.project_uuid
        Authorization: tools.Authorization
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-project
      description: Delete project
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: resemble-ai-subpackage-projects.deleteproject
      with:
        project_uuid: tools.project_uuid
        Authorization: tools.Authorization
      outputParameters:
      - type: object
        mapping: $.