Chilkat Online Tools

PureBasic / Auth0 Management API / Create a password change ticket

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.

    ; {
    ;   "result_url": "",
    ;   "user_id": "",
    ;   "new_password": "",
    ;   "connection_id": "",
    ;   "email": "",
    ;   "ttl_sec": 0
    ; }

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

    CkJsonObject::ckUpdateString(json,"result_url","")
    CkJsonObject::ckUpdateString(json,"user_id","")
    CkJsonObject::ckUpdateString(json,"new_password","")
    CkJsonObject::ckUpdateString(json,"connection_id","")
    CkJsonObject::ckUpdateString(json,"email","")
    CkJsonObject::ckUpdateInt(json,"ttl_sec",0)

    ; 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/tickets/password-change","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 '{
  "result_url": "",
  "user_id": "",
  "new_password": "",
  "connection_id": "",
  "email": "",
  "ttl_sec": 0
}'
https://{{auth0_domain}}/api/v2/tickets/password-change

Postman Collection Item JSON

{
  "name": "Create a password change ticket",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{auth0_token}}"
      },
      {
        "key": "Content-Type",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n  \"result_url\": \"\",\r\n  \"user_id\": \"\",\r\n  \"new_password\": \"\",\r\n  \"connection_id\": \"\",\r\n  \"email\": \"\",\r\n  \"ttl_sec\": 0\r\n}"
    },
    "url": {
      "raw": "https://{{auth0_domain}}/api/v2/tickets/password-change",
      "protocol": "https",
      "host": [
        "{{auth0_domain}}"
      ],
      "path": [
        "api",
        "v2",
        "tickets",
        "password-change"
      ]
    }
  },
  "response": [
  ]
}