SAP BI Tools · Arazzo Workflow

SAP BI Tools Create a SAC Team With a Member

Version 1.0.0

Create a SAP Analytics Cloud user via SCIM 2.0, then create a team that includes the new user as a member.

1 workflow 2 source APIs 1 provider
View Spec View on GitHub AnalyticsBusiness IntelligenceData VisualizationReportingSAPArazzoWorkflows

Provider

sap-bi-tools

Workflows

create-team-with-member
Create a user and a team that includes that user as a member.
Creates a SCIM 2.0 user, then creates a SCIM 2.0 team with the newly created user assigned as a member.
2 steps inputs: email, familyName, givenName, teamName, userName outputs: teamDisplayName, teamId, userId
1
createUser
Create a new SCIM 2.0 user and capture the assigned user id.
2
createTeam
Create a new SCIM 2.0 team that includes the newly created user as its first member.

Source API Descriptions

Arazzo Workflow Specification

Raw ↑
arazzo: 1.0.1
info:
  title: SAP BI Tools Create a SAC Team With a Member
  summary: Create a SAP Analytics Cloud user via SCIM 2.0, then create a team that includes the new user as a member.
  description: >-
    A team-bootstrapping pattern for SAP Analytics Cloud access control. The
    workflow creates a new SCIM 2.0 user from the supplied profile attributes,
    captures the assigned user id, and then creates a SCIM 2.0 team (group)
    that lists the new user as its first member. SAP Analytics Cloud uses
    OAuth 2.0 bearer authentication, so no logon token is threaded between
    steps. Every step spells out its request inline so the flow can be read and
    executed without opening the underlying OpenAPI description.
  version: 1.0.0
sourceDescriptions:
- name: teamsApi
  url: ../openapi/sap-bi-tools-teams-api-openapi.yml
  type: openapi
- name: usersApi
  url: ../openapi/sap-bi-tools-users-api-openapi.yml
  type: openapi
workflows:
- workflowId: create-team-with-member
  summary: Create a user and a team that includes that user as a member.
  description: >-
    Creates a SCIM 2.0 user, then creates a SCIM 2.0 team with the newly
    created user assigned as a member.
  inputs:
    type: object
    required:
    - userName
    - givenName
    - familyName
    - email
    - teamName
    properties:
      userName:
        type: string
        description: The login username for the new user.
      givenName:
        type: string
        description: The first name of the new user.
      familyName:
        type: string
        description: The last name of the new user.
      email:
        type: string
        description: The primary email address of the new user.
      teamName:
        type: string
        description: The display name for the new team.
  steps:
  - stepId: createUser
    description: Create a new SCIM 2.0 user and capture the assigned user id.
    operationId: createUserScim2
    requestBody:
      contentType: application/json
      payload:
        userName: $inputs.userName
        name:
          givenName: $inputs.givenName
          familyName: $inputs.familyName
        emails:
        - value: $inputs.email
          primary: true
        active: true
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      userId: $response.body#/id
      userDisplayName: $response.body#/displayName
  - stepId: createTeam
    description: >-
      Create a new SCIM 2.0 team that includes the newly created user as its
      first member.
    operationId: createTeam
    requestBody:
      contentType: application/json
      payload:
        displayName: $inputs.teamName
        members:
        - value: $steps.createUser.outputs.userId
          display: $steps.createUser.outputs.userDisplayName
    successCriteria:
    - condition: $statusCode == 201
    outputs:
      teamId: $response.body#/id
      teamDisplayName: $response.body#/displayName
  outputs:
    userId: $steps.createUser.outputs.userId
    teamId: $steps.createTeam.outputs.teamId
    teamDisplayName: $steps.createTeam.outputs.teamDisplayName

Work with this as data

Every workflow here is available over the APIs.io API and to AI agents over MCP.

MCP server

One button, every client — Claude, Cursor, VS Code and the rest.

https://apis.io/mcp

Tools for arazzo workflows

4 MCP tools reach this
  • find_arazzoBrowse and filter every workflow in the catalog.
  • apis_io_searchSTART HERE — APIs, providers and tags for one query, each with its total.
  • resolveTurn a domain, URL or GitHub org into the provider it belongs to.
  • find_cohortsEvery scored population of providers in the catalog.
All 92 tools →

Call it yourself

curl for this page
This workflow
curl "https://apis.io/api/v1/arazzo/sap-bi-tools-create-team-with-member-workflow"
All arazzo workflows
curl "https://apis.io/api/v1/arazzo?limit=25"

Discovery needs no key. Ratings and market analysis are Pro.

Get an API key

Free tier, no form to fill in. Signing in shares your email address with us — we store it to create your key and to recognise you if you sign in with another provider. See our Privacy Policy and Terms.

A second provider on the same verified email joins the account you already have.