/
Create a password
Create a new password for the user identified by the user_id path parameter.
Security
apiKey
The user's password or passcode used to log in a user. Passwords must be:
- between 8 and 30 characters
- include a lowercase character
- include an uppercase character
- include a digit and a special character
- different from any of the 5 last such passwords used.
For non-PCI compliant integrations, the password submitted must be tokenised.
- Sandboxhttps://sandbox.weavr.io/payment-run/v1/password/{user_id}
- Mock serverhttps://api.weavr.io/_mock/products/payment-run/openapi/v1/password/{user_id}
curl -i -X POST \
https://sandbox.weavr.io/payment-run/v1/password/110747174434373672 \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-d '{
"password": {
"value": "pa$$word"
}
}'