Retrieve Seller Record
Use this request to retrieve a specified seller's record.
To retrieve details for a seller, use a GET method and the following URL:
{service_uri}/marketplace/v1/sellers/[seller_code]
where {service_uri}
is the service's URI.
For example:
$ curl \
-H "x-marketplace-token: ms_{ACCESS_TOKEN}" \
-H "Content-Type: application/json" \
-X GET \
--data '{JSON}' \
https://sellers-api.sandbox.marketplace.taxamo.com/marketplace/v1/sellers
where:
{ACCESS_TOKEN}
is your access token used for authentication.{JSON}
is the body of the request where you specify the seller's details.
Details
API Component Type | API Component |
---|---|
Endpoint | /marketplace/v1/sellers |
Method | GET |
API Reference Document | Retrieve Seller Record |
Path Parameters
Field | Description |
---|---|
seller_code | Specify the seller code. |
Response
When the record is created successfully, a 200 code is returned with the details in the attached JSON.
Updated 4 months ago