Adrian Mitev
Adrian Mitev

Reputation: 4752

RESTful APIs for WSO2 Identity Server 5.0

Are there restful APIs for managing users and registering Service provider for SAML2 Single-Sign On. I have a lot of applications that are using the identity server and would like them to self-register as providers.

Upvotes: 2

Views: 2209

Answers (2)

Asela
Asela

Reputation: 5821

All user store operations would be exposed via web services. External application can use these web services to add/delete/update/get AD users and groups. Identity Server expose two type of web services.

  1. REST web service according to the SCIM provisioning specification. Details from here. This would be the standard way to do this.

  2. SOAP based Web service. You can find more detail from here

Also if you want to add service providers without using UI. You can also do that by using web service in Identity Server. It has only exposed as SOAP based service which is called as IdentitySAMLSSOConfigService

Upvotes: 2

user8658912
user8658912

Reputation: 1592

Have you tried SCIM? It provides a REST API out of the box:

https://docs.wso2.com/display/IS500/WSO2+Identity+Server+as+a+SCIM+Service+Provider

Upvotes: 1

Related Questions