Chilkat Online Tools

PureBasic / Auth0 Management API / Configure the email provider

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkHttp.pb"
IncludeFile "CkHttpResponse.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    ; 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": "",
    ;   "enabled": true,
    ;   "default_from_address": "",
    ;   "credentials": {
    ;     "api_key": ""
    ;   },
    ;   "settings": {}
    ; }

    json.i = CkJsonObject::ckCreate()
    If json.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckUpdateString(json,"name","")
    CkJsonObject::ckUpdateBool(json,"enabled",1)
    CkJsonObject::ckUpdateString(json,"default_from_address","")
    CkJsonObject::ckUpdateString(json,"credentials.api_key","")
    CkJsonObject::ckUpdateNewObject(json,"settings")

    ; Adds the "Authorization: Bearer {{auth0_token}}" header.
    CkHttp::setCkAuthToken(http, "{{auth0_token}}")
    CkHttp::ckSetRequestHeader(http,"Content-Type","application/json")

    resp.i = CkHttp::ckPostJson3(http,"https://{{auth0_domain}}/api/v2/emails/provider","application/json",json)
    If CkHttp::ckLastMethodSuccess(http) = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkJsonObject::ckDispose(json)
        ProcedureReturn
    EndIf

    Debug Str(CkHttpResponse::ckStatusCode(resp))
    Debug CkHttpResponse::ckBodyStr(resp)
    CkHttpResponse::ckDispose(resp)



    CkHttp::ckDispose(http)
    CkJsonObject::ckDispose(json)


    ProcedureReturn
EndProcedure

Curl Command

curl -X POST
	-H "Authorization: Bearer {{auth0_token}}"
	-H "Content-Type: application/json"
	-d '{
  "name": "",
  "enabled": true,
  "default_from_address": "",
  "credentials": {
    "api_key": ""
  },
  "settings": {}
}'
https://{{auth0_domain}}/api/v2/emails/provider

Postman Collection Item JSON

{
  "name": "Configure the email provider",
  "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  \"enabled\": true,\r\n  \"default_from_address\": \"\",\r\n  \"credentials\": {\r\n    \"api_key\": \"\"\r\n  },\r\n  \"settings\": {}\r\n}"
    },
    "url": {
      "raw": "https://{{auth0_domain}}/api/v2/emails/provider",
      "protocol": "https",
      "host": [
        "{{auth0_domain}}"
      ],
      "path": [
        "api",
        "v2",
        "emails",
        "provider"
      ]
    }
  },
  "response": [
  ]
}