unicodeCpp / Auth0 Management API / Update Guardian's Twilio SMS factor provider
Back to Collection Items
#include <CkHttpW.h>
#include <CkJsonObjectW.h>
#include <CkStringBuilderW.h>
#include <CkHttpResponseW.h>
void ChilkatSample(void)
{
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
CkHttpW http;
bool success;
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "from": "",
// "messaging_service_sid": "",
// "auth_token": "",
// "sid": ""
// }
CkJsonObjectW json;
json.UpdateString(L"from",L"");
json.UpdateString(L"messaging_service_sid",L"");
json.UpdateString(L"auth_token",L"");
json.UpdateString(L"sid",L"");
// Adds the "Authorization: Bearer {{auth0_token}}" header.
http.put_AuthToken(L"{{auth0_token}}");
http.SetRequestHeader(L"Content-Type",L"application/json");
CkStringBuilderW sbRequestBody;
json.EmitSb(sbRequestBody);
CkHttpResponseW *resp = http.PTextSb(L"PUT",L"https://{{auth0_domain}}/api/v2/guardian/factors/sms/providers/twilio",sbRequestBody,L"utf-8",L"application/json",false,false);
if (http.get_LastMethodSuccess() == false) {
wprintf(L"%s\n",http.lastErrorText());
return;
}
wprintf(L"%d\n",resp->get_StatusCode());
wprintf(L"%s\n",resp->bodyStr());
delete resp;
}
Curl Command
curl -X PUT
-H "Authorization: Bearer {{auth0_token}}"
-H "Content-Type: application/json"
-d '{
"from": "",
"messaging_service_sid": "",
"auth_token": "",
"sid": ""
}'
https://{{auth0_domain}}/api/v2/guardian/factors/sms/providers/twilio
Postman Collection Item JSON
{
"name": "Update Guardian's Twilio SMS factor provider",
"request": {
"method": "PUT",
"header": [
{
"key": "Authorization",
"value": "Bearer {{auth0_token}}"
},
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\r\n \"from\": \"\",\r\n \"messaging_service_sid\": \"\",\r\n \"auth_token\": \"\",\r\n \"sid\": \"\"\r\n}"
},
"url": {
"raw": "https://{{auth0_domain}}/api/v2/guardian/factors/sms/providers/twilio",
"protocol": "https",
"host": [
"{{auth0_domain}}"
],
"path": [
"api",
"v2",
"guardian",
"factors",
"sms",
"providers",
"twilio"
]
},
"description": "Useful to configure SMS provider"
},
"response": [
]
}