Hi, we want certain details to be stored for user request, which is better place to store? metadata ...
t
Hi, we want certain details to be stored for user request, which is better place to store? metadata or accessPayload. Where is the data stored in both cases (in form token or retrived by api call)
r
hey @trinadh_95306
access token payload is in the session's access token. Metadata is stored in the db
how often do you want to access this information? If it's very often, and for most APIs, then it's better to put in the access token payload since it deosn't require a db call to fetch that info
t
hey @rp_st thanks for the information