Retrieve Merchant Details

Get merchant

GET https://<Platform-host>/merchant/:id

Retrieve the details of a merchant.

Path Parameters

Name
Type
Description

id*

string

The ID of the merchant to get

Note: data.data has the same structure as

{
    "data": {
        "id": "d568f759-a27b-455c-8876-1c60c42bc35e",
        "name": "New Merchant 1646672033",
        "email": "[email protected]",
        "status": "editing",
        "created_at": "2022-03-07T16:53:40.820Z",
        "updated_at": "2022-03-07T16:53:40.820Z",
        "data": {
            "name": "New Merchant 1646672033",
            "email": "[email protected]",
            "business_type": {
                "type": "COS",
                "mcc_sic": "5734"
            },
            "business_details": {
                "legal": {
                    "name": "New Merchant 1646672033",
                    "address_street": "123 Main Street",
                    "suite_type": "suite",
                    "address_unit": "222",
                    "address_city": "Los Angeles",
                    "address_state": "CA",
                    "address_zip": 92808
                },
                "dba_same_as_legal": true,
                "business_phone_no": "7526463989",
                "email": "[email protected]",
                "business_age_years": 1,
                "business_age_months": 2,
                "business_description": "Description of products or services sold",
                "how_products_delivered": "Directly to consumer's home",
                "when_product_received": "2-3 business days",
                "return_policy": "Return before 30 days",
                "tax_exempt": false,
                "type_of_tax_id": "SSN",
                "tax_identification_number": "222334456",
                "accepted_transaction_types": [
                    "ACH"
                ],
                "number_of_locations": "4",
                "company_annual_revenue": "1000000",
                "how_many_days": "3",
                "place_of_issuance": "CA",
                "aoi_month": 4,
                "aoi_year": "2020",
                "aoi_day": 22,
                "b2b_percentage": "20",
                "dba": {
                    "name": "New Merchant 1646672033",
                    "address_street": "123 Main Street",
                    "suite_type": "suite",
                    "address_city": "Los Angeles",
                    "address_state": "CA",
                    "address_zip": 92808
                }
            },
            "owner_officers": {
                "officers": [
                    {
                        "first_name": "John",
                        "middle_name": "",
                        "last_name": "Doe",
                        "ownership": 75,
                        "address_same_as_legal": false,
                        "address_street": "Main Street",
                        "address_unit": "",
                        "address_city": "Los Angeles",
                        "address_state": "CA",
                        "address_zip": "90245",
                        "email": "[email protected]",
                        "phone_no": "3494262452",
                        "birth_month": 2,
                        "birth_day": 28,
                        "birth_year": 1990,
                        "ssn": "333445567",
                        "title": "CEO",
                        "signing_app": true,
                        "personal_guarantor": true,
                        "country_of_citizenship": "USA"
                    }
                ]
            },
            "credit_card_processing": {
                "card_swiped": 25,
                "manually_keyed_cp": 25,
                "manually_keyed_cnp": 25,
                "ecommerce": 25,
                "accept_cc_before": false,
                "previous_processor_name": "Global Processor",
                "avg_transaction_amount": 25,
                "total_monthly_sales": 10000,
                "highest_transaction_amount": 25,
                "frequency_ticket_per_year": "25",
                "qualified_processing_method": "EDCRetail"
            },
            "ach_processing": {
                "max_check_amount": "1000",
                "avg_check_amount": "30",
                "max_monthly_transaction_amount": 25,
                "min_monthly_transaction_amount": 25,
                "max_daily_transactions_count": 25,
                "max_monthly_transactions_count": 25,
                "total_annual_amount": 25,
                "web": 25,
                "tel": 25,
                "ppd": 25,
                "ccd": 25
            }
        },
        "status_message": null,
        "mid": ""
    }
}

Last updated