Appearance
Register your Marketplace in own system ​
Each registered marketplace in our system has the following data about him: ​
json
{
"name" : "string", // Your marketplace name
"link" : "url", // Your marketplace site url
"logoLink" : "url", // External url for your marketplace logo
"email" : "example@domain.com", // Company e-mail address
// `agent` - for marketplaces with multiple merchants
// `default` - for single markets
"type" : "default|agent",
// if type="default" next field is required for setting invoices
"addressFirst": "string", // address line 1
"addressSecond": "string", // address line 2
"paymentRegistrationNumber": "string", // company reg no
"paymentTaxNumber": "string", // company tax number
"paymentAdditionalLines": ["string"], // add payment info
// Example paymentAdditionalLines
// "paymentAdditionalLines" : [
// "IBAN: number",
// "BANK: bankname",
// "SWIFT: identifier",
// "Country: country name"
// ],
//API methods implemented in your marketplace to receive status updates on Sale & Receipt objects
"callback_url_sale" : "url",
"callback_url_receipt" : "url" ,
// Issued by our system
"qwqerId" : "string", // Unique idenfifier for your marketplace. Also used in QWQER Delivery System
}To register your marketplace in our system you must complete the following steps: ​
- Make a request to us with the following information:
json
{
"title" : "string",
"link" : "url",
"logoLink" : "url",
"email" : "string",
"type" : "default|agent",
"addressFirst": "string",
"addressSecond": "string",
"paymentRegistrationNumber": "string",
"paymentTaxNumber": "string",
"paymentAdditionalLines": ["string"]
}Then provide us the final urls:
json
{
"callback_url_sale" : "url",
"callback_url_receipt" : "url"
}- After successful registration you will receive
qwqerId