PATCH
/
merchants
/
{id}
curl --request PATCH \
  --url https://api.sulu.sh/v0/merchants/{id} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "name": "<string>",
  "email": "jsmith@example.com",
  "description": "<string>",
  "metadata": {},
  "vatNumber": "<string>",
  "address": {
    "line1": "<string>",
    "line2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "country": "<string>",
    "zipCode": "<string>"
  },
  "billingAddress": {
    "line1": "<string>",
    "line2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "country": "<string>",
    "zipCode": "<string>"
  },
  "phone": "<string>"
}'
{
  "id": "<string>",
  "object": "merchant",
  "name": "<string>",
  "email": "jsmith@example.com",
  "description": "<string>",
  "metadata": {},
  "vatNumber": "<string>",
  "address": {
    "line1": "<string>",
    "line2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "country": "<string>",
    "zipCode": "<string>"
  },
  "billingAddress": {
    "line1": "<string>",
    "line2": "<string>",
    "city": "<string>",
    "state": "<string>",
    "country": "<string>",
    "zipCode": "<string>"
  },
  "phone": "<string>",
  "createdAt": "2023-11-07T05:31:56Z",
  "updatedAt": "2023-11-07T05:31:56Z"
}

Authorizations

Authorization
string
header
required

Bearer authentication header of the form Bearer <token>, where <token> is your auth token.

Path Parameters

id
string
required

The unique identifier of the merchant organization to update.

Body

application/json
name
string

The name of the merchant organization.

email
string

The email address of the merchant organization.

description
string

A brief description of the merchant organization. This might be displayed to consumers.

metadata
object
vatNumber
string

The VAT number of the merchant organization. Will be used as the default VAT number for tax calculations.

address
object

The physical address of the merchant organization.

billingAddress
object

The billing address for the merchant organization.

phone
string

The contact phone number of the merchant organization.

Response

200
application/json
Merchant organization updated successfully
id
string

Unique identifier for the merchant organization.

object
enum<string>
default:merchant

The type of object, which is 'merchant' for this schema.

Available options:
merchant
name
string

The name of the merchant organization.

email
string

The email address of the merchant organization.

description
string

A brief description of the merchant organization.

metadata
object

Key-value pairs for storing additional data related to the merchant.

vatNumber
string

The VAT number of the merchant organization, used by default for tax calculations.

address
object

The address of the merchant organization.

billingAddress
object

The billing address of the merchant organization, used for billing purposes.

phone
string

The contact phone number of the merchant organization.

createdAt
string

The date and time when the merchant organization was created.

updatedAt
string

The date and time when the merchant organization was last updated.