VB6 / Support API / Autocomplete Organizations
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 ChilkatHttp
Dim success As Long
http.BasicAuth = 1
http.Login = "login"
http.Password = "password"
Dim queryParams As New ChilkatJsonObject
success = queryParams.UpdateString("name","<string>")
success = queryParams.UpdateString("field_id","<string>")
success = queryParams.UpdateString("source","<string>")
http.SetRequestHeader "Accept","application/json"
Dim resp As ChilkatHttpResponse
Set resp = http.QuickRequestParams("GET","https://example.zendesk.com/api/v2/organizations/autocomplete",queryParams)
If (http.LastMethodSuccess = 0) Then
Debug.Print http.LastErrorText
Exit Sub
End If
Dim sbResponseBody As New ChilkatStringBuilder
success = resp.GetBodySb(sbResponseBody)
Dim jResp As New ChilkatJsonObject
success = jResp.LoadSb(sbResponseBody)
jResp.EmitCompact = 0
Debug.Print "Response Body:"
Debug.Print jResp.Emit()
Dim respStatusCode As Long
respStatusCode = resp.StatusCode
Debug.Print "Response Status Code = " & respStatusCode
If (respStatusCode >= 400) Then
Debug.Print "Response Header:"
Debug.Print resp.Header
Debug.Print "Failed."
Exit Sub
End If
' Sample JSON response:
' (Sample code for parsing the JSON response is shown below)
' {
' "count": "<integer>",
' "next_page": "<string>",
' "organizations": [
' {
' "created_at": "<string>",
' "details": "<string>",
' "domain_names": [
' "<string>",
' "<string>"
' ],
' "external_id": "<string>",
' "group_id": "<integer>",
' "id": "<integer>",
' "name": "<string>",
' "notes": "<string>",
' "organization_fields": {
' "eiusmod_f": "<string>"
' },
' "shared_comments": "<boolean>",
' "shared_tickets": "<boolean>",
' "tags": [
' "<string>",
' "<string>"
' ],
' "updated_at": "<string>",
' "url": "<string>"
' },
' {
' "created_at": "<string>",
' "details": "<string>",
' "domain_names": [
' "<string>",
' "<string>"
' ],
' "external_id": "<string>",
' "group_id": "<integer>",
' "id": "<integer>",
' "name": "<string>",
' "notes": "<string>",
' "organization_fields": {
' "nulla2": "<string>"
' },
' "shared_comments": "<boolean>",
' "shared_tickets": "<boolean>",
' "tags": [
' "<string>",
' "<string>"
' ],
' "updated_at": "<string>",
' "url": "<string>"
' }
' ],
' "previous_page": "<string>"
' }
' Sample code for parsing the JSON response...
' Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
Dim created_at As String
Dim details As String
Dim external_id As String
Dim group_id As String
Dim id As String
Dim name As String
Dim notes As String
Dim Eiusmod_f As String
Dim shared_comments As String
Dim shared_tickets As String
Dim updated_at As String
Dim url As String
Dim Nulla2 As String
Dim j As Long
Dim count_j As Long
Dim strVal As String
Dim count As String
count = jResp.StringOf("count")
Dim next_page As String
next_page = jResp.StringOf("next_page")
Dim previous_page As String
previous_page = jResp.StringOf("previous_page")
Dim i As Long
i = 0
Dim count_i As Long
count_i = jResp.SizeOfArray("organizations")
Do While i < count_i
jResp.I = i
created_at = jResp.StringOf("organizations[i].created_at")
details = jResp.StringOf("organizations[i].details")
external_id = jResp.StringOf("organizations[i].external_id")
group_id = jResp.StringOf("organizations[i].group_id")
id = jResp.StringOf("organizations[i].id")
name = jResp.StringOf("organizations[i].name")
notes = jResp.StringOf("organizations[i].notes")
Eiusmod_f = jResp.StringOf("organizations[i].organization_fields.eiusmod_f")
shared_comments = jResp.StringOf("organizations[i].shared_comments")
shared_tickets = jResp.StringOf("organizations[i].shared_tickets")
updated_at = jResp.StringOf("organizations[i].updated_at")
url = jResp.StringOf("organizations[i].url")
Nulla2 = jResp.StringOf("organizations[i].organization_fields.nulla2")
j = 0
count_j = jResp.SizeOfArray("organizations[i].domain_names")
Do While j < count_j
jResp.J = j
strVal = jResp.StringOf("organizations[i].domain_names[j]")
j = j + 1
Loop
j = 0
count_j = jResp.SizeOfArray("organizations[i].tags")
Do While j < count_j
jResp.J = j
strVal = jResp.StringOf("organizations[i].tags[j]")
j = j + 1
Loop
i = i + 1
Loop
Curl Command
curl -u login:password -G -d "name=%3Cstring%3E"
-d "field_id=%3Cstring%3E"
-d "source=%3Cstring%3E"
-H "Accept: application/json"
https://example.zendesk.com/api/v2/organizations/autocomplete
Postman Collection Item JSON
{
"name": "Autocomplete Organizations",
"request": {
"method": "GET",
"header": [
{
"key": "Accept",
"value": "application/json"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/organizations/autocomplete?name=<string>&field_id=<string>&source=<string>",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"organizations",
"autocomplete"
],
"query": [
{
"key": "name",
"value": "<string>",
"description": "(Required) A substring of an organization to search for"
},
{
"key": "field_id",
"value": "<string>",
"description": "The id of a lookup relationship field. The type of field is determined\nby the `source` param\n"
},
{
"key": "source",
"value": "<string>",
"description": "If a `field_id` is provided, this specifies the type of the field.\nFor example, if the field is on a \"zen:user\", it references a field on a user\n"
}
]
},
"description": "Returns an array of organizations whose name starts with the\nvalue specified in the `name` parameter.\n\n#### Pagination\n\n* Offset pagination only\n\nSee [Using Offset Pagination](/api-reference/ticketing/introduction/#using-offset-pagination).\n\n#### Allowed For\n\n* Agents\n"
},
"response": [
{
"name": "Success response",
"originalRequest": {
"method": "GET",
"header": [
{
"description": "Added as a part of security scheme: basic",
"key": "Authorization",
"value": "Basic <credentials>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/organizations/autocomplete?name=<string>&field_id=<string>&source=<string>",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"organizations",
"autocomplete"
],
"query": [
{
"key": "name",
"value": "<string>",
"description": "(Required) A substring of an organization to search for"
},
{
"key": "field_id",
"value": "<string>",
"description": "The id of a lookup relationship field. The type of field is determined\nby the `source` param\n"
},
{
"key": "source",
"value": "<string>",
"description": "If a `field_id` is provided, this specifies the type of the field.\nFor example, if the field is on a \"zen:user\", it references a field on a user\n"
}
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"count\": \"<integer>\",\n \"next_page\": \"<string>\",\n \"organizations\": [\n {\n \"created_at\": \"<string>\",\n \"details\": \"<string>\",\n \"domain_names\": [\n \"<string>\",\n \"<string>\"\n ],\n \"external_id\": \"<string>\",\n \"group_id\": \"<integer>\",\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"notes\": \"<string>\",\n \"organization_fields\": {\n \"eiusmod_f\": \"<string>\"\n },\n \"shared_comments\": \"<boolean>\",\n \"shared_tickets\": \"<boolean>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ],\n \"updated_at\": \"<string>\",\n \"url\": \"<string>\"\n },\n {\n \"created_at\": \"<string>\",\n \"details\": \"<string>\",\n \"domain_names\": [\n \"<string>\",\n \"<string>\"\n ],\n \"external_id\": \"<string>\",\n \"group_id\": \"<integer>\",\n \"id\": \"<integer>\",\n \"name\": \"<string>\",\n \"notes\": \"<string>\",\n \"organization_fields\": {\n \"nulla2\": \"<string>\"\n },\n \"shared_comments\": \"<boolean>\",\n \"shared_tickets\": \"<boolean>\",\n \"tags\": [\n \"<string>\",\n \"<string>\"\n ],\n \"updated_at\": \"<string>\",\n \"url\": \"<string>\"\n }\n ],\n \"previous_page\": \"<string>\"\n}"
},
{
"name": "Bad request",
"originalRequest": {
"method": "GET",
"header": [
{
"description": "Added as a part of security scheme: basic",
"key": "Authorization",
"value": "Basic <credentials>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/organizations/autocomplete?name=<string>&field_id=<string>&source=<string>",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"organizations",
"autocomplete"
],
"query": [
{
"key": "name",
"value": "<string>",
"description": "(Required) A substring of an organization to search for"
},
{
"key": "field_id",
"value": "<string>",
"description": "The id of a lookup relationship field. The type of field is determined\nby the `source` param\n"
},
{
"key": "source",
"value": "<string>",
"description": "If a `field_id` is provided, this specifies the type of the field.\nFor example, if the field is on a \"zen:user\", it references a field on a user\n"
}
]
}
},
"status": "Bad Request",
"code": 400,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n {\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"detail\": \"<string>\",\n \"id\": \"<string>\",\n \"links\": {},\n \"source\": {},\n \"status\": \"<string>\"\n },\n {\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"detail\": \"<string>\",\n \"id\": \"<string>\",\n \"links\": {},\n \"source\": {},\n \"status\": \"<string>\"\n }\n ]\n}"
},
{
"name": "Too Many Requests",
"originalRequest": {
"method": "GET",
"header": [
{
"description": "Added as a part of security scheme: basic",
"key": "Authorization",
"value": "Basic <credentials>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/organizations/autocomplete?name=<string>&field_id=<string>&source=<string>",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"organizations",
"autocomplete"
],
"query": [
{
"key": "name",
"value": "<string>",
"description": "(Required) A substring of an organization to search for"
},
{
"key": "field_id",
"value": "<string>",
"description": "The id of a lookup relationship field. The type of field is determined\nby the `source` param\n"
},
{
"key": "source",
"value": "<string>",
"description": "If a `field_id` is provided, this specifies the type of the field.\nFor example, if the field is on a \"zen:user\", it references a field on a user\n"
}
]
}
},
"status": "Too Many Requests",
"code": 429,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n {\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"detail\": \"<string>\",\n \"id\": \"<string>\",\n \"links\": {},\n \"source\": {},\n \"status\": \"<string>\"\n },\n {\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"detail\": \"<string>\",\n \"id\": \"<string>\",\n \"links\": {},\n \"source\": {},\n \"status\": \"<string>\"\n }\n ]\n}"
},
{
"name": "Internal Server Error",
"originalRequest": {
"method": "GET",
"header": [
{
"description": "Added as a part of security scheme: basic",
"key": "Authorization",
"value": "Basic <credentials>"
}
],
"url": {
"raw": "{{baseUrl}}/api/v2/organizations/autocomplete?name=<string>&field_id=<string>&source=<string>",
"host": [
"{{baseUrl}}"
],
"path": [
"api",
"v2",
"organizations",
"autocomplete"
],
"query": [
{
"key": "name",
"value": "<string>",
"description": "(Required) A substring of an organization to search for"
},
{
"key": "field_id",
"value": "<string>",
"description": "The id of a lookup relationship field. The type of field is determined\nby the `source` param\n"
},
{
"key": "source",
"value": "<string>",
"description": "If a `field_id` is provided, this specifies the type of the field.\nFor example, if the field is on a \"zen:user\", it references a field on a user\n"
}
]
}
},
"status": "Internal Server Error",
"code": 500,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"cookie": [
],
"body": "{\n \"errors\": [\n {\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"detail\": \"<string>\",\n \"id\": \"<string>\",\n \"links\": {},\n \"source\": {},\n \"status\": \"<string>\"\n },\n {\n \"code\": \"<string>\",\n \"title\": \"<string>\",\n \"detail\": \"<string>\",\n \"id\": \"<string>\",\n \"links\": {},\n \"source\": {},\n \"status\": \"<string>\"\n }\n ]\n}"
}
]
}