Merchants
Merchants are the representation of your company or business in SourceOrders. On this page, we'll dive into the merchant object and explain how to make a GET request for your merchant object.
The merchant model
The merchant model contains all the information about the merchant.
Properties
- Name
merchantId- Type
- string
- Description
Unique identifier for the merchant. The merchantId will always begin with
som.
- Name
name- Type
- string
- Description
Company, business, or organization name of the merchant.
GET/v1/merchants
Get merchant object
This endpoint allows you to retrieve your merchant object.
Request
GET
/v1/merchantsProduction
curl -G https://api.sourceorders.com/v1/merchants \
-H "Content-Type: application/json" \
-H "X-API-KEY: {API KEY}" \
Response
{
"merchantId": "som_0123456789",
"name": "SourceOrders"
}