Endpoint URL: {socialLoginDomain} /api/v2/add_domain_patterns
Description
Appends domains to the current allow list for an application. If configured, only the domains included on the allow list are allowed to communicate with your social login application.
Respects the API Client Allow List: No
Accepted Content-types
- application/x-www-form-urlencoded
- multipart/form-data
Example Request
This command adds three domains (localhost, somewhere.com, and *.examples.com) to the domains allow list for the social login application 1234567891234567891234567891234567891234. When configured, only those domains listed on the allow list are allowed to communicate with your social login application. Among other things, that means you can only login or register from domains on the list.
curl -X POST \
--data-urlencode apiKey=1234567891234567891234567891234567891234 \
--data-urlencode domains='localhost, somewhere.com, *.examples.com' \
https://janrain-docs.rpxnow.com/api/v2/add_domain_patterns
Running this command in Postman
Example Response
{
"stat": "ok"
}
Authentication
This endpoint supports Basic authentication.
How to Create an Authentication String
Base URL
The base URL for this endpoint is your application domain followed by /api/v2; for example:
https://educationcenter.rpxnow.com/api/v2
You can find your application domain in the Social Login (Engage Dashboard) on the Settings page:

Query Parameters
Parameter | Type | Required | Description |
---|---|---|---|
apiKey | string | Yes | Social Login API key. This key can be found on the Social Login Dashboard. |
domains | string | Yes | Comma-separated list of domains that will be used as the website allow list. |