Skip to content

Latest commit

 

History

History
49 lines (32 loc) · 1.08 KB

README.md

File metadata and controls

49 lines (32 loc) · 1.08 KB

RedirectURLs

(redirectURLs())

Overview

Available Operations

  • list - List all redirect URLs

list

Lists all whitelisted redirect_urls for the instance

Example Usage

package hello.world;

import com.clerk.backend_api.Clerk;
import com.clerk.backend_api.models.operations.ListRedirectURLsResponse;
import java.lang.Exception;

public class Application {

    public static void main(String[] args) throws Exception {

        Clerk sdk = Clerk.builder()
                .bearerAuth("<YOUR_BEARER_TOKEN_HERE>")
            .build();

        ListRedirectURLsResponse res = sdk.redirectURLs().list()
                .call();

        if (res.redirectURLList().isPresent()) {
            // handle response
        }
    }
}

Response

ListRedirectURLsResponse

Errors

Error Type Status Code Content Type
models/errors/SDKError 4XX, 5XX */*