I'm making a react-native app in which I need to have surveys and it should be possible to take said surveys will offline. Is it possible to get a survey as json so I can render the survey myself in the app and at a later time post the responses back?
I'm thinking I'd request multiple surveys when the app is started or when I has a internet connection and store them until the user should take them and then store the responses until the app can post them to the backend.
So can I get a survey with multiple questions as a single json response and similarly, can I post a single json back with the answers to said survey? If so where is this documented because I did search for it quite a lot?