Chilkat Online Tools

ERROR!

------------------- GenerateCode ----------------------
---- begin chilkat script ----
// This example assumes the Chilkat API to have been previously unlocked.
// See {{-global_unlock:::Global Unlock Sample-}} for sample code.

new Http http;
ckbool success;

http.BasicAuth = cktrue;
http.Login = "login";
http.Password = "password";

call http.SetRequestHeader("Accept","application/json");

new StringBuilder sbResponseBody;
success = http.QuickGetSb("https://example.zendesk.com/api/v2/satisfaction_ratings/:satisfaction_rating_id",sbResponseBody);
if (success == ckfalse) {
    println http.LastErrorText;
    return;
}

new JsonObject jResp;
call jResp.LoadSb(sbResponseBody);
jResp.EmitCompact = ckfalse;

println "Response Body:";
println jResp.Emit();

int respStatusCode = http.LastStatus;
println "Response Status Code = ",respStatusCode;
if (respStatusCode >= 400) {
    println "Response Header:";
    println http.LastHeader;
    println "Failed.";
    return;
}

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

// {
//   "satisfaction_rating": [
//     {
//       "assignee_id": "<integer>",
//       "group_id": "<integer>",
//       "requester_id": "<integer>",
//       "ticket_id": "<integer>",
//       "score": "<string>",
//       "comment": "<string>",
//       "created_at": "<dateTime>",
//       "id": "<integer>",
//       "reason": "<string>",
//       "reason_code": "<integer>",
//       "reason_id": "<integer>",
//       "updated_at": "<dateTime>",
//       "url": "<string>"
//     },
//     {
//       "assignee_id": "<integer>",
//       "group_id": "<integer>",
//       "requester_id": "<integer>",
//       "ticket_id": "<integer>",
//       "score": "<string>",
//       "comment": "<string>",
//       "created_at": "<dateTime>",
//       "id": "<integer>",
//       "reason": "<string>",
//       "reason_code": "<integer>",
//       "reason_id": "<integer>",
//       "updated_at": "<dateTime>",
//       "url": "<string>"
//     }
//   ]
// }

// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: {{.https://tools.chilkat.io/jsonParse|||Generate JSON Parsing Code.}}

#ifdef IS_C_CPP
// Chilkat functions returning "const char *" return a pointer to temporary internal memory owned and managed by Chilkat.
#undef IS_C_CPP

string url;

i = 0;
count_i = jResp.SizeOfArray("satisfaction_rating");
while i < count_i {
    jResp.I = i;
    assignee_id = jResp.StringOf("satisfaction_rating[i].assignee_id");
    group_id = jResp.StringOf("satisfaction_rating[i].group_id");
    requester_id = jResp.StringOf("satisfaction_rating[i].requester_id");
    ticket_id = jResp.StringOf("satisfaction_rating[i].ticket_id");
    score = jResp.StringOf("satisfaction_rating[i].score");
    comment = jResp.StringOf("satisfaction_rating[i].comment");
    created_at = jResp.StringOf("satisfaction_rating[i].created_at");
    id = jResp.StringOf("satisfaction_rating[i].id");
    reason = jResp.StringOf("satisfaction_rating[i].reason");
    reason_code = jResp.StringOf("satisfaction_rating[i].reason_code");
    reason_id = jResp.StringOf("satisfaction_rating[i].reason_id");
    updated_at = jResp.StringOf("satisfaction_rating[i].updated_at");
    url = jResp.StringOf("satisfaction_rating[i].url");
    i = i + 1;
}



---- end chilkat script ----

PureBasic / Support API / Show Satisfaction Rating

Back to Collection Items

IncludeFile "CkJsonObject.pb"
IncludeFile "CkStringBuilder.pb"
IncludeFile "CkHttp.pb"

Procedure ChilkatExample()

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

    http.i = CkHttp::ckCreate()
    If http.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success.i

    CkHttp::setCkBasicAuth(http, 1)
    CkHttp::setCkLogin(http, "login")
    CkHttp::setCkPassword(http, "password")

    CkHttp::ckSetRequestHeader(http,"Accept","application/json")

    sbResponseBody.i = CkStringBuilder::ckCreate()
    If sbResponseBody.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    success = CkHttp::ckQuickGetSb(http,"https://example.zendesk.com/api/v2/satisfaction_ratings/:satisfaction_rating_id",sbResponseBody)
    If success = 0
        Debug CkHttp::ckLastErrorText(http)
        CkHttp::ckDispose(http)
        CkStringBuilder::ckDispose(sbResponseBody)
        ProcedureReturn
    EndIf

    jResp.i = CkJsonObject::ckCreate()
    If jResp.i = 0
        Debug "Failed to create object."
        ProcedureReturn
    EndIf

    CkJsonObject::ckLoadSb(jResp,sbResponseBody)
    CkJsonObject::setCkEmitCompact(jResp, 0)

    Debug "Response Body:"
    Debug CkJsonObject::ckEmit(jResp)

    respStatusCode.i = CkHttp::ckLastStatus(http)
    Debug "Response Status Code = " + Str(respStatusCode)
    If respStatusCode >= 400
        Debug "Response Header:"
        Debug CkHttp::ckLastHeader(http)
        Debug "Failed."
        CkHttp::ckDispose(http)
        CkStringBuilder::ckDispose(sbResponseBody)
        CkJsonObject::ckDispose(jResp)
        ProcedureReturn
    EndIf

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

    ; {
    ;   "satisfaction_rating": [
    ;     {
    ;       "assignee_id": "<integer>",
    ;       "group_id": "<integer>",
    ;       "requester_id": "<integer>",
    ;       "ticket_id": "<integer>",
    ;       "score": "<string>",
    ;       "comment": "<string>",
    ;       "created_at": "<dateTime>",
    ;       "id": "<integer>",
    ;       "reason": "<string>",
    ;       "reason_code": "<integer>",
    ;       "reason_id": "<integer>",
    ;       "updated_at": "<dateTime>",
    ;       "url": "<string>"
    ;     },
    ;     {
    ;       "assignee_id": "<integer>",
    ;       "group_id": "<integer>",
    ;       "requester_id": "<integer>",
    ;       "ticket_id": "<integer>",
    ;       "score": "<string>",
    ;       "comment": "<string>",
    ;       "created_at": "<dateTime>",
    ;       "id": "<integer>",
    ;       "reason": "<string>",
    ;       "reason_code": "<integer>",
    ;       "reason_id": "<integer>",
    ;       "updated_at": "<dateTime>",
    ;       "url": "<string>"
    ;     }
    ;   ]
    ; }

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

    url.s

ERROR: Undefined variable(i)

ERROR: Undefined variable(count_i)

ERROR: Undefined variable(i)
ERROR: Undefined variable(count_i)
    While i < count_i
ERROR: Undefined variable(i)
ERROR: No et type for RHS expression.

ERROR: Undefined variable(assignee_id)

ERROR: Undefined variable(group_id)

ERROR: Undefined variable(requester_id)

ERROR: Undefined variable(ticket_id)

ERROR: Undefined variable(score)

ERROR: Undefined variable(comment)

ERROR: Undefined variable(created_at)

ERROR: Undefined variable(id)

ERROR: Undefined variable(reason)

ERROR: Undefined variable(reason_code)

ERROR: Undefined variable(reason_id)

ERROR: Undefined variable(updated_at)

        url = CkJsonObject::ckStringOf(jResp,"satisfaction_rating[i].url")
ERROR: Undefined variable(i)
ERROR: Missing et type attribute (b)
ERROR: Undefined variable(i)

    Wend


    CkHttp::ckDispose(http)
    CkStringBuilder::ckDispose(sbResponseBody)
    CkJsonObject::ckDispose(jResp)


    ProcedureReturn
EndProcedure

Curl Command

curl  -u login:password -X GET
	-H "Accept: application/json"
https://example.zendesk.com/api/v2/satisfaction_ratings/:satisfaction_rating_id

Postman Collection Item JSON

{
  "name": "Show Satisfaction Rating",
  "request": {
    "method": "GET",
    "header": [
      {
        "key": "Accept",
        "value": "application/json"
      }
    ],
    "url": {
      "raw": "{{baseUrl}}/api/v2/satisfaction_ratings/:satisfaction_rating_id",
      "host": [
        "{{baseUrl}}"
      ],
      "path": [
        "api",
        "v2",
        "satisfaction_ratings",
        ":satisfaction_rating_id"
      ],
      "variable": [
        {
          "key": "satisfaction_rating_id",
          "value": "<integer>"
        }
      ]
    },
    "description": "Returns a specific satisfaction rating. You can get the id from\nthe [List Satisfaction Ratings](#list-satisfaction-ratings) endpoint.\n\n#### Allowed For\n\n * Admins\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/satisfaction_ratings/:satisfaction_rating_id",
          "host": [
            "{{baseUrl}}"
          ],
          "path": [
            "api",
            "v2",
            "satisfaction_ratings",
            ":satisfaction_rating_id"
          ],
          "variable": [
            {
              "key": "satisfaction_rating_id"
            }
          ]
        }
      },
      "status": "OK",
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
        {
          "key": "Content-Type",
          "value": "application/json"
        }
      ],
      "cookie": [
      ],
      "body": "{\n  \"satisfaction_rating\": [\n    {\n      \"assignee_id\": \"<integer>\",\n      \"group_id\": \"<integer>\",\n      \"requester_id\": \"<integer>\",\n      \"ticket_id\": \"<integer>\",\n      \"score\": \"<string>\",\n      \"comment\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"id\": \"<integer>\",\n      \"reason\": \"<string>\",\n      \"reason_code\": \"<integer>\",\n      \"reason_id\": \"<integer>\",\n      \"updated_at\": \"<dateTime>\",\n      \"url\": \"<string>\"\n    },\n    {\n      \"assignee_id\": \"<integer>\",\n      \"group_id\": \"<integer>\",\n      \"requester_id\": \"<integer>\",\n      \"ticket_id\": \"<integer>\",\n      \"score\": \"<string>\",\n      \"comment\": \"<string>\",\n      \"created_at\": \"<dateTime>\",\n      \"id\": \"<integer>\",\n      \"reason\": \"<string>\",\n      \"reason_code\": \"<integer>\",\n      \"reason_id\": \"<integer>\",\n      \"updated_at\": \"<dateTime>\",\n      \"url\": \"<string>\"\n    }\n  ]\n}"
    }
  ]
}