Skip to main content

To add an Approval URL to API Bespoke Approval Requests, include the URL in the request payload under a designated field, typically named approvalUrl or similar, depending on the API specifications. Ensure the URL is properly formatted and accessible, as it serves as the destination for reviewers to approve or reject requests.

Here’s a sample JSON payload:

{
"requestId": "12345",
"approvalUrl": "https://your-approval-url.com",
"requestDetails": {
"type": "access",
"description": "Approval needed for access request"
}
}

Consult the API documentation for required headers, authentication, and specific field names. Test the integration to ensure the URL correctly redirects reviewers and supports the intended approval workflow.idmcrack

To add an Approval URL to your API Bespoke Approval, follow these steps:

  1. Log in to your API management platform: Ensure you have access to the admin panel or the configuration section of your API.

  2. Navigate to the Approval Settings: Look for the section where approval workflows or settings are managed.

  3. Add Approval URL: There should be an option to configure an approval URL. Enter the URL where approvals will be handled. This URL will be used to send approval requests to the designated endpoint.

  4. Save Changes: After entering the Approval URL, make sure to save the configuration.

  5. Test the Approval Flow: Ensure the system is redirecting and processing approvals as expected.

This will allow your API to properly integrate approval processes and automate responses.