Web Create guest profile
POST
{{web_ecommercev2_url}}/profiles/guest
Request Request Example
Shell
JavaScript
Java
Swift
curl --location -g --request POST '{{web_ecommercev2_url}}/profiles/guest' \
--header 'x-client: {{client}}' \
--header 'accept-language: {{acceptLanguage}}' \
--header 'Content-Type: application/json' \
--header 'x-access-token;' \
--data-raw '{
"companyName": "string",
"companyWebsite": "https://kareem.com",
"industry": [
"string"
],
"country": "string",
"city": "string",
"area": "string",
"address": "string",
"phone": "string",
"email": "string@hbd.com",
"responsiblePerson": "string",
"responsibleRole": "string",
"interestedInAgents": true,
"interestedInExports": true,
"interestedInSeekAgents": true,
"additionalInfo": "string"
}'
Response Response Example
Profile Buyer
{
"id": "667917cabd1516884a1af8fe",
"companyName": "string",
"companyWebsite": "https://kareem.com",
"industry": [
"string"
],
"country": "string",
"city": "string",
"area": "string",
"address": "string",
"phone": "string",
"email": "string@hbd.com",
"responsiblePerson": "string",
"responsibleRole": "string",
"interestedInAgents": true,
"interestedInExports": true,
"interestedInSeekAgents": true,
"additionalInfo": "string",
"profileType": "Buyer",
"userType": "Member",
"createdAt": "2025-04-03T15:12:09.906Z",
"updatedAt": "2025-04-03T15:15:49.585Z",
"createdBy": "667917cabd1516884a1af8fe",
"updatedBy": "667917cabd1516884a1af8fe"
}
Request
Header Params
x-access-token
stringÂ
required
Example:
{{admin-token}}
x-client
stringÂ
required
Example:
{{client}}
accept-language
stringÂ
required
Example:
{{acceptLanguage}}
Body Params application/json
Responses
Modified at 2025-05-13 10:50:04