Chilkat Online Tools

Classic ASP / Marketplacer SELLER API / Taxons Query

Back to Collection Items

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
' This example assumes the Chilkat API to have been previously unlocked.
' See Global Unlock Sample for sample code.

' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.Http")
set http = Server.CreateObject("Chilkat.Http")

http.BasicAuth = 1
http.Login = "{{username}}"
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.

' {
'   "query": "query QueryTaxons(\n\t$pageSize: Int\n\t$l0EndCursor: String\n\t$l1EndCursor: String\n\t$l2EndCursor: String\n) {\n\ttaxons(first: $pageSize, after: $l0EndCursor) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\tlegacyId\n\t\t\t\tdisplayName\n\t\t\t\tdescription\n\t\t\t\tgoogleCategory\n\t\t\t\ttaxCode\n\t\t\t\turlSlug\n\t\t\t\ttreeName\n\t\t\t\tprototype {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t\tchildren(first: $pageSize, after: $l1EndCursor) {\n\t\t\t\t\ttotalCount\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\ttreeName\n\t\t\t\t\t\t\turlSlug\n\t\t\t\t\t\t\tprototype {\n\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tchildren(first: $pageSize, after: $l2EndCursor) {\n\t\t\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\t\t\t\ttreeName\n\t\t\t\t\t\t\t\t\t\turlSlug\n\t\t\t\t\t\t\t\t\t\tprototype {\n\t\t\t\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}\n",
'   "variables": "{\n\t\"pageSize\": 10,\n\t\"l0EndCursor\": null,\n\t\"l1EndCursor\": null,\n\t\"l2EndCursor\": null\n}"
' }

' For versions of Chilkat < 10.0.0, use CreateObject("Chilkat_9_5_0.JsonObject")
set json = Server.CreateObject("Chilkat.JsonObject")
success = json.UpdateString("query","query QueryTaxons(" & vbLf & "	$pageSize: Int" & vbLf & "	$l0EndCursor: String" & vbLf & "	$l1EndCursor: String" & vbLf & "	$l2EndCursor: String" & vbLf & ") {" & vbLf & "	taxons(first: $pageSize, after: $l0EndCursor) {" & vbLf & "		totalCount" & vbLf & "		pageInfo {" & vbLf & "			...PageInfoPartial" & vbLf & "		}" & vbLf & "		edges {" & vbLf & "			node {" & vbLf & "				id" & vbLf & "				legacyId" & vbLf & "				displayName" & vbLf & "				description" & vbLf & "				googleCategory" & vbLf & "				taxCode" & vbLf & "				urlSlug" & vbLf & "				treeName" & vbLf & "				prototype {" & vbLf & "					name" & vbLf & "				}" & vbLf & "				children(first: $pageSize, after: $l1EndCursor) {" & vbLf & "					totalCount" & vbLf & "					pageInfo {" & vbLf & "						...PageInfoPartial" & vbLf & "					}" & vbLf & "					edges {" & vbLf & "						node {" & vbLf & "							id" & vbLf & "							displayName" & vbLf & "							treeName" & vbLf & "							urlSlug" & vbLf & "							prototype {" & vbLf & "								name" & vbLf & "							}" & vbLf & "							children(first: $pageSize, after: $l2EndCursor) {" & vbLf & "								totalCount" & vbLf & "								pageInfo {" & vbLf & "									...PageInfoPartial" & vbLf & "								}" & vbLf & "								edges {" & vbLf & "									node {" & vbLf & "										id" & vbLf & "										displayName" & vbLf & "										treeName" & vbLf & "										urlSlug" & vbLf & "										prototype {" & vbLf & "											name" & vbLf & "										}" & vbLf & "									}" & vbLf & "								}" & vbLf & "							}" & vbLf & "						}" & vbLf & "					}" & vbLf & "				}" & vbLf & "			}" & vbLf & "		}" & vbLf & "	}" & vbLf & "}" & vbLf & vbLf & "fragment PageInfoPartial on PageInfo {" & vbLf & "	hasNextPage" & vbLf & "	endCursor" & vbLf & "}" & vbLf)
success = json.UpdateString("variables","{" & vbLf & "	""pageSize"": 10," & vbLf & "	""l0EndCursor"": null," & vbLf & "	""l1EndCursor"": null," & vbLf & "	""l2EndCursor"": null" & vbLf & "}")

http.SetRequestHeader "Content-Type","application/json"
http.SetRequestHeader "MARKETPLACER-API-KEY","{{api_key}}"

' resp is a Chilkat.HttpResponse
Set resp = http.PostJson3("https://bestfriendbazaar.com/graphql","application/json",json)
If (http.LastMethodSuccess = 0) Then
    Response.Write "<pre>" & Server.HTMLEncode( http.LastErrorText) & "</pre>"
    Response.End
End If

Response.Write "<pre>" & Server.HTMLEncode( resp.StatusCode) & "</pre>"
Response.Write "<pre>" & Server.HTMLEncode( resp.BodyStr) & "</pre>"


%>
</body>
</html>

Curl Command

curl -X POST
	-u '{{username}}:{{password}}'
	-H "MARKETPLACER-API-KEY: {{api_key}}"
	-H "Content-Type: application/json"
	--data-raw '{"query":"query QueryTaxons(\n\t$pageSize: Int\n\t$l0EndCursor: String\n\t$l1EndCursor: String\n\t$l2EndCursor: String\n) {\n\ttaxons(first: $pageSize, after: $l0EndCursor) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\tlegacyId\n\t\t\t\tdisplayName\n\t\t\t\tdescription\n\t\t\t\tgoogleCategory\n\t\t\t\ttaxCode\n\t\t\t\turlSlug\n\t\t\t\ttreeName\n\t\t\t\tprototype {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t\tchildren(first: $pageSize, after: $l1EndCursor) {\n\t\t\t\t\ttotalCount\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\ttreeName\n\t\t\t\t\t\t\turlSlug\n\t\t\t\t\t\t\tprototype {\n\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tchildren(first: $pageSize, after: $l2EndCursor) {\n\t\t\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\t\t\t\ttreeName\n\t\t\t\t\t\t\t\t\t\turlSlug\n\t\t\t\t\t\t\t\t\t\tprototype {\n\t\t\t\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}\n","variables":"{\n\t\"pageSize\": 10,\n\t\"l0EndCursor\": null,\n\t\"l1EndCursor\": null,\n\t\"l2EndCursor\": null\n}"}'
https://bestfriendbazaar.com/graphql

Postman Collection Item JSON

{
  "name": "Taxons Query",
  "request": {
    "method": "POST",
    "header": [
      {
        "key": "MARKETPLACER-API-KEY",
        "value": "{{api_key}}",
        "type": "text"
      },
      {
        "key": "Content-Type",
        "value": "application/json",
        "type": "text"
      }
    ],
    "body": {
      "mode": "graphql",
      "graphql": {
        "query": "query QueryTaxons(\n\t$pageSize: Int\n\t$l0EndCursor: String\n\t$l1EndCursor: String\n\t$l2EndCursor: String\n) {\n\ttaxons(first: $pageSize, after: $l0EndCursor) {\n\t\ttotalCount\n\t\tpageInfo {\n\t\t\t...PageInfoPartial\n\t\t}\n\t\tedges {\n\t\t\tnode {\n\t\t\t\tid\n\t\t\t\tlegacyId\n\t\t\t\tdisplayName\n\t\t\t\tdescription\n\t\t\t\tgoogleCategory\n\t\t\t\ttaxCode\n\t\t\t\turlSlug\n\t\t\t\ttreeName\n\t\t\t\tprototype {\n\t\t\t\t\tname\n\t\t\t\t}\n\t\t\t\tchildren(first: $pageSize, after: $l1EndCursor) {\n\t\t\t\t\ttotalCount\n\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t}\n\t\t\t\t\tedges {\n\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\ttreeName\n\t\t\t\t\t\t\turlSlug\n\t\t\t\t\t\t\tprototype {\n\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\tchildren(first: $pageSize, after: $l2EndCursor) {\n\t\t\t\t\t\t\t\ttotalCount\n\t\t\t\t\t\t\t\tpageInfo {\n\t\t\t\t\t\t\t\t\t...PageInfoPartial\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\tedges {\n\t\t\t\t\t\t\t\t\tnode {\n\t\t\t\t\t\t\t\t\t\tid\n\t\t\t\t\t\t\t\t\t\tdisplayName\n\t\t\t\t\t\t\t\t\t\ttreeName\n\t\t\t\t\t\t\t\t\t\turlSlug\n\t\t\t\t\t\t\t\t\t\tprototype {\n\t\t\t\t\t\t\t\t\t\t\tname\n\t\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t\t}\n\t\t\t\t\t\t\t}\n\t\t\t\t\t\t}\n\t\t\t\t\t}\n\t\t\t\t}\n\t\t\t}\n\t\t}\n\t}\n}\n\nfragment PageInfoPartial on PageInfo {\n\thasNextPage\n\tendCursor\n}\n",
        "variables": "{\n\t\"pageSize\": 10,\n\t\"l0EndCursor\": null,\n\t\"l1EndCursor\": null,\n\t\"l2EndCursor\": null\n}"
      }
    },
    "url": {
      "raw": "{{base_url}}",
      "host": [
        "{{base_url}}"
      ],
      "path": null
    },
    "description": null
  },
  "response": [
  ]
}