Android / Postman API / Single Mock
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.SetRequestHeader("X-API-Key","{{postman_api_key}}");
CkStringBuilder sbResponseBody = new CkStringBuilder();
success = http.QuickGetSb("https://api.getpostman.com/mocks/{{mock_uid}}",sbResponseBody);
if (success == false) {
Log.i(TAG, http.lastErrorText());
return;
}
CkJsonObject jResp = new CkJsonObject();
jResp.LoadSb(sbResponseBody);
jResp.put_EmitCompact(false);
Log.i(TAG, "Response Body:");
Log.i(TAG, jResp.emit());
int respStatusCode = http.get_LastStatus();
Log.i(TAG, "Response Status Code = " + String.valueOf(respStatusCode));
if (respStatusCode >= 400) {
Log.i(TAG, "Response Header:");
Log.i(TAG, http.lastHeader());
Log.i(TAG, "Failed.");
return;
}
// Sample JSON response:
// (Sample code for parsing the JSON response is shown below)
// {
// "mock": {
// "id": "950dcaf2-ec37-4365-b106-ed659cc2ff5d",
// "owner": "1679925",
// "uid": "1679925-950dcaf2-ec37-4365-b106-ed659cc2ff5d",
// "collection": "1679925-8aa4c661-e0f4-4db0-98bc-d52cb72b5cbf",
// "environment": "1679925-2b90cdd8-e9ac-4086-91c2-bc4cad659511",
// "mockUrl": "https://950dcaf2-ec37-4365-b106-ed659cc2ff5d.mock.pstmn.io",
// "name": "mock1",
// "config": {
// "headers": [
// ],
// "matchBody": false,
// "matchQueryParams": true,
// "matchWildcards": true,
// "delay": null
// },
// "createdAt": "2020-12-14T08:12:21.000Z",
// "updatedAt": "2020-12-15T06:44:37.000Z",
// "isPublic": false
// }
// }
// Sample code for parsing the JSON response...
// Use this online tool to generate parsing code from sample JSON: Generate JSON Parsing Code
String Id = jResp.stringOf("mock.id");
String Owner = jResp.stringOf("mock.owner");
String Uid = jResp.stringOf("mock.uid");
String Collection = jResp.stringOf("mock.collection");
String Environment = jResp.stringOf("mock.environment");
String MockUrl = jResp.stringOf("mock.mockUrl");
String Name = jResp.stringOf("mock.name");
boolean MatchBody = jResp.BoolOf("mock.config.matchBody");
boolean MatchQueryParams = jResp.BoolOf("mock.config.matchQueryParams");
boolean MatchWildcards = jResp.BoolOf("mock.config.matchWildcards");
String Delay = jResp.stringOf("mock.config.delay");
String CreatedAt = jResp.stringOf("mock.createdAt");
String UpdatedAt = jResp.stringOf("mock.updatedAt");
boolean IsPublic = jResp.BoolOf("mock.isPublic");
int i = 0;
int count_i = jResp.SizeOfArray("mock.config.headers");
while (i < count_i) {
jResp.put_I(i);
i = i + 1;
}
}
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 GET
-H "X-API-Key: {{postman_api_key}}"
https://api.getpostman.com/mocks/{{mock_uid}}
Postman Collection Item JSON
{
"name": "Single Mock",
"request": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.getpostman.com/mocks/{{mock_uid}}",
"protocol": "https",
"host": [
"api",
"getpostman",
"com"
],
"path": [
"mocks",
"{{mock_uid}}"
]
},
"description": "This endpoint fetches you the basic information about a single mock using its `uid`.\n\n> Requires <a href=\"#authentication\">API Key</a> as `X-Api-Key` request header or `apikey` URL query parameter."
},
"response": [
{
"name": "Successful Response",
"originalRequest": {
"method": "GET",
"header": [
],
"url": {
"raw": "https://api.getpostman.com/mocks/{{mock_uid}}",
"protocol": "https",
"host": [
"api",
"getpostman",
"com"
],
"path": [
"mocks",
"{{mock_uid}}"
]
}
},
"status": "OK",
"code": 200,
"_postman_previewlanguage": "json",
"header": [
{
"key": "Content-Type",
"value": "application/json",
"name": "Content-Type",
"description": {
"content": "",
"type": "text/plain"
}
}
],
"cookie": [
],
"body": "{\n \"mock\":{\n \"id\":\"950dcaf2-ec37-4365-b106-ed659cc2ff5d\",\n \"owner\":\"1679925\",\n \"uid\":\"1679925-950dcaf2-ec37-4365-b106-ed659cc2ff5d\",\n \"collection\":\"1679925-8aa4c661-e0f4-4db0-98bc-d52cb72b5cbf\",\n \"environment\": \"1679925-2b90cdd8-e9ac-4086-91c2-bc4cad659511\",\n \"mockUrl\":\"https://950dcaf2-ec37-4365-b106-ed659cc2ff5d.mock.pstmn.io\",\n \"name\":\"mock1\",\n \"config\":{\n \"headers\":[],\n \"matchBody\":false,\n \"matchQueryParams\":true,\n \"matchWildcards\":true,\n \"delay\":null\n },\n \"createdAt\":\"2020-12-14T08:12:21.000Z\",\n \"updatedAt\":\"2020-12-15T06:44:37.000Z\",\n \"isPublic\":false\n }\n}"
}
]
}