Hello there, "Sandbox environment" -- "401 Unauthorised" Error 1. I am trying to create an andorid-clover app where i need to create inventory item from my application 2. I am using android SDK for auth process here is the code override fun doInBackground(vararg params: Void?): AuthResult? { val client = OkHttpClient() val mediaType = "application/json".toMediaTypeOrNull() val body = RequestBody.create(mediaType, "{hidden:false,available:true,autoManage:false,defaultTaxRates:true,isRevenue:false,name:Gift Card -99 Minds ,price:100}") val request = Request.Builder() .url("https://sandbox.dev.clover.com/v3/merchants/RCTST0000008099/items") .post(body) .addHeader("content-type", "application/json") .addHeader("authorization", "Bearer "+mCloverAuth?.authToken) .build() val response = client.newCall(request).execute() Log.e("InventoryItemRequest", response.toString()) return null } 3. Everytime i use the above generated token i am receiving "401 Unauthorised" 4. I tried all the possible solution but no luck. Please let me know what i am missing. Thanks