Chilkat Online Tools

DataFlex / Anypoint Platform APIs / Assign rolegroup to a user

Back to Collection Items

Use ChilkatAx-9.5.0-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.

    // {
    //   "organizationId": "{{organization_id}}",
    //   "userId": "{{user_id}}",
    //   "roleGroupId": "{{rolegroup_Id}}"
    // }

    Get Create (RefClass(cComChilkatJsonObject)) To hoJson
    If (Not(IsComObjectCreated(hoJson))) Begin
        Send CreateComObject of hoJson
    End
    Get ComUpdateString Of hoJson "organizationId" "{{organization_id}}" To iSuccess
    Get ComUpdateString Of hoJson "userId" "{{user_id}}" To iSuccess
    Get ComUpdateString Of hoJson "roleGroupId" "{{rolegroup_Id}}" To iSuccess

    // Adds the "Authorization: Bearer {{token}}" header.
    Set ComAuthToken Of hoHttp To "{{token}}"

    Get pvComObject of hoJson to vJson
    Get ComPostJson3 Of hoHttp "https://domain.com/accounts/api/organizations/{{organization_id}}/rolegroups/{{rolegroup_Id}}/users/{{user_id}}" "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 "Authorization: Bearer {{token}}"
	-d '{
   "organizationId":"{{organization_id}}",
   "userId":"{{user_id}}",
   "roleGroupId":"{{rolegroup_Id}}"
}'
https://domain.com/accounts/api/organizations/{{organization_id}}/rolegroups/{{rolegroup_Id}}/users/{{user_id}}

Postman Collection Item JSON

{
  "name": "Assign rolegroup to a user",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Authorization",
        "value": "Bearer {{token}}",
        "type": "text"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\r\n   \"organizationId\":\"{{organization_id}}\",\r\n   \"userId\":\"{{user_id}}\",\r\n   \"roleGroupId\":\"{{rolegroup_Id}}\"\r\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{url}}/accounts/api/organizations/{{organization_id}}/rolegroups/{{rolegroup_Id}}/users/{{user_id}}",
      "host": [
        "{{url}}"
      ],
      "path": [
        "accounts",
        "api",
        "organizations",
        "{{organization_id}}",
        "rolegroups",
        "{{rolegroup_Id}}",
        "users",
        "{{user_id}}"
      ]
    }
  },
  "response": [
  ]
}