Developer Portal
Breadcrumbs

Detail of Product

Get Product

Retrieve details of a product using its unique ID.

To obtain a specific ID, use the POST /api/product/list endpoint with the appropriate filters.


Request structure

Endpoint:

GET /api/product/{id}

URL (prod):

https://app.mailship.eu/api/product/{id}

Headers:

Authorization: Bearer YOUR_ACCESS_TOKEN
Accept: application/json

Request body:

None (this request does not require a body).

Request Example (cURL):

curl --location "https://app.mailship.eu/api/product/8235e453-c520-47e6-b36c-67a93ecbbf8f" \
--header "Accept: application/json" \
--header "Authorization: Bearer {{token}}"

Path parameter:

Parameter

Type

Required

Description

id

string

The unique product identifier. Example: 8235e453-c520-47e6-b36c-67a93ecbbf8f


Response

If successful, the API returns the product entity matching the specified ID in JSON format.

See more details in the API Doc.