Product
Jentic OSThe workplace. An in-house AI platform for every employeeJentic OneSafe access. Agents reach your systems without holding keysJentic AIRThe foundation. Gets your existing platforms ready for AI
Pricing
Developers

GET STARTED

API DirectoryBrowse 10,000+ APIs Ready For AI Agent IntegrationDocumentationGuides and API reference

TOOLS

API ScoringCheck your AI Readiness using our scorecardArazzo UIVisualize Arazzo Workflows As Interactive DocumentationArazzo EditorBuild And Edit Multi-Step API Workflows Visually

COMMUNITY

GitHubOpen source projects and examplesOpen StandardsBuilt on open specs. Never locked in.
Resources
Company
About UsOur mission and teamCareersJoin our teamContactGet in touch
Try it now
Jentic OSJentic OneJentic AIR
Pricing
API DirectoryDocumentationAPI ScoringArazzo UIArazzo EditorGitHubOpen Standards
Resources
About UsCareersContact
Try it now
JenticJentic
Products
  • Jentic OS
  • Jentic One
  • Jentic AIR
For Developers
  • API Directory
  • Documentation
  • GitHub
Company
  • About Jentic
  • Careers
  • Contact Us
  • Trust Centre
ISO/IEC 27001:2022 certification badge issued by Prescient SecurityISO/IEC 27001:2022 certification badge issued by Prescient Security

Information Security Management System

Certified to ISO/IEC 27001:2022 by Prescient Security

Terms & Conditions•Privacy Policy•
© 2026 Jentic. All rights reserved.
Switch to light modeSwitch to dark mode
APIs / Identity Auth / Amazonaws / AWS SSO Identity Store
AWS SSO Identity Store logo

AWS SSO Identity Store

Browse all Amazonaws APIs
Agent-ready OpenAPI document · curated by JenticIdentity AuthDirectory Serviceshmac19 EndpointsREST

Know of an official OpenAPI document? Contribute it →

For Agents

Create, update, and remove users, groups, and group memberships in the AWS IAM Identity Center directory used for single sign-on across AWS accounts and applications.

Use for: I need to create a new user in IAM Identity Center for a contractor, Add an existing user to the engineers group, Find a user by their primary email address, List all groups in the Identity Store instance

Not supported: Does not handle permission set assignment, sign-in flows, or external IdP federation - use for IAM Identity Center user, group, and membership management only.

Jentic publishes the only available OpenAPI specification for AWS SSO Identity Store, keeping it validated and agent-ready. The Identity Store service backs AWS IAM Identity Center (formerly AWS SSO) and is the directory of users and groups that can be assigned permissions across AWS accounts and applications. The API covers full lifecycle management of users, groups, and group memberships across 19 operations and is the canonical place to programmatically manage identities for SSO-enabled AWS accounts.

Jentic One on GithubView OpenAPI Document

Install Jentic One Beta

Connect the AWS SSO Identity Store to your agent

Jentic One is a self-hosted execution layer for AI agents. It lets your agent call the AWS SSO Identity Store, or any other public or private API you need. You set the rules, the agent never sees your credentials, and every call is logged.

Two steps, two machines. Install the instance in a safe environment, then register your agent from wherever it runs.

1

Step 1: Jentic One Host machine

# On the machine that will host your Jentic One instance:
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Famazonaws.com%2Faws-identitystore" | sh
2

Step 2: Agent machine

# On the machine where your agent runs (keep this separate from the instance):
curl -fsSL "https://jentic.com/install.sh?src=apis&api=%2Fapis%2Famazonaws.com%2Faws-identitystore" | sh
jentic register       # connects your agent to your Jentic One instance

Jentic One is in public beta. The setup above keeps your agent separate from the instance, which is what you want before using real credentials: an agent running as the same OS user as Jentic One can read its stored keys directly. Just evaluating? A single local install is fine to start. See the secure deployment guide for the tiers.

Capabilities

What an agent can do with AWS SSO Identity Store API.

Create and delete users in the IAM Identity Center directory

Create and delete groups and update group attributes

Add and remove users from groups via group membership records

Look up users and groups by attribute (email, display name, external ID)

List all users, groups, and memberships in an Identity Store instance

Update user attributes such as name, emails, addresses, and phone numbers

Check whether a specific user is a member of a specific group

Use Cases

Patterns agents use AWS SSO Identity Store API for, with concrete tasks.

★ Automated User Provisioning

Provision and deprovision SSO users programmatically when employees join or leave the organisation. CreateUser writes the user to the Identity Store, CreateGroupMembership adds them to the right groups, and DeleteUser removes them when they offboard. The whole flow runs from an HRIS or ticket system without operator clicks in the AWS console.

Call CreateUser with UserName, DisplayName, Emails, and Name attributes, then CreateGroupMembership for each group the new hire should belong to

Group-Based Access Audit

Audit who has access to what by listing every group and walking its memberships. ListGroups, ListGroupMemberships, and DescribeUser together produce a full picture of the directory state. This is useful for periodic access reviews and for automated drift detection against an HR system of record.

Call ListGroups for the IdentityStoreId, then for each group call ListGroupMemberships and resolve each MemberId via DescribeUser

External Identity Reconciliation

Reconcile identities created elsewhere - for example by an external IdP or HRIS - with the Identity Store. GetUserId and GetGroupId resolve users and groups by AlternateIdentifier, including external IDs and unique attributes, so reconciliation logic can detect duplicates and merge or update without creating drift.

Call GetUserId with AlternateIdentifier set to UniqueAttribute on attribute path emails.value to resolve an SSO user from an email

AI Agent Identity Operations

Through Jentic, an AI agent can act as an identity operator - onboarding users, adjusting group memberships in response to ticket approvals, and answering 'who has access to X' questions in natural language. The 19 Identity Store operations are exposed as Jentic tools so the agent picks the right one from intent.

Search Jentic for 'add user to aws sso group', load the CreateGroupMembership schema, and execute it with IdentityStoreId, GroupId, and a MemberId reference to the user

Key Endpoints

19 endpoints — jentic publishes the only available openapi specification for aws sso identity store, keeping it validated and agent-ready.

METHOD

PATH

DESCRIPTION

POST

/

CreateUser - create a new user in the Identity Store

POST

/

DeleteUser - delete a user

POST

/

CreateGroup - create a new group

POST

/

DeleteGroup - delete a group

POST

/

CreateGroupMembership - add a user to a group

POST

/

DeleteGroupMembership - remove a user from a group

POST

/

GetUserId - resolve a user by AlternateIdentifier

POST

/

ListGroupMemberships - list members of a group

POST

/

CreateUser - create a new user in the Identity Store

POST

/

DeleteUser - delete a user

POST

/

CreateGroup - create a new group

POST

/

DeleteGroup - delete a group

POST

/

CreateGroupMembership - add a user to a group

POST

/

DeleteGroupMembership - remove a user from a group

POST

/

GetUserId - resolve a user by AlternateIdentifier

POST

/

ListGroupMemberships - list members of a group

Why Jentic?

What agents get from Jentic-routed access to this vendor.

Setup

Setup

Wiring the AWS SSO Identity Store by hand means implementing AWS Signature v4 request signing, resolving the identitystore host, and dispatching each user, group, and membership action through one endpoint by the operation named in the request. Through Jentic you install once, import AWS SSO Identity Store from the API Directory, store the AWS credentials once, and your agent calls it.

Permission scoping

Permission scoping

This API routes every call through a single endpoint with the action named in the request, covering operations like CreateUser, CreateGroup, and CreateGroupMembership. Limit the agent to the operations it needs, such as GetUserId and ListGroupMemberships, so DeleteUser and DeleteGroup are not included unless you add them.

Credential management

Credential isolation

Your AWS credentials are stored once, encrypted, by your own Jentic One instance and injected at execution time. They never enter the agent's prompt, logs, or context.

Intent-based discovery

Intent-based discovery

Agents search Jentic by intent such as 'create an IAM Identity Center user' or 'add a user to a group', and Jentic returns the matching AWS SSO Identity Store operation with its input schema so the agent calls the right endpoint without browsing the AWS service reference.

Related APIs

Alternatives and complements available in the Jentic catalogue.

Complementary

AWS SSO Admin

→

Manages permission sets and account assignments that reference Identity Store users and groups

Use SSO Admin to assign permission sets to identities; use Identity Store to manage the underlying users and groups.

Complementary

AWS SSO

→

User-facing portal API for SSO sign-in and role assumption

Use SSO for end-user sign-in flows; use Identity Store for administrative directory management.

Alternative

Amazon Cognito Identity

→

Customer-facing identity directory, an alternative when the directory is not for workforce SSO

Choose Cognito Identity for end-user app sign-up; choose Identity Store for workforce identities used with IAM Identity Center.

FAQs

Specific to using AWS SSO Identity Store API through Jentic.

Why is there no official OpenAPI spec for AWS SSO Identity Store?

AWS does not publish an OpenAPI specification. Jentic generates and maintains this spec so that AI agents and developers can call AWS SSO Identity Store via structured tooling. It is validated against the live API and kept up to date. Get started with Jentic One, the self-hosted execution layer.

What authentication does the AWS SSO Identity Store API use?

The API uses AWS Signature Version 4 (HMAC) request signing with an AWS access key ID and secret access key. Through Jentic, AWS credentials are stored encrypted in the vault and the agent never holds raw access keys.

Can I add a user to a group with the Identity Store API?

Yes. Call CreateGroupMembership with the IdentityStoreId, the GroupId, and a MemberId object containing the UserId. To remove the membership later, call DeleteGroupMembership with the returned MembershipId.

What are the rate limits for the AWS SSO Identity Store API?

AWS applies per-account, per-region request quotas to Identity Store operations and these vary by call. List operations have higher throughput than mutation operations like CreateUser. Check AWS Service Quotas for current limits in your region.

How do I create a user through Jentic?

Search Jentic for 'create aws sso user', load the CreateUser schema, and execute with IdentityStoreId, UserName, DisplayName, Name, and Emails. The response returns the new UserId, which can be used immediately in CreateGroupMembership calls.

Does this API support SCIM for IdP synchronisation?

The Identity Store control-plane API is separate from the SCIM endpoint exposed by IAM Identity Center for IdP sync. Use this API for direct programmatic management when SCIM is not in use, or to read users and groups regardless of how they were provisioned.

Can I limit what my agent is allowed to do with the AWS SSO Identity Store API?

Yes. Because Jentic One is self-hosted, you decide which of the Identity Store operations your agent may call, even though every request routes through a single endpoint with the action named in the request. You can allow read-only operations such as GetUserId and ListGroupMemberships while withholding mutating ones like CreateUser, DeleteUser, and DeleteGroup until you explicitly add them. Your AWS credentials stay on your own instance and are injected only for the operations you permit.

GET STARTED

Start building with AWS SSO Identity Store API

Explore with Jentic One
View OpenAPI Document