The Valtio React Native SDK provides components to integrate data collection request workflows into React Native applications.
The Valtio Platform is a low-code document and data collection solution that enables application developers and businesses to quickly and securely collect sensitive data from users.
With npm
npm install @valtioinc/react-native-sdk
With Yarn
yarn add @valtioinc/react-native-sdk
Business users can send data collection requests to users via the
ValtioRequest
component with mode="send"
.
If the business user does not have an active authenticated session with Valtio, they will be prompted to verify their identity before they can proceed.
Once authenticated, they will be provided a screen to send a request template to another user by simply providing the email address and name of the user.
Request templates are defined externally on the Valtio Platform. Please reach out to the Valtio team to create an account and for assistance in configuring requests
Example:
import { View } from "react-native";
import { ValtioRequest } from "@valtioinc/react-native-sdk";
export default function ExampleScreen() {
return (
<ValtioRequest
endpoint="https://app-integration.valtio.io"
mode="send"
userIdentifier="+5555555555"
/>
);
}
MIT