Sumo Logic · Capability

Sumo Logic API — scimUserManagement

Sumo Logic API — scimUserManagement. 6 operations. Lead operation: List SCIM Users. Self-contained Naftiko capability covering one Sumo Logic business surface.

Run with Naftiko Sumo LogicscimUserManagement

What You Can Do

GET
Listscimusers — List SCIM Users
/v1/v1/scim/users
POST
Createscimuser — Create SCIM User
/v1/v1/scim/users
GET
Getscimuserbyid — Get A SCIM User
/v1/v1/scim/users/{id}
PUT
Updatescimuser — Update SCIM User
/v1/v1/scim/users/{id}
DELETE
Deletescimuserbyid — Delete SCIM User
/v1/v1/scim/users/{id}
PATCH
Patchscimuser — Update SCIM User Attributes
/v1/v1/scim/users/{id}

MCP Tools

list-scim-users

List SCIM Users

read-only idempotent
create-scim-user

Create SCIM User

get-scim-user

Get A SCIM User

read-only idempotent
update-scim-user

Update SCIM User

idempotent
delete-scim-user

Delete SCIM User

idempotent
update-scim-user-attributes

Update SCIM User Attributes

idempotent

Capability Spec

sumo-logic-scimusermanagement.yaml Raw ↑
naftiko: 1.0.0-alpha2
info:
  label: Sumo Logic API — scimUserManagement
  description: 'Sumo Logic API — scimUserManagement. 6 operations. Lead operation: List SCIM Users. Self-contained Naftiko
    capability covering one Sumo Logic business surface.'
  tags:
  - Sumo Logic
  - scimUserManagement
  created: '2026-05-19'
  modified: '2026-05-19'
binds:
- namespace: env
  keys:
    SUMO_LOGIC_API_KEY: SUMO_LOGIC_API_KEY
capability:
  consumes:
  - type: http
    namespace: sumo-logic-scimusermanagement
    baseUri: https://api.au.sumologic.com/api
    description: Sumo Logic API — scimUserManagement business capability. Self-contained, no shared references.
    resources:
    - name: v1-scim-Users
      path: /v1/scim/Users
      operations:
      - name: listscimusers
        method: GET
        description: List SCIM Users
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: startIndex
          in: query
          type: integer
          description: The index of the first result to return. Defaults to 1 if not specified, a value less than 1 SHALL
            be interpreted as 1
        - name: count
          in: query
          type: integer
          description: The maximum number of results to return. Defaults to 100
        - name: filter
          in: query
          type: string
          description: Find user with the given email address
        - name: sortOrder
          in: query
          type: string
          description: The sort order. Use "ascending" or "descending"
        - name: sortBy
          in: query
          type: string
          description: Sort the list of users by the `givenName`, `familyName`, or `emails` field
      - name: createscimuser
        method: POST
        description: Create SCIM User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    - name: v1-scim-Users-id
      path: /v1/scim/Users/{id}
      operations:
      - name: getscimuserbyid
        method: GET
        description: Get A SCIM User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier of the SCIM user
          required: true
      - name: updatescimuser
        method: PUT
        description: Update SCIM User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier of the SCIM user
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
      - name: deletescimuserbyid
        method: DELETE
        description: Delete SCIM User
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier of the SCIM user to delete
          required: true
      - name: patchscimuser
        method: PATCH
        description: Update SCIM User Attributes
        outputRawFormat: json
        outputParameters:
        - name: result
          type: object
          value: $.
        inputParameters:
        - name: id
          in: path
          type: string
          description: Unique identifier of the SCIM user
          required: true
        - name: body
          in: body
          type: object
          description: Request body (JSON).
          required: true
    authentication:
      type: basic
      username: '{{env.SUMO_LOGIC_USER}}'
      password: '{{env.SUMO_LOGIC_PASS}}'
  exposes:
  - type: rest
    namespace: sumo-logic-scimusermanagement-rest
    port: 8080
    description: REST adapter for Sumo Logic API — scimUserManagement. One Spectral-compliant resource per consumed operation,
      prefixed with /v1.
    resources:
    - path: /v1/v1/scim/users
      name: v1-scim-users
      description: REST surface for v1-scim-Users.
      operations:
      - method: GET
        name: listscimusers
        description: List SCIM Users
        call: sumo-logic-scimusermanagement.listscimusers
        with:
          startIndex: rest.startIndex
          count: rest.count
          filter: rest.filter
          sortOrder: rest.sortOrder
          sortBy: rest.sortBy
        outputParameters:
        - type: object
          mapping: $.
      - method: POST
        name: createscimuser
        description: Create SCIM User
        call: sumo-logic-scimusermanagement.createscimuser
        with:
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
    - path: /v1/v1/scim/users/{id}
      name: v1-scim-users-id
      description: REST surface for v1-scim-Users-id.
      operations:
      - method: GET
        name: getscimuserbyid
        description: Get A SCIM User
        call: sumo-logic-scimusermanagement.getscimuserbyid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PUT
        name: updatescimuser
        description: Update SCIM User
        call: sumo-logic-scimusermanagement.updatescimuser
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
      - method: DELETE
        name: deletescimuserbyid
        description: Delete SCIM User
        call: sumo-logic-scimusermanagement.deletescimuserbyid
        with:
          id: rest.id
        outputParameters:
        - type: object
          mapping: $.
      - method: PATCH
        name: patchscimuser
        description: Update SCIM User Attributes
        call: sumo-logic-scimusermanagement.patchscimuser
        with:
          id: rest.id
          body: rest.body
        outputParameters:
        - type: object
          mapping: $.
  - type: mcp
    namespace: sumo-logic-scimusermanagement-mcp
    port: 9090
    transport: http
    description: MCP adapter for Sumo Logic API — scimUserManagement. One tool per consumed operation, routed inline through
      this capability's consumes block.
    tools:
    - name: list-scim-users
      description: List SCIM Users
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sumo-logic-scimusermanagement.listscimusers
      with:
        startIndex: tools.startIndex
        count: tools.count
        filter: tools.filter
        sortOrder: tools.sortOrder
        sortBy: tools.sortBy
      outputParameters:
      - type: object
        mapping: $.
    - name: create-scim-user
      description: Create SCIM User
      hints:
        readOnly: false
        destructive: false
        idempotent: false
      call: sumo-logic-scimusermanagement.createscimuser
      with:
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: get-scim-user
      description: Get A SCIM User
      hints:
        readOnly: true
        destructive: false
        idempotent: true
      call: sumo-logic-scimusermanagement.getscimuserbyid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-scim-user
      description: Update SCIM User
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: sumo-logic-scimusermanagement.updatescimuser
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.
    - name: delete-scim-user
      description: Delete SCIM User
      hints:
        readOnly: false
        destructive: true
        idempotent: true
      call: sumo-logic-scimusermanagement.deletescimuserbyid
      with:
        id: tools.id
      outputParameters:
      - type: object
        mapping: $.
    - name: update-scim-user-attributes
      description: Update SCIM User Attributes
      hints:
        readOnly: false
        destructive: false
        idempotent: true
      call: sumo-logic-scimusermanagement.patchscimuser
      with:
        id: tools.id
        body: tools.body
      outputParameters:
      - type: object
        mapping: $.