Android / Commercetools / Delete TaxCategory by key
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;
// Adds the "Authorization: Bearer <access_token>" header.
http.put_AuthToken("<access_token>");
http.SetRequestHeader("Content-Type","application/json");
CkHttpResponse resp = http.QuickRequest("delete","https://domain.com/{{project-key}}/tax-categories/key={{tax-category-key}}");
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 delete
-H "Authorization: Bearer <access_token>"
-H "Content-Type: application/json"
https://domain.com/{{project-key}}/tax-categories/key={{tax-category-key}}
Postman Collection Item JSON
{
"name": "Delete TaxCategory by key",
"event": [
{
"listen": "test",
"script": {
"type": "text/javascript",
"exec": [
"tests[\"Status code \" + responseCode.code] = responseCode.code === 200 || responseCode.code === 201;",
"var data = JSON.parse(responseBody);",
"if(data.results && data.results[0] && data.results[0].id && data.results[0].version){",
" pm.environment.set(\"tax-category-id\", data.results[0].id); ",
" pm.environment.set(\"tax-category-version\", data.results[0].version);",
"}",
"if(data.results && data.results[0] && data.results[0].key){",
" pm.environment.set(\"tax-category-key\", data.results[0].key); ",
"}",
"if(data.version){",
" pm.environment.set(\"tax-category-version\", data.version);",
"}",
"if(data.id){",
" pm.environment.set(\"tax-category-id\", data.id); ",
"}",
"if(data.key){",
" pm.environment.set(\"tax-category-key\", data.key);",
"}",
""
]
}
}
],
"request": {
"auth": {
"type": "oauth2",
"oauth2": {
"accessToken": "{{ctp_access_token}}",
"addTokenTo": "header",
"tokenType": "Bearer"
}
},
"method": "delete",
"header": [
{
"key": "Content-Type",
"value": "application/json"
}
],
"url": {
"raw": "{{host}}/{{project-key}}/tax-categories/key={{tax-category-key}}",
"host": [
"{{host}}"
],
"path": [
"{{project-key}}",
"tax-categories",
"key={{tax-category-key}}"
],
"query": [
{
"key": "version",
"value": "{{tax-category-version}}",
"equals": true,
"disabled": false
},
{
"key": "expand",
"value": "",
"equals": true,
"disabled": true
}
]
},
"description": "null",
"body": {
"mode": "raw",
"raw": ""
}
},
"response": [
]
}