- Issue a one-time password that can be used to verify a list of resources
Verify a list of resources using a one-time password
Issue a push notification that can be used to verify a list of resources
Issue a one-time password...
Starts the verification process for a list of resources in which a one-time password is sent to a device belonging to the logged-in user that was previously enrolled through the /authentication_factors/otp/{channel} endpoint.
This endpoint can be used to challenge Outgoing Wire Transfers, Sends, and Linked Account Declarations.
You should only start this process if the operation state is PENDING_CHALLENGE.
Note that on the Sandbox Environment, text messages are not sent and the one-time-password is always "123456".
Security
auth_token and api-key
The resource type that the subsequent Ids pertain to. Note that the linked_account_declaration can only be performed by a logged in Root User.
Enum:"outgoing_wire_transfers""sends""linked_account_declaration""correspondent_bank_transfers"
- Weavr Sandbox Environmenthttps://sandbox.weavr.io/multi/challenges/otp/{channel}
- Mock serverhttps://api.weavr.io/_mock/products/multi/openapi/challenges/otp/{channel}
curl -i -X POST \
'https://sandbox.weavr.io/multi/challenges/otp/{channel}' \
-H 'Authorization: Bearer <YOUR_JWT_HERE>' \
-H 'Content-Type: application/json' \
-H 'api-key: YOUR_API_KEY_HERE' \
-H 'idempotency-ref: string' \
-d '{
"resourceType": "outgoing_wire_transfers",
"resourceIds": [
"string"
]
}'Response
{ "scaChallengeId": "string" }