action contract_p_post_sso_config_resources { label: "post_sso_config_resources" provider: contract_p method: POST path: "/sso/config" encoding: json input: { type: "object" properties: { "X-Fields": { type: "string" format: "mask" } extra: { type: "object" properties: { entity_id: { type: "string" description: "your entity id" } specification_url: { type: "string" description: "Federation metadata document" } } } 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" } } required: ["provider"] additionalProperties: false } output: { type: "object" additionalProperties: true } }