Files
developer.sailpoint.com/static/api-specs/idn/beta/paths/connector-rule-validate.yaml
2022-09-29 21:59:22 +00:00

35 lines
927 B
YAML

post:
tags:
- Connector Rule Management
operationId: validateConnectorRule
summary: Validate Connector Rule
description: >-
Returns a list of issues within the code to fix, if any.
A token with ORG_ADMIN authority is required to call this API.
requestBody:
required: true
description: The code to validate
content:
application/json:
schema:
$ref: '../schemas/SourceCode.yaml'
responses:
'200':
description: The status of the code's eligibility as a connector rule
content:
application/json:
schema:
$ref: '../schemas/ConnectorRuleValidationResponse.yaml'
'401':
$ref: '../../v3/responses/401.yaml'
'403':
$ref: '../../v3/responses/403.yaml'
'429':
$ref: '../../v3/responses/429.yaml'
'500':
$ref: '../../v3/responses/500.yaml'
security:
- oauth2: [idn:connector-rule:read]