Skip to main content

Documentation

Update Wallet

Change or modify a Rapyd Wallet.

Note

This endpoint replaces the deprecated endpoint: PUT /v1/user

Rapyd no longer supports the deprecated endpoint.

    • ewallet

    • ID of the Rapyd Wallet. String starting with ewallet_.

    • cnls_partner_query_reference

    • Payment Facilitator (PayFac) only. Value of the partner_query_reference parameter used as the query request ID in the Card Network Lookup Service (CNLS). See Retrieve Query Results

    • ewallet_reference_id

    • Rapyd Wallet ID defined by the customer or end user. Must be unique.

    • first_name

    • First name of the Rapyd Wallet owner. For a person wallet type, alphabetic characters and spaces.

    • last_name

    • Family name of the Rapyd Wallet owner. For a person wallet type, alphabetic characters and spaces.

    • .NET

      • using System;
        using System.Text.Json;
        
        namespace RapydApiRequestSample
        {
            class Program
            {
                static void Main(string[] args)
                {
                    try
                    {
                        var metadata = new
                        {
                            merchant_defined = "updated"
                        };
        
                        var requestObj = new
                        {
                            ewallet = "ewallet_72b4ff39ca50dccc73c0ee65d85e124e",
                            ewallet_reference_id = "4-star-pro-02212021",
                            metadata,
                        };
        
                        string request = JsonSerializer.Serialize(requestObj);
        
                        string result = RapydApiRequestSample.Utilities.MakeRequest("PUT", "/v1/user", request);
        
                        Console.WriteLine(result);
                    }
                    catch (Exception e)
                    {
                        Console.WriteLine("Error completing request: " + e.Message);
                    }
                }
            }
        }
    • JavaScript

      • const makeRequest = require('<path-to-your-utility-file>/utilities').makeRequest;
        
        async function main() {
          try {
            const body = {
              ewallet: 'ewallet_72b4ff39ca50dccc73c0ee65d85e124e',
              ewallet_reference_id: '4-star-pro-02212021',
              metadata: {
                merchant_defined: 'updated'
              }
            };
            const result = await makeRequest('PUT', '/v1/user', body);
        
            console.log(result);
          } catch (error) {
            console.error('Error completing request', error);
          }
        }
    • PHP

      • <?php
        $path = $_SERVER['DOCUMENT_ROOT'];
        $path .= "/<path-to-your-utility-file>/utilities.php";
        include($path);
        $body = [
            'ewallet' => 'ewallet_72b4ff39ca50dccc73c0ee65d85e124e',
            'ewallet_reference_id' => '4-star-pro-02212021',
            'metadata' => [
                'merchant_defined' => "updated"
            ]
          ];
        
        try {
            $object = make_request('put', '/v1/user', $body);
            var_dump($object);
        } catch(Exception $e) {
            echo "Error: $e";
        }
        ?>
    • Python

      • from pprint import pprint
        
        from utilities import make_request
        
        body = {
            "ewallet": "ewallet_72b4ff39ca50dccc73c0ee65d85e124e",
            "ewallet_reference_id": "4-star-pro-02212021",
            "metadata": {
                "merchant_defined": "updated"
            }
        }
        
        results = make_request(method='put', path='/v1/user', body=body)
        pprint(results)
  • /v1/ewallets/:ewallet

  • Update cnls_partner_query_reference - PayFac

  • curl -X post
    'https://sandboxapi.rapyd.net/v1/ewallets/ewallet_b5320c566cc4aa01fe77440ad08693f7' \
    -H 'access_key: your-access-key-here' \
    -H 'Content-Type: application/json' \
    -H 'idempotency: your-idempotency-parameter-here' \
    -H 'salt: your-random-string-here' \
    -H 'signature: your-calculated-signature-here' \
    -H 'timestamp: your-unix-timestamp-here' \
    --data-raw '{
        "cnls_partner_query_reference": "abcd123"
    }'
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "",
            "response_code": "",
            "operation_id": "f9a3368f-3dbf-49c6-a81a-a17f5150612c"
        },
        "data": {
            "phone_number": null,
            "email": "john.doe.162417@example.com",
            "first_name": "John",
            "last_name": "Doe",
            "id": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
            "status": "ACT",
            "accounts": [
                {
                    "id": "ff97f975-5e85-4df0-8f01-9b1b051d3e39",
                    "currency": "PLN",
                    "alias": "PLN",
                    "balance": 10000,
                    "received_balance": 0,
                    "on_hold_balance": 0,
                    "reserve_balance": 0,
                    "limits": null,
                    "limit": null
                },
                {
                    "id": "4a659c50-3f2d-487a-b062-30459e00c437",
                    "currency": "EUR",
                    "alias": "EUR",
                    "balance": 9798,
                    "received_balance": 0,
                    "on_hold_balance": 0,
                    "reserve_balance": 0,
                    "limits": null,
                    "limit": null
                }
            ],
            "verification_status": "not verified",
            "type": "company",
            "metadata": {
                "merchant_defined": true
            },
            "ewallet_reference_id": "erd-2025-08-10a",
            "category": null,
            "contacts": {
                "data": [
                    {
                        "id": "cont_18c0d881a3d0d2e9e54d4664c6b0022d",
                        "first_name": "John",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "business",
                        "phone_number": "+14155551234",
                        "email": "john.doe.162417@example.com",
                        "identification_type": "",
                        "identification_number": "",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": null,
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1753881858,
                        "metadata": {},
                        "business_details": {
                            "id": "busi_aba4330005786f053d25c46168d21fc4",
                            "name": "",
                            "registration_number": "",
                            "entity_type": "n/a",
                            "industry_category": "n/a",
                            "industry_sub_category": "n/a",
                            "address": {
                                "id": "address_3c15646a8e2011f884c92eb416f52a02",
                                "name": "John Doe",
                                "line_1": "789 Main Street",
                                "line_2": "Apt 4E",
                                "line_3": "",
                                "city": "Anytown",
                                "state": "",
                                "country": "US",
                                "zip": "54321",
                                "phone_number": "+14155555555",
                                "metadata": {},
                                "canton": "",
                                "district": "",
                                "created_at": 1755781052
                            },
                            "created_at": 1753881858,
                            "annual_revenue": 0,
                            "establishment_date": null,
                            "legal_entity_type": null,
                            "cnae_code": null,
                            "statement_descriptor": null,
                            "mcc": null,
                            "website_url": null,
                            "customer_service_phone_number": null
                        },
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    },
                    {
                        "id": "cont_6b37bac42846c7046bdb9e24b89a5d05",
                        "first_name": "Jane",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "personal",
                        "phone_number": "",
                        "email": "",
                        "identification_type": "PA",
                        "identification_number": "1233242424",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": {
                            "id": "address_2c98c788eafe3a5a6b7541431e0ced5e",
                            "name": "Jane Doe",
                            "line_1": "123 Lake Forest Drive",
                            "line_2": "",
                            "line_3": "",
                            "city": "Anytown",
                            "state": "NY",
                            "country": "",
                            "zip": "12345",
                            "phone_number": "+14155551234",
                            "metadata": {
                                "merchant_defined": true
                            },
                            "canton": "",
                            "district": "",
                            "created_at": 1754572956
                        },
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1754572956,
                        "metadata": {},
                        "business_details": null,
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    },
                    {
                        "id": "cont_1efdd747f4495c054be799227448ef6b",
                        "first_name": "Jane",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "personal",
                        "phone_number": "",
                        "email": "",
                        "identification_type": "PA",
                        "identification_number": "1233242424",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": {
                            "id": "address_2827aa908f199b14067f2311180bdde9",
                            "name": "Jane Doe",
                            "line_1": "123 Lake Forest Drive",
                            "line_2": "",
                            "line_3": "",
                            "city": "Anytown",
                            "state": "NY",
                            "country": "",
                            "zip": "12345",
                            "phone_number": "+14155551234",
                            "metadata": {},
                            "canton": "",
                            "district": "",
                            "created_at": 1757241207
                        },
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1757241207,
                        "metadata": {},
                        "business_details": null,
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    }
                ],
                "has_more": true,
                "total_count": 6,
                "url": "/v1/ewallets/ewallet_b5320c566cc4aa01fe77440ad08693f7/contacts"
            },
            "parent_ewallet": null,
            "cnls_partner_query_reference": null
        }
    }
  • Update Wallet - Reference ID

  • curl -X post
    'https://sandboxapi.rapyd.net/v1/ewallets/ewallet_b5320c566cc4aa01fe77440ad08693f7' \
    -H 'access_key: your-access-key-here' \
    -H 'Content-Type: application/json' \
    -H 'idempotency: your-idempotency-parameter-here' \
    -H 'salt: your-random-string-here' \
    -H 'signature: your-calculated-signature-here' \
    -H 'timestamp: your-unix-timestamp-here' \
    --data-raw '{
        "ewallet_reference_id": "2025-09-10a"
    }'
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "",
            "response_code": "",
            "operation_id": "29f7e0ce-d333-4035-9580-6a26bafd3c63"
        },
        "data": {
            "phone_number": null,
            "email": "john.doe.162417@example.com",
            "first_name": "John",
            "last_name": "Doe",
            "id": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
            "status": "ACT",
            "accounts": [
                {
                    "id": "ff97f975-5e85-4df0-8f01-9b1b051d3e39",
                    "currency": "PLN",
                    "alias": "PLN",
                    "balance": 10000,
                    "received_balance": 0,
                    "on_hold_balance": 0,
                    "reserve_balance": 0,
                    "limits": null,
                    "limit": null
                },
                {
                    "id": "4a659c50-3f2d-487a-b062-30459e00c437",
                    "currency": "EUR",
                    "alias": "EUR",
                    "balance": 9798,
                    "received_balance": 0,
                    "on_hold_balance": 0,
                    "reserve_balance": 0,
                    "limits": null,
                    "limit": null
                }
            ],
            "verification_status": "not verified",
            "type": "company",
            "metadata": {
                "merchant_defined": true
            },
            "ewallet_reference_id": "2025-09-10a",
            "category": null,
            "contacts": {
                "data": [
                    {
                        "id": "cont_18c0d881a3d0d2e9e54d4664c6b0022d",
                        "first_name": "John",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "business",
                        "phone_number": "+14155551234",
                        "email": "john.doe.162417@example.com",
                        "identification_type": "",
                        "identification_number": "",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": null,
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1753881858,
                        "metadata": {},
                        "business_details": {
                            "id": "busi_aba4330005786f053d25c46168d21fc4",
                            "name": "",
                            "registration_number": "",
                            "entity_type": "n/a",
                            "industry_category": "n/a",
                            "industry_sub_category": "n/a",
                            "address": {
                                "id": "address_3c15646a8e2011f884c92eb416f52a02",
                                "name": "John Doe",
                                "line_1": "789 Main Street",
                                "line_2": "Apt 4E",
                                "line_3": "",
                                "city": "Anytown",
                                "state": "",
                                "country": "US",
                                "zip": "54321",
                                "phone_number": "+14155555555",
                                "metadata": {},
                                "canton": "",
                                "district": "",
                                "created_at": 1755781052
                            },
                            "created_at": 1753881858,
                            "annual_revenue": 0,
                            "establishment_date": null,
                            "legal_entity_type": null,
                            "cnae_code": null,
                            "statement_descriptor": null,
                            "mcc": null,
                            "website_url": null,
                            "customer_service_phone_number": null
                        },
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    },
                    {
                        "id": "cont_6b37bac42846c7046bdb9e24b89a5d05",
                        "first_name": "Jane",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "personal",
                        "phone_number": "",
                        "email": "",
                        "identification_type": "PA",
                        "identification_number": "1233242424",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": {
                            "id": "address_2c98c788eafe3a5a6b7541431e0ced5e",
                            "name": "Jane Doe",
                            "line_1": "123 Lake Forest Drive",
                            "line_2": "",
                            "line_3": "",
                            "city": "Anytown",
                            "state": "NY",
                            "country": "",
                            "zip": "12345",
                            "phone_number": "+14155551234",
                            "metadata": {
                                "merchant_defined": true
                            },
                            "canton": "",
                            "district": "",
                            "created_at": 1754572956
                        },
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1754572956,
                        "metadata": {},
                        "business_details": null,
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    },
                    {
                        "id": "cont_1efdd747f4495c054be799227448ef6b",
                        "first_name": "Jane",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "personal",
                        "phone_number": "",
                        "email": "",
                        "identification_type": "PA",
                        "identification_number": "1233242424",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": {
                            "id": "address_2827aa908f199b14067f2311180bdde9",
                            "name": "Jane Doe",
                            "line_1": "123 Lake Forest Drive",
                            "line_2": "",
                            "line_3": "",
                            "city": "Anytown",
                            "state": "NY",
                            "country": "",
                            "zip": "12345",
                            "phone_number": "+14155551234",
                            "metadata": {},
                            "canton": "",
                            "district": "",
                            "created_at": 1757241207
                        },
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1757241207,
                        "metadata": {},
                        "business_details": null,
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    }
                ],
                "has_more": true,
                "total_count": 6,
                "url": "/v1/ewallets/ewallet_b5320c566cc4aa01fe77440ad08693f7/contacts"
            },
            "parent_ewallet": null,
            "cnls_partner_query_reference": null
        }
    }
  • Update Wallet - Associated Parent Wallet

  • curl -X post
    'https://sandboxapi.rapyd.net/v1/ewallets/ewallet_b5320c566cc4aa01fe77440ad08693f7' \
    -H 'access_key: your-access-key-here' \
    -H 'Content-Type: application/json' \
    -H 'idempotency: your-idempotency-parameter-here' \
    -H 'salt: your-random-string-here' \
    -H 'signature: your-calculated-signature-here' \
    -H 'timestamp: your-unix-timestamp-here' \
    --data-raw '{
        "parent_ewallet": "ewallet_fddc5585dbf751d36ac83b71b3e2863f"
    }'
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "",
            "response_code": "",
            "operation_id": "0b00d8c3-7468-424b-aa53-bb2764a652af"
        },
        "data": {
            "phone_number": null,
            "email": "john.doe.162417@example.com",
            "first_name": "John",
            "last_name": "Doe",
            "id": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
            "status": "ACT",
            "accounts": [
                {
                    "id": "ff97f975-5e85-4df0-8f01-9b1b051d3e39",
                    "currency": "PLN",
                    "alias": "PLN",
                    "balance": 10000,
                    "received_balance": 0,
                    "on_hold_balance": 0,
                    "reserve_balance": 0,
                    "limits": null,
                    "limit": null
                },
                {
                    "id": "4a659c50-3f2d-487a-b062-30459e00c437",
                    "currency": "EUR",
                    "alias": "EUR",
                    "balance": 9798,
                    "received_balance": 0,
                    "on_hold_balance": 0,
                    "reserve_balance": 0,
                    "limits": null,
                    "limit": null
                }
            ],
            "verification_status": "not verified",
            "type": "company",
            "metadata": {
                "merchant_defined": true
            },
            "ewallet_reference_id": "2025-09-10a",
            "category": null,
            "contacts": {
                "data": [
                    {
                        "id": "cont_18c0d881a3d0d2e9e54d4664c6b0022d",
                        "first_name": "John",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "business",
                        "phone_number": "+14155551234",
                        "email": "john.doe.162417@example.com",
                        "identification_type": "",
                        "identification_number": "",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": null,
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1753881858,
                        "metadata": {},
                        "business_details": {
                            "id": "busi_aba4330005786f053d25c46168d21fc4",
                            "name": "",
                            "registration_number": "",
                            "entity_type": "n/a",
                            "industry_category": "n/a",
                            "industry_sub_category": "n/a",
                            "address": {
                                "id": "address_3c15646a8e2011f884c92eb416f52a02",
                                "name": "John Doe",
                                "line_1": "789 Main Street",
                                "line_2": "Apt 4E",
                                "line_3": "",
                                "city": "Anytown",
                                "state": "",
                                "country": "US",
                                "zip": "54321",
                                "phone_number": "+14155555555",
                                "metadata": {},
                                "canton": "",
                                "district": "",
                                "created_at": 1755781052
                            },
                            "created_at": 1753881858,
                            "annual_revenue": 0,
                            "establishment_date": null,
                            "legal_entity_type": null,
                            "cnae_code": null,
                            "statement_descriptor": null,
                            "mcc": null,
                            "website_url": null,
                            "customer_service_phone_number": null
                        },
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    },
                    {
                        "id": "cont_6b37bac42846c7046bdb9e24b89a5d05",
                        "first_name": "Jane",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "personal",
                        "phone_number": "",
                        "email": "",
                        "identification_type": "PA",
                        "identification_number": "1233242424",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": {
                            "id": "address_2c98c788eafe3a5a6b7541431e0ced5e",
                            "name": "Jane Doe",
                            "line_1": "123 Lake Forest Drive",
                            "line_2": "",
                            "line_3": "",
                            "city": "Anytown",
                            "state": "NY",
                            "country": "",
                            "zip": "12345",
                            "phone_number": "+14155551234",
                            "metadata": {
                                "merchant_defined": true
                            },
                            "canton": "",
                            "district": "",
                            "created_at": 1754572956
                        },
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1754572956,
                        "metadata": {},
                        "business_details": null,
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    },
                    {
                        "id": "cont_1efdd747f4495c054be799227448ef6b",
                        "first_name": "Jane",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "personal",
                        "phone_number": "",
                        "email": "",
                        "identification_type": "PA",
                        "identification_number": "1233242424",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": {
                            "id": "address_2827aa908f199b14067f2311180bdde9",
                            "name": "Jane Doe",
                            "line_1": "123 Lake Forest Drive",
                            "line_2": "",
                            "line_3": "",
                            "city": "Anytown",
                            "state": "NY",
                            "country": "",
                            "zip": "12345",
                            "phone_number": "+14155551234",
                            "metadata": {},
                            "canton": "",
                            "district": "",
                            "created_at": 1757241207
                        },
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1757241207,
                        "metadata": {},
                        "business_details": null,
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    }
                ],
                "has_more": true,
                "total_count": 6,
                "url": "/v1/ewallets/ewallet_b5320c566cc4aa01fe77440ad08693f7/contacts"
            },
            "parent_ewallet": null,
            "cnls_partner_query_reference": null
        }
    }
  • Update Wallet - Metadata

  • curl -X post
    'https://sandboxapi.rapyd.net/v1/ewallets/ewallet_b5320c566cc4aa01fe77440ad08693f7' \
    -H 'access_key: your-access-key-here' \
    -H 'Content-Type: application/json' \
    -H 'idempotency: your-idempotency-parameter-here' \
    -H 'salt: your-random-string-here' \
    -H 'signature: your-calculated-signature-here' \
    -H 'timestamp: your-unix-timestamp-here' \
    --data-raw '{
        "metadata": {
            "merchant_defined": "updated data"
        }
    }'
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "",
            "response_code": "",
            "operation_id": "57a67157-864f-41fc-b78c-6fd507a22653"
        },
        "data": {
            "phone_number": null,
            "email": "john.doe.162417@example.com",
            "first_name": "John",
            "last_name": "Doe",
            "id": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
            "status": "ACT",
            "accounts": [
                {
                    "id": "ff97f975-5e85-4df0-8f01-9b1b051d3e39",
                    "currency": "PLN",
                    "alias": "PLN",
                    "balance": 10000,
                    "received_balance": 0,
                    "on_hold_balance": 0,
                    "reserve_balance": 0,
                    "limits": null,
                    "limit": null
                },
                {
                    "id": "4a659c50-3f2d-487a-b062-30459e00c437",
                    "currency": "EUR",
                    "alias": "EUR",
                    "balance": 9798,
                    "received_balance": 0,
                    "on_hold_balance": 0,
                    "reserve_balance": 0,
                    "limits": null,
                    "limit": null
                }
            ],
            "verification_status": "not verified",
            "type": "company",
            "metadata": {
                "merchant_defined": "updated data"
            },
            "ewallet_reference_id": "2025-09-10a",
            "category": null,
            "contacts": {
                "data": [
                    {
                        "id": "cont_18c0d881a3d0d2e9e54d4664c6b0022d",
                        "first_name": "John",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "business",
                        "phone_number": "+14155551234",
                        "email": "john.doe.162417@example.com",
                        "identification_type": "",
                        "identification_number": "",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": null,
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1753881858,
                        "metadata": {},
                        "business_details": {
                            "id": "busi_aba4330005786f053d25c46168d21fc4",
                            "name": "",
                            "registration_number": "",
                            "entity_type": "n/a",
                            "industry_category": "n/a",
                            "industry_sub_category": "n/a",
                            "address": {
                                "id": "address_3c15646a8e2011f884c92eb416f52a02",
                                "name": "John Doe",
                                "line_1": "789 Main Street",
                                "line_2": "Apt 4E",
                                "line_3": "",
                                "city": "Anytown",
                                "state": "",
                                "country": "US",
                                "zip": "54321",
                                "phone_number": "+14155555555",
                                "metadata": {},
                                "canton": "",
                                "district": "",
                                "created_at": 1755781052
                            },
                            "created_at": 1753881858,
                            "annual_revenue": 0,
                            "establishment_date": null,
                            "legal_entity_type": null,
                            "cnae_code": null,
                            "statement_descriptor": null,
                            "mcc": null,
                            "website_url": null,
                            "customer_service_phone_number": null
                        },
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    },
                    {
                        "id": "cont_6b37bac42846c7046bdb9e24b89a5d05",
                        "first_name": "Jane",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "personal",
                        "phone_number": "",
                        "email": "",
                        "identification_type": "PA",
                        "identification_number": "1233242424",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": {
                            "id": "address_2c98c788eafe3a5a6b7541431e0ced5e",
                            "name": "Jane Doe",
                            "line_1": "123 Lake Forest Drive",
                            "line_2": "",
                            "line_3": "",
                            "city": "Anytown",
                            "state": "NY",
                            "country": "",
                            "zip": "12345",
                            "phone_number": "+14155551234",
                            "metadata": {
                                "merchant_defined": true
                            },
                            "canton": "",
                            "district": "",
                            "created_at": 1754572956
                        },
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1754572956,
                        "metadata": {},
                        "business_details": null,
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    },
                    {
                        "id": "cont_1efdd747f4495c054be799227448ef6b",
                        "first_name": "Jane",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "personal",
                        "phone_number": "",
                        "email": "",
                        "identification_type": "PA",
                        "identification_number": "1233242424",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": {
                            "id": "address_2827aa908f199b14067f2311180bdde9",
                            "name": "Jane Doe",
                            "line_1": "123 Lake Forest Drive",
                            "line_2": "",
                            "line_3": "",
                            "city": "Anytown",
                            "state": "NY",
                            "country": "",
                            "zip": "12345",
                            "phone_number": "+14155551234",
                            "metadata": {},
                            "canton": "",
                            "district": "",
                            "created_at": 1757241207
                        },
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1757241207,
                        "metadata": {},
                        "business_details": null,
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    }
                ],
                "has_more": true,
                "total_count": 6,
                "url": "/v1/ewallets/ewallet_b5320c566cc4aa01fe77440ad08693f7/contacts"
            },
            "parent_ewallet": null,
            "cnls_partner_query_reference": null
        }
    }
  • Update Wallet - First & Last Name

  • curl -X post
    'https://sandboxapi.rapyd.net/v1/ewallets/ewallet_b5320c566cc4aa01fe77440ad08693f7' \
    -H 'access_key: your-access-key-here' \
    -H 'Content-Type: application/json' \
    -H 'idempotency: your-idempotency-parameter-here' \
    -H 'salt: your-random-string-here' \
    -H 'signature: your-calculated-signature-here' \
    -H 'timestamp: your-unix-timestamp-here' \
    --data-raw '{
        "last_name": "Doe",
        "first_name": "John"
    }'
  • {
        "status": {
            "error_code": "",
            "status": "SUCCESS",
            "message": "",
            "response_code": "",
            "operation_id": "5cabe674-02d7-4f43-a32c-a5139db0402e"
        },
        "data": {
            "phone_number": null,
            "email": "john.doe.162417@example.com",
            "first_name": "John",
            "last_name": "Doe",
            "id": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
            "status": "ACT",
            "accounts": [
                {
                    "id": "ff97f975-5e85-4df0-8f01-9b1b051d3e39",
                    "currency": "PLN",
                    "alias": "PLN",
                    "balance": 10000,
                    "received_balance": 0,
                    "on_hold_balance": 0,
                    "reserve_balance": 0,
                    "limits": null,
                    "limit": null
                },
                {
                    "id": "4a659c50-3f2d-487a-b062-30459e00c437",
                    "currency": "EUR",
                    "alias": "EUR",
                    "balance": 9798,
                    "received_balance": 0,
                    "on_hold_balance": 0,
                    "reserve_balance": 0,
                    "limits": null,
                    "limit": null
                }
            ],
            "verification_status": "not verified",
            "type": "company",
            "metadata": {
                "merchant_defined": "updated data"
            },
            "ewallet_reference_id": "2025-09-10a",
            "category": null,
            "contacts": {
                "data": [
                    {
                        "id": "cont_18c0d881a3d0d2e9e54d4664c6b0022d",
                        "first_name": "John",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "business",
                        "phone_number": "+14155551234",
                        "email": "john.doe.162417@example.com",
                        "identification_type": "",
                        "identification_number": "",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": null,
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1753881858,
                        "metadata": {},
                        "business_details": {
                            "id": "busi_aba4330005786f053d25c46168d21fc4",
                            "name": "",
                            "registration_number": "",
                            "entity_type": "n/a",
                            "industry_category": "n/a",
                            "industry_sub_category": "n/a",
                            "address": {
                                "id": "address_3c15646a8e2011f884c92eb416f52a02",
                                "name": "John Doe",
                                "line_1": "789 Main Street",
                                "line_2": "Apt 4E",
                                "line_3": "",
                                "city": "Anytown",
                                "state": "",
                                "country": "US",
                                "zip": "54321",
                                "phone_number": "+14155555555",
                                "metadata": {},
                                "canton": "",
                                "district": "",
                                "created_at": 1755781052
                            },
                            "created_at": 1753881858,
                            "annual_revenue": 0,
                            "establishment_date": null,
                            "legal_entity_type": null,
                            "cnae_code": null,
                            "statement_descriptor": null,
                            "mcc": null,
                            "website_url": null,
                            "customer_service_phone_number": null
                        },
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    },
                    {
                        "id": "cont_6b37bac42846c7046bdb9e24b89a5d05",
                        "first_name": "Jane",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "personal",
                        "phone_number": "",
                        "email": "",
                        "identification_type": "PA",
                        "identification_number": "1233242424",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": {
                            "id": "address_2c98c788eafe3a5a6b7541431e0ced5e",
                            "name": "Jane Doe",
                            "line_1": "123 Lake Forest Drive",
                            "line_2": "",
                            "line_3": "",
                            "city": "Anytown",
                            "state": "NY",
                            "country": "",
                            "zip": "12345",
                            "phone_number": "+14155551234",
                            "metadata": {
                                "merchant_defined": true
                            },
                            "canton": "",
                            "district": "",
                            "created_at": 1754572956
                        },
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1754572956,
                        "metadata": {},
                        "business_details": null,
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    },
                    {
                        "id": "cont_1efdd747f4495c054be799227448ef6b",
                        "first_name": "Jane",
                        "last_name": "Doe",
                        "middle_name": "",
                        "second_last_name": "",
                        "gender": "not_applicable",
                        "marital_status": "not_applicable",
                        "house_type": "",
                        "contact_type": "personal",
                        "phone_number": "",
                        "email": "",
                        "identification_type": "PA",
                        "identification_number": "1233242424",
                        "issued_card_data": {
                            "preferred_name": "",
                            "transaction_permissions": "",
                            "role_in_company": ""
                        },
                        "date_of_birth": null,
                        "country": "US",
                        "nationality": null,
                        "address": {
                            "id": "address_2827aa908f199b14067f2311180bdde9",
                            "name": "Jane Doe",
                            "line_1": "123 Lake Forest Drive",
                            "line_2": "",
                            "line_3": "",
                            "city": "Anytown",
                            "state": "NY",
                            "country": "",
                            "zip": "12345",
                            "phone_number": "+14155551234",
                            "metadata": {},
                            "canton": "",
                            "district": "",
                            "created_at": 1757241207
                        },
                        "ewallet": "ewallet_b5320c566cc4aa01fe77440ad08693f7",
                        "created_at": 1757241207,
                        "metadata": {},
                        "business_details": null,
                        "compliance_profile": 0,
                        "verification_status": "not verified",
                        "send_notifications": false,
                        "mothers_name": "",
                        "contact_reference_id": null
                    }
                ],
                "has_more": true,
                "total_count": 6,
                "url": "/v1/ewallets/ewallet_b5320c566cc4aa01fe77440ad08693f7/contacts"
            },
            "parent_ewallet": null,
            "cnls_partner_query_reference": null
        }
    }