Chilkat Online Tools

VB.NET / Support API / Create Or Update User

Back to Collection Items

' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

Dim http As New Chilkat.Http
Dim success As Boolean

http.BasicAuth = True
http.Login = "login"
http.Password = "password"

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

' The following JSON is sent in the request body.

' {
'   "user": {
'     "name": "<string>",
'     "email": "<string>",
'     "custom_role_id": "<integer>",
'     "external_id": "<string>",
'     "identities": [
'       {
'         "type": "<string>",
'         "value": "<string>"
'       },
'       {
'         "type": "<string>",
'         "value": "<string>"
'       }
'     ],
'     "organization": {
'       "name": "<string>"
'     },
'     "organization_id": "<integer>",
'     "role": "<string>"
'   }
' }

Dim json As New Chilkat.JsonObject
json.UpdateString("user.name","<string>")
json.UpdateString("user.email","<string>")
json.UpdateString("user.custom_role_id","<integer>")
json.UpdateString("user.external_id","<string>")
json.UpdateString("user.identities[0].type","<string>")
json.UpdateString("user.identities[0].value","<string>")
json.UpdateString("user.identities[1].type","<string>")
json.UpdateString("user.identities[1].value","<string>")
json.UpdateString("user.organization.name","<string>")
json.UpdateString("user.organization_id","<integer>")
json.UpdateString("user.role","<string>")

http.SetRequestHeader("Content-Type","application/json")
http.SetRequestHeader("Accept","application/json")

Dim resp As Chilkat.HttpResponse = http.PostJson3("https://example.zendesk.com/api/v2/users/create_or_update","application/json",json)
If (http.LastMethodSuccess = False) Then
    Debug.WriteLine(http.LastErrorText)
    Exit Sub
End If


Dim sbResponseBody As New Chilkat.StringBuilder
resp.GetBodySb(sbResponseBody)

Dim jResp As New Chilkat.JsonObject
jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = False

Debug.WriteLine("Response Body:")
Debug.WriteLine(jResp.Emit())

Dim respStatusCode As Integer = resp.StatusCode
Debug.WriteLine("Response Status Code = " & respStatusCode)
If (respStatusCode >= 400) Then
    Debug.WriteLine("Response Header:")
    Debug.WriteLine(resp.Header)
    Debug.WriteLine("Failed.")

    Exit Sub
End If



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

' {
'   "user": {
'     "name": "<string>",
'     "active": "<boolean>",
'     "alias": "<string>",
'     "chat_only": "<boolean>",
'     "created_at": "<string>",
'     "custom_role_id": "<integer>",
'     "default_group_id": "<integer>",
'     "details": "<string>",
'     "email": "<string>",
'     "external_id": "<string>",
'     "iana_time_zone": "<string>",
'     "id": "<integer>",
'     "last_login_at": "<string>",
'     "locale": "<string>",
'     "locale_id": "<integer>",
'     "moderator": "<boolean>",
'     "notes": "<string>",
'     "only_private_comments": "<boolean>",
'     "organization_id": "<integer>",
'     "phone": "<string>",
'     "photo": {
'       "dolorea1": false,
'       "deserunt3": 95124319.10825741
'     },
'     "remote_photo_url": "<string>",
'     "report_csv": "<boolean>",
'     "restricted_agent": "<boolean>",
'     "role": "<string>",
'     "role_type": "<integer>",
'     "shared": "<boolean>",
'     "shared_agent": "<boolean>",
'     "shared_phone_number": "<boolean>",
'     "signature": "<string>",
'     "suspended": "<boolean>",
'     "tags": "<array>",
'     "ticket_restriction": "<string>",
'     "time_zone": "<string>",
'     "two_factor_auth_enabled": "<boolean>",
'     "updated_at": "<string>",
'     "url": "<string>",
'     "user_fields": {
'       "nostrudacc": -12929960.546221554,
'       "in_80e": 25167751.960886702,
'       "proident_e2": true,
'       "voluptate_98": -58995022
'     },
'     "verified": "<boolean>"
'   }
' }

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




Dim Name As String = jResp.StringOf("user.name")
Dim Active As String = jResp.StringOf("user.active")
Dim Alias As String = jResp.StringOf("user.alias")
Dim Chat_only As String = jResp.StringOf("user.chat_only")
Dim Created_at As String = jResp.StringOf("user.created_at")
Dim Custom_role_id As String = jResp.StringOf("user.custom_role_id")
Dim Default_group_id As String = jResp.StringOf("user.default_group_id")
Dim Details As String = jResp.StringOf("user.details")
Dim v_Email As String = jResp.StringOf("user.email")
Dim External_id As String = jResp.StringOf("user.external_id")
Dim Iana_time_zone As String = jResp.StringOf("user.iana_time_zone")
Dim Id As String = jResp.StringOf("user.id")
Dim Last_login_at As String = jResp.StringOf("user.last_login_at")
Dim Locale As String = jResp.StringOf("user.locale")
Dim Locale_id As String = jResp.StringOf("user.locale_id")
Dim Moderator As String = jResp.StringOf("user.moderator")
Dim Notes As String = jResp.StringOf("user.notes")
Dim Only_private_comments As String = jResp.StringOf("user.only_private_comments")
Dim Organization_id As String = jResp.StringOf("user.organization_id")
Dim Phone As String = jResp.StringOf("user.phone")
Dim Dolorea1 As Boolean = jResp.BoolOf("user.photo.dolorea1")
Dim Deserunt3 As String = jResp.StringOf("user.photo.deserunt3")
Dim Remote_photo_url As String = jResp.StringOf("user.remote_photo_url")
Dim Report_csv As String = jResp.StringOf("user.report_csv")
Dim Restricted_agent As String = jResp.StringOf("user.restricted_agent")
Dim Role As String = jResp.StringOf("user.role")
Dim Role_type As String = jResp.StringOf("user.role_type")
Dim v_Shared As String = jResp.StringOf("user.shared")
Dim Shared_agent As String = jResp.StringOf("user.shared_agent")
Dim Shared_phone_number As String = jResp.StringOf("user.shared_phone_number")
Dim Signature As String = jResp.StringOf("user.signature")
Dim Suspended As String = jResp.StringOf("user.suspended")
Dim Tags As String = jResp.StringOf("user.tags")
Dim Ticket_restriction As String = jResp.StringOf("user.ticket_restriction")
Dim Time_zone As String = jResp.StringOf("user.time_zone")
Dim Two_factor_auth_enabled As String = jResp.StringOf("user.two_factor_auth_enabled")
Dim Updated_at As String = jResp.StringOf("user.updated_at")
Dim v_Url As String = jResp.StringOf("user.url")
Dim Nostrudacc As String = jResp.StringOf("user.user_fields.nostrudacc")
Dim In_80e As String = jResp.StringOf("user.user_fields.in_80e")
Dim Proident_e2 As Boolean = jResp.BoolOf("user.user_fields.proident_e2")
Dim Voluptate_98 As Integer = jResp.IntOf("user.user_fields.voluptate_98")
Dim Verified As String = jResp.StringOf("user.verified")

Curl Command

curl  -u login:password -X POST
	-H "Content-Type: application/json"
	-H "Accept: application/json"
	-d '{
  "user": {
    "name": "<string>",
    "email": "<string>",
    "custom_role_id": "<integer>",
    "external_id": "<string>",
    "identities": [
      {
        "type": "<string>",
        "value": "<string>"
      },
      {
        "type": "<string>",
        "value": "<string>"
      }
    ],
    "organization": {
      "name": "<string>"
    },
    "organization_id": "<integer>",
    "role": "<string>"
  }
}'
https://example.zendesk.com/api/v2/users/create_or_update

Postman Collection Item JSON

{
  "name": "Create Or Update User",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "Content-Type",
        "value": "application/json"
      },
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n  \"user\": {\n    \"name\": \"<string>\",\n    \"email\": \"<string>\",\n    \"custom_role_id\": \"<integer>\",\n    \"external_id\": \"<string>\",\n    \"identities\": [\n      {\n        \"type\": \"<string>\",\n        \"value\": \"<string>\"\n      },\n      {\n        \"type\": \"<string>\",\n        \"value\": \"<string>\"\n      }\n    ],\n    \"organization\": {\n      \"name\": \"<string>\"\n    },\n    \"organization_id\": \"<integer>\",\n    \"role\": \"<string>\"\n  }\n}",
      "options": {
        "raw": {
          "headerFamily": "json",
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "{{baseUrl}}/api/v2/users/create_or_update",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "users",
        "create_or_update"
      ]
    },
    "description": "Creates a user if the user does not already exist, or updates an existing user\nidentified by e-mail address or external ID.\n\nIf you don't specify a role parameter, the new user is assigned the role of end user.\n\nIf you need to create users without sending out a verification email, include a `\"skip_verify_email\": true` property in the body.\n\n#### Response Status Code\n\n- If the user exists in Zendesk, a successful request returns a 200 status code with \"Location: /api/v2/users/{user_id}.json\".\n- If the user does not exist in Zendesk, a successful request returns a 201 status code with \"Location: /api/v2/users/{new_user_id}.json\".\n\n#### Rate Limit\n\nThe rate limit is 5 requests per minute for each unique end user profile. For example, you can make 10 calls per second as long as you make five calls for one user and five calls for another user.\nThe rate limiting mechanism behaves as described in\n[Usage Limits](/api-reference/introduction/rate-limits/#monitoring-your-request-activity)\nin the API introduction. Zendesk recommends that you obey the Retry-After header values.\n\n#### Allowed For\n\n* Agents, with restrictions on certain actions\n"
  },
  "response": [
    {
      "name": "Successful response, when user exits",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user\": {\n    \"name\": \"<string>\",\n    \"email\": \"<string>\",\n    \"custom_role_id\": \"<integer>\",\n    \"external_id\": \"<string>\",\n    \"identities\": [\n      {\n        \"type\": \"<string>\",\n        \"value\": \"<string>\"\n      },\n      {\n        \"type\": \"<string>\",\n        \"value\": \"<string>\"\n      }\n    ],\n    \"organization\": {\n      \"name\": \"<string>\"\n    },\n    \"organization_id\": \"<integer>\",\n    \"role\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/users/create_or_update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users",
            "create_or_update"
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"user\": {\n    \"name\": \"<string>\",\n    \"active\": \"<boolean>\",\n    \"alias\": \"<string>\",\n    \"chat_only\": \"<boolean>\",\n    \"created_at\": \"<string>\",\n    \"custom_role_id\": \"<integer>\",\n    \"default_group_id\": \"<integer>\",\n    \"details\": \"<string>\",\n    \"email\": \"<string>\",\n    \"external_id\": \"<string>\",\n    \"iana_time_zone\": \"<string>\",\n    \"id\": \"<integer>\",\n    \"last_login_at\": \"<string>\",\n    \"locale\": \"<string>\",\n    \"locale_id\": \"<integer>\",\n    \"moderator\": \"<boolean>\",\n    \"notes\": \"<string>\",\n    \"only_private_comments\": \"<boolean>\",\n    \"organization_id\": \"<integer>\",\n    \"phone\": \"<string>\",\n    \"photo\": {\n      \"dolorea1\": false,\n      \"deserunt3\": 95124319.10825741\n    },\n    \"remote_photo_url\": \"<string>\",\n    \"report_csv\": \"<boolean>\",\n    \"restricted_agent\": \"<boolean>\",\n    \"role\": \"<string>\",\n    \"role_type\": \"<integer>\",\n    \"shared\": \"<boolean>\",\n    \"shared_agent\": \"<boolean>\",\n    \"shared_phone_number\": \"<boolean>\",\n    \"signature\": \"<string>\",\n    \"suspended\": \"<boolean>\",\n    \"tags\": \"<array>\",\n    \"ticket_restriction\": \"<string>\",\n    \"time_zone\": \"<string>\",\n    \"two_factor_auth_enabled\": \"<boolean>\",\n    \"updated_at\": \"<string>\",\n    \"url\": \"<string>\",\n    \"user_fields\": {\n      \"nostrudacc\": -12929960.546221554,\n      \"in_80e\": 25167751.960886702,\n      \"proident_e2\": true,\n      \"voluptate_98\": -58995022\n    },\n    \"verified\": \"<boolean>\"\n  }\n}"
    },
    {
      "name": "Created response, when user is new",
      "originalRequest": {
        "method": "POST",
        "header": [
          {
            "key": "Content-Type",
            "value": "application/json"
          },
          {
            "description": "Added as a part of security scheme: basic",
            "key": "Authorization",
            "value": "Basic <credentials>"
          }
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n  \"user\": {\n    \"name\": \"<string>\",\n    \"email\": \"<string>\",\n    \"custom_role_id\": \"<integer>\",\n    \"external_id\": \"<string>\",\n    \"identities\": [\n      {\n        \"type\": \"<string>\",\n        \"value\": \"<string>\"\n      },\n      {\n        \"type\": \"<string>\",\n        \"value\": \"<string>\"\n      }\n    ],\n    \"organization\": {\n      \"name\": \"<string>\"\n    },\n    \"organization_id\": \"<integer>\",\n    \"role\": \"<string>\"\n  }\n}",
          "options": {
            "raw": {
              "headerFamily": "json",
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "{{baseUrl}}/api/v2/users/create_or_update",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "users",
            "create_or_update"
          ]
        }
      },
      "status": "Created",
      "code": 201,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"user\": {\n    \"name\": \"<string>\",\n    \"active\": \"<boolean>\",\n    \"alias\": \"<string>\",\n    \"chat_only\": \"<boolean>\",\n    \"created_at\": \"<string>\",\n    \"custom_role_id\": \"<integer>\",\n    \"default_group_id\": \"<integer>\",\n    \"details\": \"<string>\",\n    \"email\": \"<string>\",\n    \"external_id\": \"<string>\",\n    \"iana_time_zone\": \"<string>\",\n    \"id\": \"<integer>\",\n    \"last_login_at\": \"<string>\",\n    \"locale\": \"<string>\",\n    \"locale_id\": \"<integer>\",\n    \"moderator\": \"<boolean>\",\n    \"notes\": \"<string>\",\n    \"only_private_comments\": \"<boolean>\",\n    \"organization_id\": \"<integer>\",\n    \"phone\": \"<string>\",\n    \"photo\": {\n      \"dolorea1\": false,\n      \"deserunt3\": 95124319.10825741\n    },\n    \"remote_photo_url\": \"<string>\",\n    \"report_csv\": \"<boolean>\",\n    \"restricted_agent\": \"<boolean>\",\n    \"role\": \"<string>\",\n    \"role_type\": \"<integer>\",\n    \"shared\": \"<boolean>\",\n    \"shared_agent\": \"<boolean>\",\n    \"shared_phone_number\": \"<boolean>\",\n    \"signature\": \"<string>\",\n    \"suspended\": \"<boolean>\",\n    \"tags\": \"<array>\",\n    \"ticket_restriction\": \"<string>\",\n    \"time_zone\": \"<string>\",\n    \"two_factor_auth_enabled\": \"<boolean>\",\n    \"updated_at\": \"<string>\",\n    \"url\": \"<string>\",\n    \"user_fields\": {\n      \"nostrudacc\": -12929960.546221554,\n      \"in_80e\": 25167751.960886702,\n      \"proident_e2\": true,\n      \"voluptate_98\": -58995022\n    },\n    \"verified\": \"<boolean>\"\n  }\n}"
    }
  ]
}