SnapLogic · Capability

SnapLogic Public APIs — Asset Management

SnapLogic Public APIs — Asset Management. 6 operations. Lead operation: Get Asset Privileges. Self-contained Naftiko capability covering one Snaplogic business surface.

Run with Naftiko SnaplogicAsset Management

What You Can Do

GET
Getassetprivileges — Get Asset Privileges
/v1/assetapi/acl/{path}
POST
Grantassetaccess — Grant Asset Access
/v1/assetapi/acl/{path}
DELETE
Revokeassetaccess — Revoke Asset Access
/v1/assetapi/acl/{path}
POST
Createproject — Create Project
/v1/assetapi/project/{path}
PUT
Renameproject — Rename Project
/v1/assetapi/project/{path}
DELETE
Deleteproject — Delete Project
/v1/assetapi/project/{path}

MCP Tools

get-asset-privileges

Get Asset Privileges

read-only idempotent
grant-asset-access

Grant Asset Access

revoke-asset-access

Revoke Asset Access

idempotent
create-project

Create Project

rename-project

Rename Project

idempotent
delete-project

Delete Project

idempotent

Capability Spec

public-apis-asset-management.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: SnapLogic Public APIs — Asset Management
  description: 'SnapLogic Public APIs — Asset Management. 6 operations. Lead operation: Get Asset Privileges. Self-contained
    Naftiko capability covering one Snaplogic business surface.'
  tags:
  - Snaplogic
  - Asset Management
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SNAPLOGIC_API_KEY: SNAPLOGIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: public-apis-asset-management
    baseUri: https://{org}.snaplogic.com/api/1
    description: SnapLogic Public APIs — Asset Management business capability. Self-contained, no shared references.
    resources:
    - name: assetapi-acl-path
      path: /assetapi/acl/{path}
      operations:
      - name: getassetprivileges
        method: GET
        description: Get Asset Privileges
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
      - name: grantassetaccess
        method: POST
        description: Grant Asset Access
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: revokeassetaccess
        method: DELETE
        description: Revoke Asset Access
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    - name: assetapi-project-path
      path: /assetapi/project/{path}
      operations:
      - name: createproject
        method: POST
        description: Create Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: renameproject
        method: PUT
        description: Rename Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deleteproject
        method: DELETE
        description: Delete Project
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
    authentication:
      type: bearer
      token: '{{env.SNAPLOGIC_API_KEY}}'
  exposes:
  - type: rest
    namespace: public-apis-asset-management-rest
    port: 8080
    description: REST adapter for SnapLogic Public APIs — Asset Management. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/assetapi/acl/{path}
      name: assetapi-acl-path
      description: REST surface for assetapi-acl-path.
      operations:
      - method: GET
        name: getassetprivileges
        description: Get Asset Privileges
        call: public-apis-asset-management.getassetprivileges
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: grantassetaccess
        description: Grant Asset Access
        call: public-apis-asset-management.grantassetaccess
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: revokeassetaccess
        description: Revoke Asset Access
        call: public-apis-asset-management.revokeassetaccess
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/assetapi/project/{path}
      name: assetapi-project-path
      description: REST surface for assetapi-project-path.
      operations:
      - method: POST
        name: createproject
        description: Create Project
        call: public-apis-asset-management.createproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: renameproject
        description: Rename Project
        call: public-apis-asset-management.renameproject
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deleteproject
        description: Delete Project
        call: public-apis-asset-management.deleteproject
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: public-apis-asset-management-mcp
    port: 9090
    transport: http
    description: MCP adapter for SnapLogic Public APIs — Asset Management. One tool per consumed operation, routed inline
      through this capability's consumes block.
    tools:
    - name: get-asset-privileges
      description: Get Asset Privileges
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: public-apis-asset-management.getassetprivileges
      outputParameters:
      - type: object
        mapping: $.
    - name: grant-asset-access
      description: Grant Asset Access
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: public-apis-asset-management.grantassetaccess
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: revoke-asset-access
      description: Revoke Asset Access
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: public-apis-asset-management.revokeassetaccess
      outputParameters:
      - type: object
        mapping: $.
    - name: create-project
      description: Create Project
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: public-apis-asset-management.createproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: rename-project
      description: Rename Project
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: public-apis-asset-management.renameproject
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-project
      description: Delete Project
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: public-apis-asset-management.deleteproject
      outputParameters:
      - type: object
        mapping: $.