openapi: 3.1.1 info: title: PingOne Platform Configuration Management DaVinci Admin Flow Versions API version: 2026.01.07-beta description: PingOne is a cloud-based framework for secure identity access management. The PingOne API gives developers the tools to integrate enterprise and third-party applications with the PingOne platform. contact: name: Ping Identity Developer Experiences url: https://developer.pingidentity.com email: devex@pingidentity.com license: identifier: Apache-2.0 name: Apache 2.0 servers: - url: https://api.pingone.{tld}/{basePath} variables: basePath: default: v1 tld: enum: - eu - com - asia - com.au - ca - sg default: com security: - bearerAuth: [] - oauth2: [] tags: - name: DaVinci Admin Flow Versions description: Operations for managing DaVinci flow versions paths: /environments/{environmentID}/flows/{flowID}/versions: get: operationId: getVersionsByFlowId parameters: - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID' - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.flowID' - $ref: '#/components/parameters/com.pingidentity.header.ExternalSessionID' - $ref: '#/components/parameters/com.pingidentity.header.ExternalTransactionID' responses: '200': description: Successful Operation. content: application/json: schema: $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flowversions.response.FlowVersionsResponse' '400': $ref: '#/components/responses/http.400.BadRequest' '401': $ref: '#/components/responses/http.401.Unauthorized' '403': $ref: '#/components/responses/http.403.Forbidden.P14C63085' '404': $ref: '#/components/responses/http.404.NotFound' '415': $ref: '#/components/responses/http.415.UnsupportedMediaType' '429': $ref: '#/components/responses/http.429.TooManyRequests' '500': $ref: '#/components/responses/http.500.InternalServerError' '502': $ref: '#/components/responses/http.502.BadGateway' '503': $ref: '#/components/responses/http.503.ServiceUnavailable' x-permission: davinci:read:flowVersions tags: - DaVinci Admin Flow Versions /environments/{environmentID}/flows/{flowID}/versions/{versionID}: get: operationId: getVersionByIdUsingFlowId parameters: - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID' - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.flowID' - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.versions.versionID' - $ref: '#/components/parameters/com.pingidentity.header.ExternalSessionID' - $ref: '#/components/parameters/com.pingidentity.header.ExternalTransactionID' responses: '200': description: Successful Operation. content: application/json: schema: $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flowversions.response.FlowVersionResponse' '400': $ref: '#/components/responses/http.400.BadRequest' '401': $ref: '#/components/responses/http.401.Unauthorized' '403': $ref: '#/components/responses/http.403.Forbidden.P14C63085' '404': $ref: '#/components/responses/http.404.NotFound' '415': $ref: '#/components/responses/http.415.UnsupportedMediaType' '429': $ref: '#/components/responses/http.429.TooManyRequests' '500': $ref: '#/components/responses/http.500.InternalServerError' '502': $ref: '#/components/responses/http.502.BadGateway' '503': $ref: '#/components/responses/http.503.ServiceUnavailable' x-permission: davinci:read:flowVersions tags: - DaVinci Admin Flow Versions delete: operationId: deleteVersionByIdUsingFlowId parameters: - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID' - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.flowID' - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.versions.versionID' - $ref: '#/components/parameters/com.pingidentity.header.ExternalSessionID' - $ref: '#/components/parameters/com.pingidentity.header.ExternalTransactionID' responses: '204': description: Successfully removed. No content. '400': $ref: '#/components/responses/http.400.BadRequest' '401': $ref: '#/components/responses/http.401.Unauthorized' '403': $ref: '#/components/responses/http.403.Forbidden.P14C63085' '404': $ref: '#/components/responses/http.404.NotFound' '415': $ref: '#/components/responses/http.415.UnsupportedMediaType' '429': $ref: '#/components/responses/http.429.TooManyRequests' '500': $ref: '#/components/responses/http.500.InternalServerError' '502': $ref: '#/components/responses/http.502.BadGateway' '503': $ref: '#/components/responses/http.503.ServiceUnavailable' x-permission: davinci:delete:flowVersions tags: - DaVinci Admin Flow Versions /environments/{environmentID}/flows/{flowID}/versions/{versionID}/alias: put: operationId: replaceAliasByFlowIdAndVersionId parameters: - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID' - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.flowID' - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.versions.versionID' - $ref: '#/components/parameters/com.pingidentity.header.ExternalSessionID' - $ref: '#/components/parameters/com.pingidentity.header.ExternalTransactionID' requestBody: content: application/json: schema: $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flowversions.data.FlowVersionAlias' required: true responses: '200': description: Successful Operation. content: application/json: schema: $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flowversions.response.FlowVersionAliasResponse' '400': $ref: '#/components/responses/http.400.BadRequest' '401': $ref: '#/components/responses/http.401.Unauthorized' '403': $ref: '#/components/responses/http.403.Forbidden.P14C63085' '404': $ref: '#/components/responses/http.404.NotFound' '415': $ref: '#/components/responses/http.415.UnsupportedMediaType' '429': $ref: '#/components/responses/http.429.TooManyRequests' '500': $ref: '#/components/responses/http.500.InternalServerError' '502': $ref: '#/components/responses/http.502.BadGateway' '503': $ref: '#/components/responses/http.503.ServiceUnavailable' x-permission: davinci:update:flowVersions tags: - DaVinci Admin Flow Versions /environments/{environmentID}/flows/{flowID}/versions/{versionID}/details: get: operationId: getDetailsByFlowIdAndVersionId parameters: - name: expand in: query required: false schema: type: string - $ref: '#/components/parameters/com.pingidentity.path.environments.environmentID' - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.flowID' - $ref: '#/components/parameters/com.pingidentity.path.environments.flows.versions.versionID' - $ref: '#/components/parameters/com.pingidentity.header.ExternalSessionID' - $ref: '#/components/parameters/com.pingidentity.header.ExternalTransactionID' responses: '200': description: Successful Operation. content: application/json: schema: $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flowversions.response.FlowVersionDetailResponse' '400': $ref: '#/components/responses/http.400.BadRequest' '401': $ref: '#/components/responses/http.401.Unauthorized' '403': $ref: '#/components/responses/http.403.Forbidden.P14C63085' '404': $ref: '#/components/responses/http.404.NotFound' '415': $ref: '#/components/responses/http.415.UnsupportedMediaType' '429': $ref: '#/components/responses/http.429.TooManyRequests' '500': $ref: '#/components/responses/http.500.InternalServerError' '502': $ref: '#/components/responses/http.502.BadGateway' '503': $ref: '#/components/responses/http.503.ServiceUnavailable' x-permission: davinci:read:flowVersions tags: - DaVinci Admin Flow Versions components: schemas: com.pingidentity.pingone.davinci.flowversions.response.FlowVersionsResponse: type: object properties: _embedded: type: object properties: versions: type: array items: type: object $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flowversions.response.FlowVersionResponse' title: DaVinci Flow Version Collection Response _embedded Versions required: - versions title: DaVinci Flow Version Collection Response _embedded _links: type: object properties: environment: $ref: '#/components/schemas/com.pingidentity.api.response.Link' self: $ref: '#/components/schemas/com.pingidentity.api.response.Link' required: - environment - self additionalProperties: $ref: '#/components/schemas/com.pingidentity.api.response.Link' title: DaVinci Flow Version Collection Response _links required: - _embedded - _links title: DaVinci Flow Version Collection Response com.pingidentity.pingone.davinci.flowversions.response.FlowVersionAliasResponse: type: object properties: _links: type: object properties: environment: $ref: '#/components/schemas/com.pingidentity.api.response.Link' self: $ref: '#/components/schemas/com.pingidentity.api.response.Link' flowVersion: $ref: '#/components/schemas/com.pingidentity.api.response.Link' required: - environment - self - flowVersion additionalProperties: $ref: '#/components/schemas/com.pingidentity.api.response.Link' title: DaVinci Flow Version Alias Response _links alias: type: string minLength: 1 title: DaVinci Flow Version Alias Response Alias required: - _links - alias title: DaVinci Flow Version Alias Response com.pingidentity.ApiErrorResponse: type: object properties: code: type: string title: General Error Code details: type: array items: $ref: '#/components/schemas/com.pingidentity.ErrorDetail' title: General Error Details id: type: string title: General Error Id message: type: string title: General Error Message title: General Error com.pingidentity.ApiErrorResponse.400: $schema: http://json-schema.org/draft/2020-12/schema# type: object properties: id: type: string format: uuid minLength: 1 title: Bad Request Error Id code: type: string enum: - INVALID_DATA - INVALID_REQUEST - REQUEST_FAILED minLength: 1 title: Bad Request Error Code message: type: string minLength: 1 title: Bad Request Error Message details: type: array items: type: object properties: code: type: string enum: - ACCOUNT_NOT_USABLE - CONSTRAINT_VIOLATION - EMPTY_VALUE - INVALID_FILTER - INVALID_OTP - INVALID_PARAMETER - INVALID_VALUE - MFA_AUTH_METHODS_CONFLICT - NO_PASSWORD - OUT_OF_RANGE - REQUIRED_VALUE - SIZE_LIMIT_EXCEEDED - UNIQUENESS_VIOLATION minLength: 1 title: Bad Request Error Detail Code message: type: string minLength: 1 title: Bad Request Error Detail Message innerError: type: object properties: allowedPattern: type: string title: Bad Request Error Detail Inner Error Allowed Pattern allowedValues: type: array items: type: string title: Bad Request Error Detail Inner Error Allowed Value title: Bad Request Error Detail Inner Error Allowed Values claim: type: string title: Bad Request Error Detail Inner Error Claim existingId: type: string format: uuid title: Bad Request Error Detail Inner Error Existing Id maximumValue: type: number title: Bad Request Error Detail Inner Error Maximum Value quotaLimit: type: number title: Bad Request Error Detail Inner Error Quota Limit quotaResetTime: type: string format: date-time title: Bad Request Error Detail Inner Error Quota Reset Time rangeMaximumValue: type: number title: Bad Request Error Detail Inner Error Range Maximum Value rangeMinimumValue: type: number title: Bad Request Error Detail Inner Error Range Minimum Value supportedAttributes: type: array items: type: string title: Bad Request Error Detail Inner Error Supported Attribute title: Bad Request Error Detail Inner Error Supported Attributes supportedOperators: type: array items: type: string title: Bad Request Error Detail Inner Error Supported Operator title: Bad Request Error Detail Inner Error Supported Operators additionalProperties: true title: Bad Request Error Detail Inner Error target: type: string title: Bad Request Error Detail Target required: - code - message title: Bad Request Error Detail title: Bad Request Error Details required: - id - code - message title: Bad Request Error com.pingidentity.ErrorDetail: type: object properties: code: type: string title: General Error Detail Code innerError: type: object additionalProperties: type: object title: General Error Detail Inner Error Additional Properties title: General Error Detail Inner Error message: type: string title: General Error Detail Message target: type: string title: General Error Detail Target title: General Error Detail com.pingidentity.ApiErrorResponse.403: $schema: http://json-schema.org/draft/2020-12/schema# type: object properties: code: type: string enum: - ACCESS_FAILED minLength: 1 title: Forbidden Error Code message: type: string minLength: 1 title: Forbidden Error Message details: type: array items: type: object properties: code: type: string enum: - INSUFFICIENT_PERMISSIONS - LICENSE_EXCEEDED minLength: 1 title: Forbidden Error Detail Code message: type: string minLength: 1 title: Forbidden Error Detail Message innerError: type: object properties: quotaLimit: type: number title: Forbidden Error Detail Inner Error Quota Limit additionalProperties: true title: Forbidden Error Detail Inner Error target: type: string title: Forbidden Error Detail Target required: - code - message title: Forbidden Error Detail title: Forbidden Error Details id: type: string format: uuid title: Forbidden Error Id required: - code - message title: Forbidden Error com.pingidentity.ApiErrorResponse.404: $schema: http://json-schema.org/draft/2020-12/schema# type: object properties: id: type: string format: uuid minLength: 1 title: Not Found Error Id code: type: string enum: - NOT_FOUND minLength: 1 title: Not Found Error Code message: type: string minLength: 1 title: Not Found Error Message details: type: array items: type: object properties: code: type: string minLength: 1 title: Not Found Error Detail Code message: type: string minLength: 1 title: Not Found Error Detail Message innerError: type: object additionalProperties: true title: Not Found Error Detail Inner Error target: type: string title: Not Found Error Detail Target required: - code - message title: Not Found Error Detail title: Not Found Error Details required: - id - code - message title: Not Found Error com.pingidentity.pingone.davinci.flowversions.response.FlowVersionResponse: type: object properties: _links: type: object properties: environment: $ref: '#/components/schemas/com.pingidentity.api.response.Link' self: $ref: '#/components/schemas/com.pingidentity.api.response.Link' details: $ref: '#/components/schemas/com.pingidentity.api.response.Link' flow.export: $ref: '#/components/schemas/com.pingidentity.api.response.Link' flow.revert: $ref: '#/components/schemas/com.pingidentity.api.response.Link' required: - environment - self - details - flow.export - flow.revert additionalProperties: $ref: '#/components/schemas/com.pingidentity.api.response.Link' title: DaVinci Flow Version Response _links environment: type: object properties: id: type: string minLength: 1 title: DaVinci Flow Version Response Environment Id required: - id title: DaVinci Flow Version Response Environment flow: type: object properties: id: type: string minLength: 1 title: DaVinci Flow Version Response Flow Id name: type: string minLength: 1 title: DaVinci Flow Version Response Flow Name required: - id - name title: DaVinci Flow Version Response Flow version: type: number title: DaVinci Flow Version Response Version alias: type: string title: DaVinci Flow Version Response Alias clonedFrom: type: number title: DaVinci Flow Version Response Cloned From createdAt: type: string format: date-time title: DaVinci Flow Version Response Created At deployedAt: type: string format: date-time title: DaVinci Flow Version Response Deployed At updatedAt: type: string format: date-time title: DaVinci Flow Version Response Updated At required: - _links - environment - flow - version title: DaVinci Flow Version Response com.pingidentity.api.response.Link: type: object properties: href: type: string format: uri minLength: 1 title: JSON HAL Link Href name: type: string title: JSON HAL Link Name profile: type: string format: uri title: JSON HAL Link Profile title: type: string format: uri title: JSON HAL Link Title type: type: string title: JSON HAL Link Type required: - href readOnly: true title: JSON HAL Link com.pingidentity.pingone.davinci.flows.response.fragment.Trigger: type: object properties: type: type: string enum: - AUTHENTICATION - SCHEDULE minLength: 1 title: DaVinci Flow Trigger Response Type configuration: type: object properties: mfa: type: object properties: enabled: type: boolean title: DaVinci Flow Trigger Response Configuration MFA Enabled time: type: number title: DaVinci Flow Trigger Response Configuration MFA Time timeFormat: type: string minLength: 1 title: DaVinci Flow Trigger Response Configuration MFA Time Format required: - enabled - time - timeFormat title: DaVinci Flow Trigger Response Configuration MFA pwd: type: object properties: enabled: type: boolean title: DaVinci Flow Trigger Response Configuration Password Enabled time: type: number title: DaVinci Flow Trigger Response Configuration Password Time timeFormat: type: string minLength: 1 title: DaVinci Flow Trigger Response Configuration Password Time Format required: - enabled - time - timeFormat title: DaVinci Flow Trigger Response Configuration Password required: - mfa - pwd title: DaVinci Flow Trigger Response Configuration required: - type title: DaVinci Flow Trigger Response com.pingidentity.pingone.davinci.flowversions.data.FlowVersionAlias: type: object additionalProperties: true properties: alias: pattern: ^(?=\S)[\p{L}\p{M}\p{N}\p{So}/.'_ -]*(?!.*((<)|(\$\{))) maxLength: 256 type: string minLength: 1 title: DaVinci Flow Version Alias Request Alias required: - alias title: DaVinci Flow Version Alias Request com.pingidentity.pingone.davinci.flowversions.response.FlowVersionDetailResponse: type: object properties: _links: type: object properties: environment: $ref: '#/components/schemas/com.pingidentity.api.response.Link' self: $ref: '#/components/schemas/com.pingidentity.api.response.Link' flow.export: $ref: '#/components/schemas/com.pingidentity.api.response.Link' flow.revert: $ref: '#/components/schemas/com.pingidentity.api.response.Link' connectorInstances.: $ref: '#/components/schemas/com.pingidentity.api.response.Link' variables..: $ref: '#/components/schemas/com.pingidentity.api.response.Link' required: - environment - self - flow.export - flow.revert additionalProperties: $ref: '#/components/schemas/com.pingidentity.api.response.Link' title: DaVinci Flow Version Detail Response _links alias: type: string title: DaVinci Flow Version Detail Response Alias color: type: string title: DaVinci Flow Version Detail Response Color connectors: type: array items: type: object properties: id: type: string minLength: 1 title: DaVinci Flow Version Detail Response Connector Id required: - id title: DaVinci Flow Version Detail Response Connector title: DaVinci Flow Version Detail Response Connectors createdAt: type: string format: date-time title: DaVinci Flow Version Detail Response Created At deployedAt: type: string format: date-time title: DaVinci Flow Version Detail Response Deployed At description: type: string title: DaVinci Flow Version Detail Response Description enabled: type: boolean title: DaVinci Flow Version Detail Response Enabled flow: type: object properties: id: type: string minLength: 1 title: DaVinci Flow Version Detail Response Flow Id name: type: string minLength: 1 title: DaVinci Flow Version Detail Response Flow Name required: - id - name title: DaVinci Flow Version Detail Response Flow graphData: $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flows.response.fragment.GraphData' inputSchema: $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flows.response.fragment.InputSchema' outputSchema: $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flows.response.fragment.OutputSchema' settings: $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flows.response.fragment.Settings' skcomponents: type: array items: type: object properties: id: type: string title: DaVinci Flow Version Detail Response Skcomponent Id name: type: string title: DaVinci Flow Version Detail Response Skcomponent Name nodeId: type: string title: DaVinci Flow Version Detail Response Skcomponent Node Id options: type: object properties: appSessionId: type: string title: DaVinci Flow Version Detail Response Skcomponent Options App Session Id appid: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Appid appsecret: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Appsecret browsertoken: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Browsertoken buttonImage: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Button Image buttonImageClass: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Button Image Class buttonImagePlacement: type: string enum: - left - right title: DaVinci Flow Version Detail Response Skcomponent Options Button Image Placement buttonType: type: string enum: - back-to-previous - form-submit - mfa-reset - next-event - nuance-audio - otp title: DaVinci Flow Version Detail Response Skcomponent Options Button Type cdn: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Cdn class: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Class collectBehavioralData: type: boolean default: true title: DaVinci Flow Version Detail Response Skcomponent Options Collect Behavioral Data contentType: type: string enum: - image - text title: DaVinci Flow Version Detail Response Skcomponent Options Content Type createP1User: type: string title: DaVinci Flow Version Detail Response Skcomponent Options CreateP 1 User customLoadingIndicator: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Custom Loading Indicator customLoadingIndicatorClass: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Custom Loading Indicator Class defaultLoadingColor: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Default Loading Color environmentId: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Environment Id errorId: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Error Id form: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Form height: type: string default: 600px title: DaVinci Flow Version Detail Response Skcomponent Options Height host: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Host id: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Id identityProviderId: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Identity Provider Id identityProviderIdEntry: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Identity Provider Id Entry identityProviderType: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Identity Provider Type idpConnector: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Idp Connector imgUrl: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Img Url label: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Label messageClass: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Message Class micUrl: type: string default: https://devsdk.singularkey.com/react-mic/latest/react-mic.js title: DaVinci Flow Version Detail Response Skcomponent Options Mic Url otpInput: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Otp Input pollChallengeStatus: type: boolean default: true title: DaVinci Flow Version Detail Response Skcomponent Options Poll Challenge Status pollInterval: type: integer default: 2000 title: DaVinci Flow Version Detail Response Skcomponent Options Poll Interval pollRetries: type: integer default: 60 title: DaVinci Flow Version Detail Response Skcomponent Options Poll Retries populationId: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Population Id populationIdEntry: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Population Id Entry previewType: type: string enum: - image - text default: image title: DaVinci Flow Version Detail Response Skcomponent Options Preview Type propertyname: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Propertyname returnUrl: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Return Url showPreview: type: string enum: - 'no' - 'yes' default: 'yes' title: DaVinci Flow Version Detail Response Skcomponent Options Show Preview siteKey: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Site Key userId: type: string title: DaVinci Flow Version Detail Response Skcomponent Options User Id value: type: string title: DaVinci Flow Version Detail Response Skcomponent Options Value width: type: string default: 600px title: DaVinci Flow Version Detail Response Skcomponent Options Width title: DaVinci Flow Version Detail Response Skcomponent Options title: DaVinci Flow Version Detail Response Skcomponent title: DaVinci Flow Version Detail Response Skcomponents trigger: $ref: '#/components/schemas/com.pingidentity.pingone.davinci.flows.response.fragment.Trigger' updatedAt: type: string format: date-time title: DaVinci Flow Version Detail Response Updated At updates: type: array items: type: string title: DaVinci Flow Version Detail Response Update title: DaVinci Flow Version Detail Response Updates version: type: number title: DaVinci Flow Version Detail Response Version required: - _links title: DaVinci Flow Version Detail Response com.pingidentity.pingone.davinci.flows.response.fragment.Settings: type: object additionalProperties: true properties: csp: type: string title: DaVinci Flow Settings Response Csp css: type: string title: DaVinci Flow Settings Response Css cssLinks: type: array items: type: string title: DaVinci Flow Settings Response Css Link title: DaVinci Flow Settings Response Css Links customErrorScreenBrandLogoUrl: type: string title: DaVinci Flow Settings Response Custom Error Screen Brand Logo Url customErrorShowFooter: oneOf: - type: boolean title: DaVinci Flow Settings Response Custom Error Show Footer Choice 1 - type: string enum: - 'false' - 'true' title: DaVinci Flow Settings Response Custom Error Show Footer Choice 2 title: DaVinci Flow Settings Response Custom Error Show Footer customFaviconLink: type: string title: DaVinci Flow Settings Response Custom Favicon Link customLogoURLSelection: type: integer title: DaVinci Flow Settings Response Custom Logo URL Selection customTitle: type: string title: DaVinci Flow Settings Response Custom Title defaultErrorScreenBrandLogo: oneOf: - type: boolean title: DaVinci Flow Settings Response Default Error Screen Brand Logo Choice 1 - type: string enum: - 'false' - 'true' title: DaVinci Flow Settings Response Default Error Screen Brand Logo Choice 2 title: DaVinci Flow Settings Response Default Error Screen Brand Logo flowHttpTimeoutInSeconds: type: integer title: DaVinci Flow Settings Response Flow Http Timeout In Seconds flowTimeoutInSeconds: type: number title: DaVinci Flow Settings Response Flow Timeout In Seconds intermediateLoadingScreenCSS: oneOf: - type: string title: DaVinci Flow Settings Response Intermediate Loading Screen CSS Choice 1 - type: object title: DaVinci Flow Settings Response Intermediate Loading Screen CSS Choice 2 title: DaVinci Flow Settings Response Intermediate Loading Screen CSS intermediateLoadingScreenHTML: oneOf: - type: string title: DaVinci Flow Settings Response Intermediate Loading Screen HTML Choice 1 - type: object title: DaVinci Flow Settings Response Intermediate Loading Screen HTML Choice 2 title: DaVinci Flow Settings Response Intermediate Loading Screen HTML jsCustomFlowPlayer: type: string title: DaVinci Flow Settings Response Js Custom Flow Player jsLinks: type: array items: type: object additionalProperties: false properties: crossorigin: type: string minLength: 1 title: DaVinci Flow Settings Response Js Link Crossorigin defer: oneOf: - type: boolean title: DaVinci Flow Settings Response Js Link Defer Choice 1 - type: string enum: - 'false' - 'true' title: DaVinci Flow Settings Response Js Link Defer Choice 2 title: DaVinci Flow Settings Response Js Link Defer integrity: type: string minLength: 1 title: DaVinci Flow Settings Response Js Link Integrity label: type: string minLength: 1 title: DaVinci Flow Settings Response Js Link Label referrerpolicy: type: string minLength: 1 title: DaVinci Flow Settings Response Js Link Referrerpolicy type: type: string minLength: 1 title: DaVinci Flow Settings Response Js Link Type value: type: string minLength: 1 title: DaVinci Flow Settings Response Js Link Value required: - crossorigin - defer - integrity - label - referrerpolicy - type - value title: DaVinci Flow Settings Response Js Link title: DaVinci Flow Settings Response Js Links logLevel: type: integer minimum: 1 maximum: 4 title: DaVinci Flow Settings Response Log Level requireAuthenticationToInitiate: oneOf: - type: boolean title: DaVinci Flow Settings Response Require Authentication To Initiate Choice 1 - type: string enum: - 'false' - 'true' title: DaVinci Flow Settings Response Require Authentication To Initiate Choice 2 title: DaVinci Flow Settings Response Require Authentication To Initiate scrubSensitiveInfo: oneOf: - type: boolean title: DaVinci Flow Settings Response Scrub Sensitive Info Choice 1 - type: string enum: - 'false' - 'true' title: DaVinci Flow Settings Response Scrub Sensitive Info Choice 2 title: DaVinci Flow Settings Response Scrub Sensitive Info sensitiveInfoFields: type: array items: type: string title: DaVinci Flow Settings Response Sensitive Info Field title: DaVinci Flow Settings Response Sensitive Info Fields useCSP: oneOf: - type: boolean title: DaVinci Flow Settings Response Use CSP Choice 1 - type: string enum: - 'false' - 'true' title: DaVinci Flow Settings Response Use CSP Choice 2 title: DaVinci Flow Settings Response Use CSP useCustomCSS: oneOf: - type: boolean title: DaVinci Flow Settings Response Use Custom CSS Choice 1 - type: string enum: - 'false' - 'true' title: DaVinci Flow Settings Response Use Custom CSS Choice 2 title: DaVinci Flow Settings Response Use Custom CSS useCustomFlowPlayer: oneOf: - type: boolean title: DaVinci Flow Settings Response Use Custom Flow Player Choice 1 - type: string enum: - 'false' - 'true' title: DaVinci Flow Settings Response Use Custom Flow Player Choice 2 title: DaVinci Flow Settings Response Use Custom Flow Player useCustomScript: oneOf: - type: boolean title: DaVinci Flow Settings Response Use Custom Script Choice 1 - type: string enum: - 'false' - 'true' title: DaVinci Flow Settings Response Use Custom Script Choice 2 title: DaVinci Flow Settings Response Use Custom Script useIntermediateLoadingScreen: oneOf: - type: boolean title: DaVinci Flow Settings Response Use Intermediate Loading Screen Choice 1 - type: string enum: - 'false' - 'true' title: DaVinci Flow Settings Response Use Intermediate Loading Screen Choice 2 title: DaVinci Flow Settings Response Use Intermediate Loading Screen validateOnSave: oneOf: - type: boolean title: DaVinci Flow Settings Response Validate On Save Choice 1 - type: string enum: - 'false' - 'true' title: DaVinci Flow Settings Response Validate On Save Choice 2 title: DaVinci Flow Settings Response Validate On Save title: DaVinci Flow Settings Response com.pingidentity.ApiErrorResponse.415: $schema: http://json-schema.org/draft/2020-12/schema# type: object properties: id: type: string format: uuid minLength: 1 title: Unsupported Media Type Error Id code: type: string enum: - INVALID_REQUEST minLength: 1 title: Unsupported Media Type Error Code message: type: string minLength: 1 title: Unsupported Media Type Error Message details: type: array items: type: object properties: code: type: string minLength: 1 title: Unsupported Media Type Error Detail Code message: type: string minLength: 1 title: Unsupported Media Type Error Detail Message innerError: type: object additionalProperties: true title: Unsupported Media Type Error Detail Inner Error target: type: string title: Unsupported Media Type Error Detail Target required: - code - message title: Unsupported Media Type Error Detail title: Unsupported Media Type Error Details required: - id - code - message title: Unsupported Media Type Error com.pingidentity.ApiErrorResponse.500: $schema: http://json-schema.org/draft/2020-12/schema# type: object properties: id: type: string format: uuid minLength: 1 title: Internal Server Error Id code: type: string enum: - UNEXPECTED_ERROR minLength: 1 title: Internal Server Error Code message: type: string minLength: 1 title: Internal Server Error Message details: type: array items: type: object properties: code: type: string minLength: 1 title: Internal Server Error Detail Code message: type: string minLength: 1 title: Internal Server Error Detail Message innerError: type: object additionalProperties: true title: Internal Server Error Detail Inner Error target: type: string title: Internal Server Error Detail Target required: - code - message title: Internal Server Error Detail title: Internal Server Error Details required: - id - code - message title: Internal Server Error com.pingidentity.ApiErrorResponse.401: $schema: http://json-schema.org/draft/2020-12/schema# type: object properties: id: type: string format: uuid minLength: 1 title: Unauthorized Error Id code: type: string enum: - ACCESS_FAILED minLength: 1 title: Unauthorized Error Code message: type: string minLength: 1 title: Unauthorized Error Message details: type: array items: type: object properties: code: type: string enum: - INSUFFICIENT_PERMISSIONS - INVALID_TOKEN minLength: 1 title: Unauthorized Error Detail Code message: type: string minLength: 1 title: Unauthorized Error Detail Message innerError: type: object additionalProperties: true title: Unauthorized Error Detail Inner Error target: type: string title: Unauthorized Error Detail Target required: - code - message title: Unauthorized Error Detail title: Unauthorized Error Details required: - id - code - message title: Unauthorized Error com.pingidentity.ApiErrorResponse.429: $schema: http://json-schema.org/draft/2020-12/schema# type: object properties: code: type: string enum: - REQUEST_LIMITED minLength: 1 title: Too Many Requests Error Code message: type: string minLength: 1 title: Too Many Requests Error Message details: type: array items: type: object properties: code: type: string enum: - LIMIT_EXCEEDED - QUOTA_EXCEEDED minLength: 1 title: Too Many Requests Error Detail Code message: type: string minLength: 1 title: Too Many Requests Error Detail Message innerError: type: object properties: quotaLimit: type: number title: Too Many Requests Error Detail Inner Error Quota Limit quotaResetTime: type: string format: date-time title: Too Many Requests Error Detail Inner Error Quota Reset Time retryAfter: type: string format: date-time title: Too Many Requests Error Detail Inner Error Retry After additionalProperties: true title: Too Many Requests Error Detail Inner Error target: type: string title: Too Many Requests Error Detail Target required: - code - message title: Too Many Requests Error Detail title: Too Many Requests Error Details id: type: string format: uuid title: Too Many Requests Error Id required: - code - message title: Too Many Requests Error com.pingidentity.pingone.davinci.flows.response.fragment.GraphData: type: object properties: boxSelectionEnabled: type: boolean title: DaVinci Flow Graph Data Response Box Selection Enabled elements: type: object properties: nodes: type: array items: type: object properties: data: type: object additionalProperties: true properties: id: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Id nodeType: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Node Type capabilityName: type: string title: DaVinci Flow Graph Data Response Elements Node Data Capability Name connectionId: type: string title: DaVinci Flow Graph Data Response Elements Node Data Connection Id connectorId: type: string title: DaVinci Flow Graph Data Response Elements Node Data Connector Id idUnique: type: string title: DaVinci Flow Graph Data Response Elements Node Data Id Unique label: type: string title: DaVinci Flow Graph Data Response Elements Node Data Label linterError: type: array items: type: object properties: code: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Linter Error Item Code message: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Linter Error Item Message type: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Linter Error Item Type recommendation: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Linter Error Item Recommendation flowId: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Linter Error Item Flow Id nodeId: type: string title: DaVinci Flow Graph Data Response Elements Node Data Linter Error Item Node Id required: - code - message - type - recommendation - flowId title: DaVinci Flow Graph Data Response Elements Node Data Linter Error Item title: DaVinci Flow Graph Data Response Elements Node Data Linter Error name: type: string title: DaVinci Flow Graph Data Response Elements Node Data Name properties: type: object additionalProperties: true properties: backgroundColor: type: object properties: value: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Background Color Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Background Color code: type: object properties: value: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Code Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Code customCSS: type: object properties: value: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Custom CSS Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Custom CSS customHTML: type: object properties: value: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Custom HTML Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Custom HTML customScript: type: object properties: value: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Custom Script Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Custom Script formFieldsList: type: object properties: value: type: array items: type: object properties: preferredDataType: type: - array - boolean - integer - number - object - string title: DaVinci Flow Graph Data Response Elements Node Data Properties Form Fields List Value Item Preferred Data Type propertyName: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Form Fields List Value Item Property Name preferredControlType: type: string title: DaVinci Flow Graph Data Response Elements Node Data Properties Form Fields List Value Item Preferred Control Type value: type: string title: DaVinci Flow Graph Data Response Elements Node Data Properties Form Fields List Value Item Value required: - preferredDataType - propertyName title: DaVinci Flow Graph Data Response Elements Node Data Properties Form Fields List Value Item title: DaVinci Flow Graph Data Response Elements Node Data Properties Form Fields List Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Form Fields List inputSchema: type: object properties: value: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Input Schema Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Input Schema message: type: object properties: value: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Message Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Message nodeTitle: type: object properties: value: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Node Title Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Node Title outputSchema: type: object properties: value: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Output Schema Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Output Schema saveVariables: type: object properties: value: type: array items: type: object additionalProperties: true properties: name: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Save Variables Value Item Name key: type: number title: DaVinci Flow Graph Data Response Elements Node Data Properties Save Variables Value Item Key label: type: string title: DaVinci Flow Graph Data Response Elements Node Data Properties Save Variables Value Item Label nameDefault: type: string title: DaVinci Flow Graph Data Response Elements Node Data Properties Save Variables Value Item Name Default type: type: string title: DaVinci Flow Graph Data Response Elements Node Data Properties Save Variables Value Item Type value: type: string title: DaVinci Flow Graph Data Response Elements Node Data Properties Save Variables Value Item Value required: - name title: DaVinci Flow Graph Data Response Elements Node Data Properties Save Variables Value Item title: DaVinci Flow Graph Data Response Elements Node Data Properties Save Variables Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Save Variables showContinueButton: type: object properties: value: type: boolean title: DaVinci Flow Graph Data Response Elements Node Data Properties Show Continue Button Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Show Continue Button type: type: object properties: value: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Type Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Type variableInputList: type: object properties: value: type: array items: type: object properties: name: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Properties Variable Input List Value Item Name preferredDataType: type: - array - boolean - integer - number - object - string title: DaVinci Flow Graph Data Response Elements Node Data Properties Variable Input List Value Item Preferred Data Type preferredControlType: type: string title: DaVinci Flow Graph Data Response Elements Node Data Properties Variable Input List Value Item Preferred Control Type value: type: string title: DaVinci Flow Graph Data Response Elements Node Data Properties Variable Input List Value Item Value required: - name - preferredDataType title: DaVinci Flow Graph Data Response Elements Node Data Properties Variable Input List Value Item title: DaVinci Flow Graph Data Response Elements Node Data Properties Variable Input List Value required: - value title: DaVinci Flow Graph Data Response Elements Node Data Properties Variable Input List title: DaVinci Flow Graph Data Response Elements Node Data Properties status: type: string title: DaVinci Flow Graph Data Response Elements Node Data Status type: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Data Type required: - id - nodeType title: DaVinci Flow Graph Data Response Elements Node Data grabbable: type: boolean title: DaVinci Flow Graph Data Response Elements Node Grabbable group: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Node Group locked: type: boolean title: DaVinci Flow Graph Data Response Elements Node Locked pannable: type: boolean title: DaVinci Flow Graph Data Response Elements Node Pannable position: type: object properties: x: type: number format: bigFloatUnquoted title: DaVinci Flow Graph Data Response Elements Node Position X y: type: number format: bigFloatUnquoted title: DaVinci Flow Graph Data Response Elements Node Position Y required: - x - y title: DaVinci Flow Graph Data Response Elements Node Position removed: type: boolean title: DaVinci Flow Graph Data Response Elements Node Removed selectable: type: boolean title: DaVinci Flow Graph Data Response Elements Node Selectable selected: type: boolean title: DaVinci Flow Graph Data Response Elements Node Selected classes: type: string title: DaVinci Flow Graph Data Response Elements Node Classes required: - data - grabbable - group - locked - pannable - position - removed - selectable - selected title: DaVinci Flow Graph Data Response Elements Node title: DaVinci Flow Graph Data Response Elements Nodes edges: type: array items: type: object properties: data: type: object properties: id: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Edge Data Id source: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Edge Data Source target: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Edge Data Target required: - id - source - target title: DaVinci Flow Graph Data Response Elements Edge Data grabbable: type: boolean title: DaVinci Flow Graph Data Response Elements Edge Grabbable group: type: string minLength: 1 title: DaVinci Flow Graph Data Response Elements Edge Group locked: type: boolean title: DaVinci Flow Graph Data Response Elements Edge Locked pannable: type: boolean title: DaVinci Flow Graph Data Response Elements Edge Pannable position: type: object properties: x: type: number format: bigFloatUnquoted title: DaVinci Flow Graph Data Response Elements Edge Position X y: type: number format: bigFloatUnquoted title: DaVinci Flow Graph Data Response Elements Edge Position Y required: - x - y title: DaVinci Flow Graph Data Response Elements Edge Position removed: type: boolean title: DaVinci Flow Graph Data Response Elements Edge Removed selectable: type: boolean title: DaVinci Flow Graph Data Response Elements Edge Selectable selected: type: boolean title: DaVinci Flow Graph Data Response Elements Edge Selected classes: type: string title: DaVinci Flow Graph Data Response Elements Edge Classes required: - data - grabbable - group - locked - pannable - position - removed - selectable - selected title: DaVinci Flow Graph Data Response Elements Edge title: DaVinci Flow Graph Data Response Elements Edges required: - nodes title: DaVinci Flow Graph Data Response Elements pan: type: object properties: x: type: number format: bigFloatUnquoted title: DaVinci Flow Graph Data Response Pan X y: type: number format: bigFloatUnquoted title: DaVinci Flow Graph Data Response Pan Y required: - x - y title: DaVinci Flow Graph Data Response Pan panningEnabled: type: boolean title: DaVinci Flow Graph Data Response Panning Enabled renderer: type: object properties: name: type: string minLength: 1 title: DaVinci Flow Graph Data Response Renderer Name required: - name title: DaVinci Flow Graph Data Response Renderer userPanningEnabled: type: boolean title: DaVinci Flow Graph Data Response User Panning Enabled userZoomingEnabled: type: boolean title: DaVinci Flow Graph Data Response User Zooming Enabled zoom: type: number title: DaVinci Flow Graph Data Response Zoom allLinterErrors: type: array items: type: object properties: code: type: string minLength: 1 title: DaVinci Flow Graph Data Response All Linter Error Code message: type: string minLength: 1 title: DaVinci Flow Graph Data Response All Linter Error Message type: type: string minLength: 1 title: DaVinci Flow Graph Data Response All Linter Error Type recommendation: type: string minLength: 1 title: DaVinci Flow Graph Data Response All Linter Error Recommendation flowId: type: string minLength: 1 title: DaVinci Flow Graph Data Response All Linter Error Flow Id nodeId: type: string title: DaVinci Flow Graph Data Response All Linter Error Node Id required: - code - message - type - recommendation - flowId title: DaVinci Flow Graph Data Response All Linter Error title: DaVinci Flow Graph Data Response All Linter Errors data: type: object title: DaVinci Flow Graph Data Response Data maxZoom: type: number format: bigFloatUnquoted title: DaVinci Flow Graph Data Response Max Zoom minZoom: type: number format: bigFloatUnquoted title: DaVinci Flow Graph Data Response Min Zoom zoomingEnabled: type: boolean title: DaVinci Flow Graph Data Response Zooming Enabled required: - boxSelectionEnabled - elements - pan - panningEnabled - renderer - userPanningEnabled - userZoomingEnabled - zoom title: DaVinci Flow Graph Data Response com.pingidentity.pingone.davinci.flows.response.fragment.OutputSchema: type: object properties: output: type: object properties: properties: type: object properties: {} additionalProperties: true title: DaVinci Flow Output Schema Response Output Properties type: type: string enum: - object minLength: 1 title: DaVinci Flow Output Schema Response Output Type additionalProperties: type: boolean title: DaVinci Flow Output Schema Response Output Additional Properties required: - properties - type title: DaVinci Flow Output Schema Response Output required: - output title: DaVinci Flow Output Schema Response com.pingidentity.pingone.davinci.flows.response.fragment.InputSchema: type: array items: type: object properties: preferredControlType: type: string minLength: 1 title: DaVinci Flow Input Schema Response Item Preferred Control Type preferredDataType: type: string enum: - array - boolean - number - object - string minLength: 1 title: DaVinci Flow Input Schema Response Item Preferred Data Type propertyName: type: string minLength: 1 title: DaVinci Flow Input Schema Response Item Property Name description: type: string title: DaVinci Flow Input Schema Response Item Description isExpanded: type: boolean title: DaVinci Flow Input Schema Response Item Is Expanded required: type: boolean title: DaVinci Flow Input Schema Response Item Required required: - preferredControlType - preferredDataType - propertyName title: DaVinci Flow Input Schema Response Item title: DaVinci Flow Input Schema Response responses: http.403.Forbidden.P14C63085: description: 'Forbidden - Note: This may occur if the environment doesn''t exist. Check for environment existence with GET /environments/{environmentID} first.' content: '*/*': schema: $ref: '#/components/schemas/com.pingidentity.ApiErrorResponse.403' x-pingone-p14c-63085: true http.502.BadGateway: description: Bad Gateway content: '*/*': schema: $ref: '#/components/schemas/com.pingidentity.ApiErrorResponse' http.404.NotFound: description: Not Found content: '*/*': schema: $ref: '#/components/schemas/com.pingidentity.ApiErrorResponse.404' http.415.UnsupportedMediaType: description: Unsupported Media Type content: '*/*': schema: $ref: '#/components/schemas/com.pingidentity.ApiErrorResponse.415' http.400.BadRequest: description: Bad Request content: '*/*': schema: $ref: '#/components/schemas/com.pingidentity.ApiErrorResponse.400' http.503.ServiceUnavailable: description: Service Unavailable headers: Retry-After: $ref: '#/components/headers/http.RetryAfter' content: '*/*': schema: $ref: '#/components/schemas/com.pingidentity.ApiErrorResponse' http.401.Unauthorized: description: Unauthorized content: '*/*': schema: $ref: '#/components/schemas/com.pingidentity.ApiErrorResponse.401' http.500.InternalServerError: description: Internal Server Error content: '*/*': schema: $ref: '#/components/schemas/com.pingidentity.ApiErrorResponse.500' http.429.TooManyRequests: description: Too Many Requests headers: Retry-After: $ref: '#/components/headers/http.RetryAfter' content: '*/*': schema: $ref: '#/components/schemas/com.pingidentity.ApiErrorResponse.429' parameters: com.pingidentity.header.ExternalTransactionID: schema: type: string minLength: 1 name: X-Ping-External-Transaction-ID in: header com.pingidentity.path.environments.environmentID: name: environmentID in: path required: true schema: type: string format: uuid com.pingidentity.path.environments.flows.flowID: name: flowID in: path required: true schema: type: string pattern: ^(?=\S)[\p{L}\p{M}\p{N}\p{So}/.'_ -]*(?!.*((<)|(\$\{))) com.pingidentity.header.ExternalSessionID: schema: type: string minLength: 1 name: X-Ping-External-Session-ID in: header com.pingidentity.path.environments.flows.versions.versionID: name: versionID in: path required: true schema: type: string pattern: ^(?=\S)[\p{L}\p{M}\p{N}\p{So}/.'_ -]*(?!.*((<)|(\$\{))) headers: http.RetryAfter: schema: oneOf: - type: integer format: int32 - type: string title: Retry-After Header securitySchemes: bearerAuth: type: http scheme: bearer bearerFormat: JWT oauth2: type: oauth2 flows: clientCredentials: tokenUrl: /as/token scopes: {} authorizationCode: authorizationUrl: /as/authorize tokenUrl: /as/token refreshUrl: /as/token scopes: {} x-permissions: - name: davinci:create:applications - name: davinci:create:connections - name: davinci:create:constructs - name: davinci:create:dvFlows - name: davinci:create:flowPolicies - name: davinci:delete:applications - name: davinci:delete:connections - name: davinci:delete:constructs - name: davinci:delete:dvFlows - name: davinci:delete:flowPolicies - name: davinci:delete:flowVersions - name: davinci:read:applications - name: davinci:read:connections - name: davinci:read:connectors - name: davinci:read:constructs - name: davinci:read:dvFlows - name: davinci:read:flowPolicies - name: davinci:read:flowVersions - name: davinci:update:applications - name: davinci:update:connections - name: davinci:update:constructs - name: davinci:update:dvFlows - name: davinci:update:flowPolicies - name: davinci:update:flowVersions - name: flowPolicies:read:flowPolicy - name: orgmgt:create:environment - name: orgmgt:delete:environment - name: orgmgt:read:environment - name: orgmgt:update:environment - name: promotion:create:snapshot - name: promotion:read:snapshot