I don't know what your data model looks like but this is a simple example :
Pass the JSONObject :
JSONObject data = new JSONObject("{\"StartDateTime\":\"20201112102410\", \"amount\":\"777\", \"terminalId\":\"1234567812121250\"}");
Intent intent = new Intent(this, SecondActivity.class);
intent.putExtra("data", data.toString());
startActivity(intent);
Then get the value in other Activity :
JSONObject dataFromFirtstActivity = new JSONObject(getIntent().getStringExtra("data"));
Pass the specific value :
Intent intent = new Intent(this, SecondActivity.class);
intent.putExtra("startDateTime", data.getLong("startDateTime"));
intent.putExtra("amount", data.getInt("amount"));
intent.putExtra("terminalId", data.getString("terminalId"));
startActivity(intent);
Then get the value in other Activity :
long startDateTime = getIntent().getLongExtra("startDateTime", 0);
int amount = getIntent().getIntExtra("amount", 0);
String terminalId = getIntent().getStringExtra("terminalId");
You should deal with your data first before going any further, and you can read more about passing data in here