DataFlex / APPIA API / SIGN UP
Back to Collection Items
Use ChilkatAx-win32.pkg
Procedure Test
Handle hoHttp
Boolean iSuccess
Variant vJson
Handle hoJson
Variant vResp
Handle hoResp
String sTemp1
Integer iTemp1
Boolean bTemp1
// This example assumes the Chilkat API to have been previously unlocked.
// See Global Unlock Sample for sample code.
Get Create (RefClass(cComChilkatHttp)) To hoHttp
If (Not(IsComObjectCreated(hoHttp))) Begin
Send CreateComObject of hoHttp
End
// Use this online tool to generate code from sample JSON: Generate Code to Create JSON
// The following JSON is sent in the request body.
// {
// "first_name": "Ade",
// "last_name": "Dada",
// "phone": "07067507169",
// "email": "oluwatosin@oceandigits.com.ng",
// "password": "1234",
// "referral_code": ""
// }
Get Create (RefClass(cComChilkatJsonObject)) To hoJson
If (Not(IsComObjectCreated(hoJson))) Begin
Send CreateComObject of hoJson
End
Get ComUpdateString Of hoJson "first_name" "Ade" To iSuccess
Get ComUpdateString Of hoJson "last_name" "Dada" To iSuccess
Get ComUpdateString Of hoJson "phone" "07067507169" To iSuccess
Get ComUpdateString Of hoJson "email" "oluwatosin@oceandigits.com.ng" To iSuccess
Get ComUpdateString Of hoJson "password" "1234" To iSuccess
Get ComUpdateString Of hoJson "referral_code" "" To iSuccess
Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"
Get pvComObject of hoJson to vJson
Get ComPostJson3 Of hoHttp "https://domain.com/users/sign_up" "application/json" vJson To vResp
If (IsComObject(vResp)) Begin
Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
Set pvComObject Of hoResp To vResp
End
Get ComLastMethodSuccess Of hoHttp To bTemp1
If (bTemp1 = False) Begin
Get ComLastErrorText Of hoHttp To sTemp1
Showln sTemp1
Procedure_Return
End
Get ComStatusCode Of hoResp To iTemp1
Showln iTemp1
Get ComBodyStr Of hoResp To sTemp1
Showln sTemp1
Send Destroy of hoResp
End_Procedure
Curl Command
curl -X POST
-H "Content-Type: application/json"
-d '{
"first_name": "Ade",
"last_name": "Dada",
"phone" : "07067507169",
"email":"oluwatosin@oceandigits.com.ng",
"password": "1234",
"referral_code":""
}'
https://domain.com/users/sign_up
Postman Collection Item JSON
{
"name": "SIGN UP",
"request": {
"method": "POST",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"body": {
"mode": "raw",
"raw": "{\n\"first_name\": \"Ade\",\n\"last_name\": \"Dada\",\n\"phone\" : \"07067507169\",\t\n\"email\":\"oluwatosin@oceandigits.com.ng\",\n\"password\": \"1234\",\n\"referral_code\":\"\"\n}"
},
"url": {
"raw": "{{url}}/users/sign_up",
"host": [
"{{url}}"
],
"path": [
"users",
"sign_up"
]
},
"description": "Sign In Route"
},
"response": [
]
}