Update SSO
Updates SSO in the workspace.
Required scopes: WORKSPACE
Resource URL
PATCH workspaces/:domain/sso
URL Parameters
Name | Type | Description |
---|---|---|
domain Required | String | The workspace domain. |
POST Parameters
Name | Type | Description |
---|---|---|
sso_url | String | The SSO URL / SAML endpoint / Identity provider Single sign-on URL. |
issuer | String | Issuer URI, IDP Entity ID, SSO issuer, provider issuer, AD identifier etc. |
certificate | String | The x509 certificate content. |
signature_method | String | Available values are sha1 , sha256 , sha512 . |
digest_method | String | Available values are sha1 , sha256 , sha512 . |
require_sso_for_all_members | Boolean | Require SAML SSO authentication. |
Example
Request
PATCH https://api.buddy.works/workspaces/buddy/sso
Sample Response
HTTP
Status: 200 OK
X-Rate-Limit-Limit: 1
X-Rate-Limit-Remaining: 999
JSON
{
"sso_url": "https://login.microsoftonline.com/bbe6af31-7a4f-4c88-b180-ed18ab154b24/saml2",
"issuer": "https://sts.windows.net/bcde6af31-7a4f-4c88-b180-ed18ab054b44/",
"certificate": "-----BEGIN CERTIFICATE-----\r\nMIIC8DXCAdigAwIBAgIQKk9e1LkXXX/rMC+MrqGciiXILL\r\nxbLtT2E+SdHXgxKMXsq/\r\n-----END CERTIFICATE-----\r\n",
"signature_method": "sha256",
"digest_method": "sha256",
"require_sso_for_all_members": false
}
Last modified on March 23, 2023