I tried passing the values as Json (key-pair values) but I don't get to to see the values in response.
To store current date and time in AsyncStorage you can use an async function,
StoreDate = async () => {
await AsyncStorage.setItem('date', new Date());
};
To retrieve stored date,
retrieveDate = async () => {
const value = await AsyncStorage.getItem('date');
};