Sample code for 30+ languages & platforms
DataFlex

SMSAPI - Edit a Subuser Account

See more SMSAPI Examples

Modify a sub-user account.

Chilkat DataFlex Downloads

DataFlex
Use ChilkatAx-win32.pkg

Procedure Test
    Boolean iSuccess
    Handle hoHttp
    Handle hoJson
    Variant vSbRequestBody
    Handle hoSbRequestBody
    Variant vResp
    Handle hoResp
    Variant vSbResponseBody
    Handle hoSbResponseBody
    Handle hoJResp
    Integer iRespStatusCode
    String sId
    String sUsername
    Boolean iActive
    String sDescription
    String sPointsFrom_account
    String sPointsPer_month
    String sTemp1

    Move False To iSuccess

    // 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

    // Implements the following CURL command:

    // curl -X PUT -H "Content-Type: application/json" \
    // -H "Authorization: Bearer token_api_oauth" -d\
    // '{"credentials":{"password":"Customer_portal_password","api_password":"API_password"}, 
    // "active":"1","description":"Test description","points":{"from_account":"2","per_month":"2"}}'
    // 'https://api.smsapi.com/subusers/{subuser_id}'

    // Use the following online tool to generate HTTP code from a CURL command
    // Convert a cURL Command to HTTP Source Code

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

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

    // {
    //   "credentials": {
    //     "password": "Customer_portal_password",
    //     "api_password": "API_password"
    //   },
    //   "active": "1",
    //   "description": "Test description",
    //   "points": {
    //     "from_account": "2",
    //     "per_month": "2"
    //   }
    // }

    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComUpdateString Of hoJson "credentials.password" "new_Password_1234" To iSuccess
    Get ComUpdateString Of hoJson "credentials.api_password" "new_API_password_1234" To iSuccess
    Get ComUpdateString Of hoJson "active" "1" To iSuccess
    Get ComUpdateString Of hoJson "description" "Test description" To iSuccess
    Get ComUpdateString Of hoJson "points.from_account" "3" To iSuccess
    Get ComUpdateString Of hoJson "points.per_month" "3" To iSuccess

    // Adds the "Authorization: Bearer token_api_oauth" header.
    Set ComAuthToken Of hoHttp To "token_api_oauth"
    Send ComSetRequestHeader To hoHttp "Content-Type" "application/json"

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbRequestBody
    If (Not(IsComObjectCreated(hoSbRequestBody))) Begin
        Send CreateComObject of hoSbRequestBody
    End
    Get pvComObject of hoSbRequestBody to vSbRequestBody
    Get ComEmitSb Of hoJson vSbRequestBody To iSuccess

    // In this example, the subuser_id is 5F8BB03E6436384B0AB36F1B
    Get Create (RefClass(cComChilkatHttpResponse)) To hoResp
    If (Not(IsComObjectCreated(hoResp))) Begin
        Send CreateComObject of hoResp
    End
    Get pvComObject of hoSbRequestBody to vSbRequestBody
    Get pvComObject of hoResp to vResp
    Get ComHttpSb Of hoHttp "PUT" "https://api.smsapi.com/subusers/5F8BB03E6436384B0AB36F1B" vSbRequestBody "utf-8" "application/json" vResp To iSuccess
    If (iSuccess = False) Begin
        Get ComLastErrorText Of hoHttp To sTemp1
        Showln sTemp1
        Procedure_Return
    End

    Get Create (RefClass(cComChilkatStringBuilder)) To hoSbResponseBody
    If (Not(IsComObjectCreated(hoSbResponseBody))) Begin
        Send CreateComObject of hoSbResponseBody
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComGetBodySb Of hoResp vSbResponseBody To iSuccess
    Get Create (RefClass(cComChilkatJsonObject)) To hoJResp
    If (Not(IsComObjectCreated(hoJResp))) Begin
        Send CreateComObject of hoJResp
    End
    Get pvComObject of hoSbResponseBody to vSbResponseBody
    Get ComLoadSb Of hoJResp vSbResponseBody To iSuccess
    Set ComEmitCompact Of hoJResp To False

    Showln "Response Body:"
    Get ComEmit Of hoJResp To sTemp1
    Showln sTemp1

    Get ComStatusCode Of hoResp To iRespStatusCode
    Showln "Response Status Code = " iRespStatusCode
    If (iRespStatusCode >= 400) Begin
        Showln "Response Header:"
        Get ComHeader Of hoResp To sTemp1
        Showln sTemp1
        Showln "Failed."
        Procedure_Return
    End

    // Sample JSON response:
    // (Sample code for parsing the JSON response is shown below)

    // {
    //   "id": "5F8BB03E6436384B0AB36F1B",
    //   "username": "TestUser",
    //   "active": true,
    //   "description": "Test description",
    //   "points": {
    //     "from_account": 3.0,
    //     "per_month": 3.0
    //   }
    // }

    // Sample code for parsing the JSON response...
    // Use the following online tool to generate parsing code from sample JSON:
    // Generate Parsing Code from JSON

    Get ComStringOf Of hoJResp "id" To sId
    Get ComStringOf Of hoJResp "username" To sUsername
    Get ComBoolOf Of hoJResp "active" To iActive
    Get ComStringOf Of hoJResp "description" To sDescription
    Get ComStringOf Of hoJResp "points.from_account" To sPointsFrom_account
    Get ComStringOf Of hoJResp "points.per_month" To sPointsPer_month


End_Procedure