integration/profile/get
POST
/integration/profile/getThis returns the list of channel profiles available in the Equotix One account.
Request
The domain you are assigned to authenticate your Equotix One account.
The email address assigned to the user account in your Equotix One.
The unix timestamp used to sign this API request.
The calculated signature for this API request.
The channel profile ID to search for specifically.
Filter the type of profiles to return based on its channel type. Accepts "equotixpos", "lazada", "opencart", "shopee", "shopify", "tiktok".
Filter the list of profiles to return based on its channel ID.
Filter the list of profiles modified after the spcified date.
Page number of the results.
Accepts "name", "type", "date_modified"
The direction for the ordering of the results. Accepts "ASC", "DESC"
The number of results per page. Accepts 1 to 100.
{
"domain": "string",
"api_key": "string",
"auth_timestamp": 0,
"auth_signature": "string",
"channel_profile_id": 0,
"filter_type": "string",
"filter_channel_id": 0,
"filter_date_modified": "string",
"page": 0,
"sort": "string",
"order": "string",
"limit": 0
}
Responses
Returns only if there is an error.
The total number of results available if there is no error.
The list of profiles available if there is no error.
The channel profile ID.
The type of the profile dependent on its channel.
The name of the profile.
The configurations saved for the profile. Data varies according to the channel type.
The listing title set for the profile.
The listing description text set for the profile.
The date time the profile was last modified.
{
"error": [
"string"
],
"total": 0,
"profiles": [
{
"channel_profile_id": 0,
"type": "string",
"name": "string",
"configuration": {},
"title": "string",
"description": "string",
"date_modified": "string"
}
]
}