Chilkat Online Tools

delphiAx / Auth0 Management API / Create a connection

Back to Collection Items

var
http: TChilkatHttp;
success: Integer;
json: TChilkatJsonObject;
resp: IChilkatHttpResponse;

begin
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.

http := TChilkatHttp.Create(Self);

// Use this online tool to generate code from sample JSON: Generate Code to Create JSON

// The following JSON is sent in the request body.

// {
//   "name": "",
//   "strategy": "",
//   "options": {
//     "validation": {},
//     "passwordPolicy": "",
//     "password_history": {},
//     "password_no_personal_info": {},
//     "password_dictionary": {}
//   },
//   "enabled_clients": [
//     ""
//   ]
// }

json := TChilkatJsonObject.Create(Self);
json.UpdateString('name','');
json.UpdateString('strategy','');
json.UpdateNewObject('options.validation');
json.UpdateString('options.passwordPolicy','');
json.UpdateNewObject('options.password_history');
json.UpdateNewObject('options.password_no_personal_info');
json.UpdateNewObject('options.password_dictionary');
json.UpdateString('enabled_clients[0]','');

// Adds the "Authorization: Bearer {{auth0_token}}" header.
http.AuthToken := '{{auth0_token}}';
http.SetRequestHeader('Content-Type','application/json');

resp := http.PostJson3('https://{{auth0_domain}}/api/v2/connections','application/json',json.ControlInterface);
if (http.LastMethodSuccess = 0) then
  begin
    Memo1.Lines.Add(http.LastErrorText);
    Exit;
  end;

Memo1.Lines.Add(IntToStr(resp.StatusCode));
Memo1.Lines.Add(resp.BodyStr);

Curl Command

curl -X POST
	-H "Authorization: Bearer {{auth0_token}}"
	-H "Content-Type: application/json"
	-d '{
  "name": "",
  "strategy": "",
  "options": {
    "validation": {},
    "passwordPolicy": "",
    "password_history": {},
    "password_no_personal_info": {},
    "password_dictionary": {}
  },
  "enabled_clients": [
    ""
  ]
}'
https://{{auth0_domain}}/api/v2/connections

Postman Collection Item JSON

{
  "name": "Create a connection",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{auth0_token}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n  \"name\": \"\",\r\n  \"strategy\": \"\",\r\n  \"options\": {\r\n    \"validation\": {},\r\n    \"passwordPolicy\": \"\",\r\n    \"password_history\": {},\r\n    \"password_no_personal_info\": {},\r\n    \"password_dictionary\": {}\r\n  },\r\n  \"enabled_clients\": [\r\n    \"\"\r\n  ]\r\n}"
    },
    "url": {
      "raw": "https://{{auth0_domain}}/api/v2/connections",
      "protocol": "https",
      "host": [
        "{{auth0_domain}}"
      ],
      "path": [
        "api",
        "v2",
        "connections"
      ]
    },
    "description": "Creates a new connection according to the JSON object received in <code>body</code>.<br/> The samples on the right show all available attributes. Mandatory attributes are <code>name</code> and <code>strategy</code>.<br/> Valid Strategy names are: <code>ad</code>, <code>adfs</code>, <code>amazon</code>, <code>dropbox</code>, <code>bitbucket</code>, <code>aol</code>, <code>auth0-adldap</code>, <code>auth0-oidc</code>, <code>auth0</code>, <code>baidu</code>, <code>bitly</code>, <code>box</code>, <code>custom</code>, <code>dwolla</code>, <code>email</code>, <code>evernote-sandbox</code>, <code>evernote</code>, <code>exact</code>, <code>facebook</code>, <code>fitbit</code>, <code>flickr</code>, <code>github</code>, <code>google-apps</code>, <code>google-oauth2</code>, <code>google-openid</code>, <code>instagram</code>, <code>ip</code>, <code>linkedin</code>, <code>miicard</code>, <code>oauth1</code>, <code>oauth2</code>, <code>office365</code>, <code>paypal</code>, <code>pingfederate</code>, <code>planningcenter</code>, <code>renren</code>, <code>salesforce-community</code>, <code>salesforce-sandbox</code>, <code>salesforce</code>, <code>samlp</code>, <code>sharepoint</code>, <code>shopify</code>, <code>sms</code>, <code>soundcloud</code>, <code>thecity-sandbox</code>, <code>thecity</code>, <code>thirtysevensignals</code>, <code>twitter</code>, <code>untappd</code>, <code>vkontakte</code>, <code>waad</code>, <code>weibo</code>, <code>windowslive</code>, <code>wordpress</code>, <code>yahoo</code>, <code>yammer</code>, <code>yandex</code>"
  },
  "response": [
  ]
}