Skip to main content
PUT
https://staging-api.propaga.io/v1
/
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

userId
string
required
Propaga’s user id
verificationId
string
required
Verification id generated when you call the create verification use-case

Body

step
string
default:"CORNER_STORE_NAME_UPDATE"
required
information
object
required
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"
}