action contract_p_get_sso_config_resources { label: "get_sso_config_resources" provider: contract_p method: GET path: "/sso/config" encoding: json input: { type: "object" properties: { "X-Fields": { type: "string" format: "mask" } } additionalProperties: false } output: { type: "object" required: ["id", "provider"] properties: { extra: { type: "object" properties: { entity_id: { type: "string" description: "your entity id" } specification_url: { type: "string" description: "Federation metadata document" } } } id: { type: "string" } provider: { type: "string" description: "usually your company name, only used for visualisation: log in as employee" } type: { type: "string" description: "Type of SSO integration, for now only SAML is supported" enum: ["saml"] } url: { type: "string" description: "SAML-P sign-on endpoint" } } } }