Endpoint URL: {registrationDomain} /clients/clear_whitelist
Description
Clears the IP allow list for an API client. The IP allow list specifies the IP addresses that are able to access the client; clearing the list resets that list to the default value, which allows any IP address to access the client. Note that only an owner client can make this API call.
Respects the API Client Allow List: Yes
API Client Permissions
The following table indicates the API clients that can (and the API clients that can't) be used to call this endpoint:
owner | access_issuer | direct_access | direct_read_access | login_client |
Yes | No | No | No | No |
Authentication
This endpoint supports Basic authentication.
How to Create an Authentication String
Base URL
The base URL for this endpoint is your Identity Cloud Capture domain; for example:
https://educationcenter.us-
Your Capture domains (also known as Registration domains) can be found in the Console on the Manage Application page:
Examples
Example Request
This command clears the allow list for the API client with the ID 67890fghij67890fghij. The allow list specifies the IP addresses that are allowed to make API calls using that client.
curl -X POST \ -H "Authorization: Basic
c2dueXZ1czZwYzRqbTdraHIybmVxNWdzODlnYnIyZXE6d3Q0YzN1bjl3a2tjZnZ5a25xeDQ0eW5jNDc2YWZzNjg=" \ --data-urlencode for_client_id=67890fghij67890fghij \ https://my-app.janraincapture.com/clients/clear_whitelist
Running this command in Postman
Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
for_client_id | string | The ID for the client whose allow list will be cleared. If this parameter is not included, the allow list for the owner client will be cleared. |
Responses
200 OK
Example Error Response
{
"argument_name": "for_client_id",
"request_id": "ytjjh5pqjhkwyhdr",
"code": 200,
"error_description": "for_client_id was not valid for the following
reason: for_client_id is not a valid id",
"error": "invalid_argument",
"stat": "error"
}
Response Example (application/json)
{
"stat": "ok"
}