Skip to content

Weavr Simulator (v2)

This is a Simulator API which is only available on the Weavr Sandbox Environment

Download OpenAPI description
Overview
Languages
Servers
Mock server
https://api.weavr.io/_mock/products/simulator/openapi
https://sandbox.weavr.io/simulate/api"

Accounts

Operations

Cards

Operations

Consumers

Operations

Corporates

Operations

Wiretransfers

Operations

Factors

Operations

Linked Accounts

Operations

linked_accounts_account_id_set

Request

Allows the verification or rejection of a linked account run by specifying the account ID. This operation updates the status of a linked account to either VERIFIED or REJECTED.

Security
API_Secret_Key
Path
account_idinteger(int64)required
Headers
call-refstring

A call reference generated by the caller and unique to the caller to provide correlation between the caller and system with a maximum length of 255

Bodyapplication/jsonrequired
statestring(LinkedAccountRunRequestState)
Enum"VERIFIED""REJECTED"
curl -i -X POST \
  'https://api.weavr.io/_mock/products/simulator/openapi/linked_accounts/{account_id}/set' \
  -H 'Content-Type: application/json' \
  -H 'call-ref: string' \
  -H 'programme-key: YOUR_API_KEY_HERE' \
  -d '{
    "state": "VERIFIED"
  }'

Responses

Success - No Content

Response
No content

linked_accounts_account_id_verify

Request

This tool is used to simulate internal verification for linked accounts by Account ID.

Security
API_Secret_Key
Path
account_idinteger(int64)required
Headers
call-refstring

A call reference generated by the caller and unique to the caller to provide correlation between the caller and system with a maximum length of 255

Bodyapplication/jsonrequired
stepsArray of strings(VerifyRequestByAccountIdVerificationStep)
Items Enum"INTERNAL_CHECKS""TRANSFER_INSTRUCTION""USER_DECLARATION_SCA_CHALLENGE""MICRO_DEPOSIT"
resultstring(VerifyRequestByAccountIdVerificationState)
Enum"COMPLETED""REJECTED"
curl -i -X POST \
  'https://api.weavr.io/_mock/products/simulator/openapi/linked_accounts/{account_id}/verify' \
  -H 'Content-Type: application/json' \
  -H 'call-ref: string' \
  -H 'programme-key: YOUR_API_KEY_HERE' \
  -d '{
    "steps": [
      "INTERNAL_CHECKS"
    ],
    "result": "COMPLETED"
  }'

Responses

Success - No Content

Response
No content