Chilkat Online Tools

Android / Plivo REST API / Posting Call Quality Feedback Using API

Back to Collection Items

// Important: Don't forget to include the call to System.loadLibrary
// as shown at the bottom of this code sample.
package com.test;

import android.app.Activity;
import com.chilkatsoft.*;

import android.widget.TextView;
import android.os.Bundle;

public class SimpleActivity extends Activity {

  private static final String TAG = "Chilkat";

  // Called when the activity is first created.
  @Override
  public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);

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

    CkHttp http = new CkHttp();
    boolean success;

    http.put_BasicAuth(true);
    http.put_Login("{{auth_id}}");
    http.put_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.

    // {
    //   "call_uuid": "9834029e-58b6-11e1-b8b7-a5bd0e4e126f",
    //   "rating": "3",
    //   "issues": "ECHO",
    //   "Notes": "It's intermittent"
    // }

    CkJsonObject json = new CkJsonObject();
    json.UpdateString("call_uuid","9834029e-58b6-11e1-b8b7-a5bd0e4e126f");
    json.UpdateString("rating","3");
    json.UpdateString("issues","ECHO");
    json.UpdateString("Notes","It's intermittent");

    CkHttpResponse resp = http.PostJson3("https://stats.plivo.com/v1/Call/{call_uuid}/Feedback/","application/json",json);
    if (http.get_LastMethodSuccess() == false) {
        Log.i(TAG, http.lastErrorText());
        return;
        }

    Log.i(TAG, String.valueOf(resp.get_StatusCode()));
    Log.i(TAG, resp.bodyStr());


  }

  static {
      System.loadLibrary("chilkat");

      // Note: If the incorrect library name is passed to System.loadLibrary,
      // then you will see the following error message at application startup:
      //"The application <your-application-name> has stopped unexpectedly. Please try again."
  }
}

Curl Command

curl -X POST
	-u '{{auth_id}}:password'
	-d '{
    "call_uuid":"9834029e-58b6-11e1-b8b7-a5bd0e4e126f",
    "rating":"3",
    "issues":"ECHO",
    "Notes":"It\'s intermittent"
}'
https://stats.plivo.com/v1/Call/{call_uuid}/Feedback/

Postman Collection Item JSON

{
  "name": "Posting Call Quality Feedback Using API",
  "request": {
    "method": "POST",
    "header": [
    ],
    "body": {
      "mode": "raw",
      "raw": "{\n    \"call_uuid\":\"9834029e-58b6-11e1-b8b7-a5bd0e4e126f\",\n    \"rating\":\"3\",\n    \"issues\":\"ECHO\",\n    \"Notes\":\"It's intermittent\"\n}",
      "options": {
        "raw": {
          "language": "json"
        }
      }
    },
    "url": {
      "raw": "https://stats.plivo.com/v1/Call/{call_uuid}/Feedback/",
      "protocol": "https",
      "host": [
        "stats",
        "plivo",
        "com"
      ],
      "path": [
        "v1",
        "Call",
        "{call_uuid}",
        "Feedback",
        ""
      ]
    },
    "description": "This method allows you to post feedback for calls. Call quality feedback information received through this API is accessible on the Call Debug UI. Aggregated reports are available for analyses on the Call Insights Reporting Dashboard.\n\nBelow is the list of arguments that can be passed in this API request, more information can be found [here](https://www.plivo.com/docs/voice/api/call#post-feedback)\n\n| Arguments   | Description | Required/Conditional/Optional     |\n| :---        |    :----:   |          ---: |\n| call_uuid      |The call uuid of the call for which feedback is being posted.| Required  |\n| rating   | Quality rating for the call, allowed values are, float between [1,5]. PS: for integer values both ‘x’ or ‘x.`0’ are accepted.  | Required |\n| issues   | List of issues observed on the call. One or more of the following:<br />'AUDIO_LAG','BROKEN_AUDIO','CALL_DROPPED','CALLERID_ISSUE','DIGITS_NOT_CAPTURED','ECHO','HIGH_CONNECT_TIME','LOW_AUDIO_LEVEL','ONE_WAY_AUDIO','OTHERS','ROBOTIC_AUDIO' | Required only if rating is <5 <br />|\n| Notes   | This is an optional free text field. It can be used to send descriptive feedback for the call.| Optional |"
  },
  "response": [
    {
      "name": "Posting Call Quality Feedback Using API",
      "originalRequest": {
        "method": "POST",
        "header": [
        ],
        "body": {
          "mode": "raw",
          "raw": "{\n    \"call_uuid\":\"9834029e-58b6-11e1-b8b7-a5bd0e4e126f\",\n    \"rating\":\"3\",\n    \"issues\":\"ECHO\",\n    \"Notes\":\"It's intermittent\"\n}",
          "options": {
            "raw": {
              "language": "json"
            }
          }
        },
        "url": {
          "raw": "https://stats.plivo.com/v1/Call/{call_uuid}/Feedback/",
          "protocol": "https",
          "host": [
            "stats",
            "plivo",
            "com"
          ],
          "path": [
            "v1",
            "Call",
            "{call_uuid}",
            "Feedback",
            ""
          ]
        }
      },
      "code": 200,
      "_postman_previewlanguage": "json",
      "header": [
      ],
      "cookie": [
      ],
      "body": "{\n    \"message\": \"Feedback has been Posted\",\n    \"api_id\": \"97ceeb52-58b6-11e1-86da-77300b68f8bb\",\n    \"status\": \"success\"\n}"
    }
  ]
}