curl --location \
--request PUT 'https://staging-api.propaga.io/v1/account/{userId}/verification/{verificationId}/onboarding' \
--header 'Authorization: <your_awesome_token>' \
--header 'Content-Type: application/json' \
--data '{
"step": "CORNER_STORE_NAME_UPDATE",
"information": {
"cornerStoreName": "Tiendita del Pedro"
}
}'
KYC
Corner store name
PUT
/
account
/
{userId}
/
verification
/
{verificationId}
/
onboarding
curl --location \
--request PUT 'https://staging-api.propaga.io/v1/account/{userId}/verification/{verificationId}/onboarding' \
--header 'Authorization: <your_awesome_token>' \
--header 'Content-Type: application/json' \
--data '{
"step": "CORNER_STORE_NAME_UPDATE",
"information": {
"cornerStoreName": "Tiendita del Pedro"
}
}'
Corner Store Name onboarding
{
"step": "CORNER_STORE_NAME_UPDATE",
"information": {
"cornerStoreName": "Tiendita del Pedro"
}
}
Path parameters
string
required
Propaga’s user id
string
required
Verification id generated when you call the create verification use-case
Body
curl --location \
--request PUT 'https://staging-api.propaga.io/v1/account/{userId}/verification/{verificationId}/onboarding' \
--header 'Authorization: <your_awesome_token>' \
--header 'Content-Type: application/json' \
--data '{
"step": "CORNER_STORE_NAME_UPDATE",
"information": {
"cornerStoreName": "Tiendita del Pedro"
}
}'
Error codes
User not found (404)
{
"errorCode": "USER_NOT_FOUND",
"errorMessage": "This user not found"
}
Verification not found (404)
{
"errorCode": "VERIFICATION_NOT_FOUND",
"errorMessage": "This verification not found"
}
Was this page helpful?

