|
2 | 2 | "openapi": "3.0.3", |
3 | 3 | "info": { |
4 | 4 | "title": "Enterprise SSO & Directory Sync", |
5 | | - "version": "1.47.0", |
| 5 | + "version": "1.52.2", |
6 | 6 | "description": "This is the API documentation for Polis.", |
7 | 7 | "termsOfService": "/tos", |
8 | 8 | "contact": { |
|
20 | 20 | } |
21 | 21 | ], |
22 | 22 | "servers": [ |
23 | | - { |
24 | | - "url": "https://api.eu.boxyhq.com", |
25 | | - "description": "Cloud" |
26 | | - }, |
27 | 23 | { |
28 | 24 | "url": "http://localhost:5225", |
29 | 25 | "description": "Local" |
|
2113 | 2109 | "id": "038e767b-9bc6-4dbd-975e-fbc38a8e7d82", |
2114 | 2110 | "first_name": "Deepak", |
2115 | 2111 | "last_name": "Prabhakara", |
2116 | | - "email": "deepak@boxyhq.com", |
| 2112 | + "email": "deepak@example.com", |
2117 | 2113 | "active": true, |
2118 | 2114 | "raw": { |
2119 | 2115 | "schemas": ["urn:ietf:params:scim:schemas:core:2.0:User"], |
2120 | | - "userName": "deepak@boxyhq.com", |
| 2116 | + "userName": "deepak@example.com", |
2121 | 2117 | "name": { |
2122 | 2118 | "givenName": "Deepak", |
2123 | 2119 | "familyName": "Prabhakara" |
2124 | 2120 | }, |
2125 | 2121 | "emails": [ |
2126 | 2122 | { |
2127 | 2123 | "primary": true, |
2128 | | - "value": "deepak@boxyhq.com", |
| 2124 | + "value": "deepak@example.com", |
2129 | 2125 | "type": "work" |
2130 | 2126 | } |
2131 | 2127 | ], |
|
2185 | 2181 | "mappings": { |
2186 | 2182 | "type": "array", |
2187 | 2183 | "items": { |
2188 | | - "type": "string" |
| 2184 | + "$ref": "#/components/schemas/AttributeMapping" |
2189 | 2185 | }, |
2190 | 2186 | "description": "Mapping of attributes from the IdP to SP" |
2191 | 2187 | }, |
|
2202 | 2198 | "type": "string" |
2203 | 2199 | }, |
2204 | 2200 | "description": "If creating an OIDC app, provide the redirect URL" |
| 2201 | + }, |
| 2202 | + "samlAudienceOverride": { |
| 2203 | + "type": "string", |
| 2204 | + "description": "Override the SAML Audience on a per app basis" |
| 2205 | + }, |
| 2206 | + "ttlInMinutes": { |
| 2207 | + "type": "number", |
| 2208 | + "description": "Time-to-live in minutes for the SAML assertion, does not apply to OIDC flows" |
2205 | 2209 | } |
2206 | 2210 | } |
2207 | 2211 | }, |
|
2222 | 2226 | } |
2223 | 2227 | ] |
2224 | 2228 | }, |
| 2229 | + "AttributeMapping": { |
| 2230 | + "type": "object", |
| 2231 | + "properties": { |
| 2232 | + "key": { |
| 2233 | + "type": "string", |
| 2234 | + "description": "SP attribute" |
| 2235 | + }, |
| 2236 | + "value": { |
| 2237 | + "type": "string", |
| 2238 | + "description": "IdP attribute" |
| 2239 | + } |
| 2240 | + } |
| 2241 | + }, |
2225 | 2242 | "IdentityFederationResponse": { |
2226 | 2243 | "type": "object", |
2227 | 2244 | "properties": { |
|
0 commit comments