Skip to content

Latest commit

 

History

History
46 lines (26 loc) · 840 Bytes

README.md

File metadata and controls

46 lines (26 loc) · 840 Bytes

RedirectURLs

(redirectURLs)

Overview

Available Operations

  • list - List all redirect URLs

list

Lists all whitelisted redirect_urls for the instance

Example Usage

declare(strict_types=1);

require 'vendor/autoload.php';

use Clerk\Backend;

$security = '<YOUR_BEARER_TOKEN_HERE>';

$sdk = Backend\ClerkBackend::builder()->setSecurity($security)->build();



$response = $sdk->redirectURLs->list(

);

if ($response->redirectURLList !== null) {
    // handle response
}

Response

?Operations\ListRedirectURLsResponse

Errors

Error Type Status Code Content Type
Errors\SDKException 4XX, 5XX */*