Skip to content

Latest commit

 

History

History
866 lines (670 loc) · 24.9 KB

MERCHANT_API.md

File metadata and controls

866 lines (670 loc) · 24.9 KB

Merchant APIs

The merchant APIs allow thirdparty system search merchants, get a merchant, create/update a merchant, activate/disable a merchant and delete a exist merchant. All the merchant APIs are in the class Paxstore.OpenApi.MerchantApi.

User can customize the additional attributes for merchant. To add/delete/update merchant's additional entity attributes please using marketplace admin login and go to page via General Setting -> Entity Attribute Setting.

Constructors of MerchantApi

public MerchantApi(string baseUrl, string apiKey, string apiSecret, TimeZoneInfo timeZoneInfo = null, int timeout = 5000, IWebProxy proxy = null)
public MerchantApi(string baseUrl, string apiKey, string apiSecret, TimeZoneInfo timeZoneInfo)
public MerchantApi(string baseUrl, string apiKey, string apiSecret, IWebProxy proxy)
public MerchantApi(string baseUrl, string apiKey, string apiSecret, int timeout)

Constructor parameters description

Name Type Description
baseUrl string the base url of REST API
apiKey string the apiKey of marketplace, get this key from PAXSTORE admin console, refe to chapter Apply access rights
apiSecret string apiSecret, get api secret from PAXSTORE admin console, refer to chapter Apply access rights

Search merchants

The search merchants API allows thirdparty system to search merchants by page.

API

public Result<PagedMerchant>  SearchMerchant(int pageNo, int pageSize, MerchantSearchOrderBy orderBy, String name, MerchantStatus status)

Input parameter(s) description

Name Type Nullable Description
pageNo int false page number, value must >=1
pageSize int false the record number per page, range is 1 to 100
orderBy MerchantSearchOrderBy false the field name of sort order by. The value of this parameter can be one of MerchantSearchOrderBy.Name, MerchantSearchOrderBy.Phone and MerchantSearchOrderBy.Contact.
name string true search filter by merchant name
status MerchantStatus false the reseller status
the value can be MerchantStatus.All, MerchantStatus.Active, MerchantStatus.Inactive, MerchantStatus.Suspend. If the value is MerchantStatus.All it will return merchant of all status

Sample codes

MerchantApi api = new MerchantApi(API_BASE_URL, API_KEY, API_SECRET);
Result<PagedMerchant> result = API.SearchMerchant(1, 10, MerchantSearchOrderBy.Name, null, MerchantStatus.All);

Client side validation failed sample result(JSON formatted)

{
	"BusinessCode": -1,
	"Message": null,
	"ValidationErrors": ["'Page No' must be greater than '0'."],
	"Data": null,
	"PageInfo": null
}

Successful sample result

{
	"BusinessCode": 0,
	"Message": null,
	"ValidationErrors": null,
	"Data": null,
	"PageInfo": {
		"PageNo": 1,
		"Limit": 10,
		"TotalCount": 1,
		"HasNext": false,
		"DataSet": [{
			"ID": 1000000134,
			"Name": "KFC",
			"Reseller": {
				"ID": 1000000225,
				"Name": "reseller_002"
			},
			"Country": "CN",
			"Province":"JiangSu",
            "City":"Suzhou",
            "Postcode":"215000",
            "Address":"Room 501, Building B2, Genwayl-Park, No.88, Dongchang Road, Suzhou Industrial Park, Jiangsu",
			"Contact": "tan",
			"Email": "[email protected]",
			"Phone": "23231515",
			"Status": "A",
			"Description": "Merchant KFC"
		}]
	}
}

The type in dataSet is PagedMerchant. And the structure like below.

Property Name Type Description
ID long The id of merchant.
Name string The name of merchant.
Reseller SimpleReseller The reseller of the merchant belongs to.
Country string the country code, please refer to Country Codes
Province string province
City string the city
Postcode string the postcode
Address string the address of the merchant
Contact string Contact of merchant.
Email string Email of merchant.
Phone string Phone number of merchant.
Status string Status of merchant. Value can be one of A(Active), P(Pendding) and S(Suspend)
Description String The description of the merchant

The structure of class SimpleReseller

Property Name Type Description
ID long The id of reseller.
Name string The name of reseller.

Possible client validation errors

'Page Size' must be less than or equal to '100'.
'Page No' must be greater than '0'.
'Page Size' must be greater than '0'.

Get a merchant

The get merchant API allows the thirdparty system get a merchant by merchant ID. If the merchant does not exist the data field in result is null.

API

public Result<Merchant>  GetMerchant(long merchantId)

Input parameter(s) description

Parameter Name Type Nullable Description
merchantId long false The merchant id.

Sample codes

MerchantApi api = new MerchantApi(API_BASE_URL, API_KEY, API_SECRET);
Result<Merchant> result = api.GetMerchant(72590);

Client side validation failed sample result(JSON formatted)

{
	"BusinessCode": -1,
	"Message": null,
	"ValidationErrors": ["Parameter merchantId cannot be null and cannot be less than 1!"],
	"Data": null,
	"PageInfo": null
}

Server side validation failed sample result(JSON formatted)

{
	"BusinessCode": 1720,
	"Message": "Merchant doesn't exist",
	"ValidationErrors": null,
	"Data": null,
	"PageInfo": null
}

Successful sample result(JSON formatted)

{
	"BusinessCode": 0,
	"Message": null,
	"ValidationErrors": null,
	"Data": {
		"EntityAttributeValues": null,
		"MerchantCategory": [],
		"ID": 1000000134,
		"Name": "KFC",
		"Reseller": {
			"ID": 1000000225,
			"Name": "reseller_002"
		},
		"Country": "CN",
		"Province":"JiangSu",
        "City":"Suzhou",
		"Postcode": null,
		"Address": null,
		"Contact": "tan",
		"Email": "[email protected]",
		"Phone": "23231515",
		"Status": "A",
		"Description": "Merchant KFC"
	},
	"PageInfo": null
}

The type of data in result is Merchant, and the structure shows below.

Property Name Type Description
ID long The id of merchant.
Name string The name of merchant.
Reseller SimpleReseller The reseller of the merchant belongs to.
Country string the country code, please refer to Country Codes
Province string province
City string the city
Postcode string the postcode
Address string the address of the merchant
Contact string Contact of merchant.
Email string Email of merchant.
Phone string Phone number of merchant.
Status string Status of merchant. Value can be one of A(Active), P(Pendding) and S(Suspend)
EntityAttributeValues Dictionary<string, string> Dynamic attributes of merchant.
MerchantCategory List<MerchantCategory> Categories of merchant belongs to.
Description string The description of the merchant

The structure of SimpleReseller already described in Search Merchants chapter.

Possible client validation errors

Parameter merchantId cannot be null and cannot be less than 1!

Possible business codes

Business Code Message Description
1720 Merchant doesn't exist  

Create a merchant

Create merchant API allows thirdparty system create a merchant. If create successful SDK will return the created merchant in result.

API

public Result<Merchant>  CreateMerchant(MerchantCreateRequest merchantCreateRequest)

Input parameter(s) description

Parameter Name Type Nullable Description
merchantCreateRequest MerchantCreateRequest false The object of create request. The structure refer to below.

Structure of class MerchantCreateRequest

Property Name Type Nullable Description
Name string false Merchant name, max length is 64.
Email string true Email of merchant, max length is 255.
ResellerName string false Reseller name of merchant, max length is 64. Make sure the reseller exist.
Contact string true Contact of merchant, max length is 64.
Country string true the country code, please refer to Country Codes
Province string true Max length is 64.
City String true Max length is 32.
Phone string true Phone number of merchant, max length is 32.
Postcode string true Postcode of merchant, max length is 16.
Address string true Address of merchant, max length is 255.
Description string true Description of merchant, max length is 3000.
CreateUserFlag bool true Indicate whether to create user when activate the merchant, won't create user when activate if this value is empty
MerchantCategoryNames List<string> true Merchant categories. Make sure the categories are available.
EntityAttributeValues Dictionary<string, string> true Dynamic attributes of merchant. Whether the attribute is required or not depend on the configuration of attribute.
ActivateWhenCreate bool true Whether to activate the merchant when create, default value is false. The property is private, please call the set method to set the value

Sample codes

MerchantApi api = new MerchantApi(API_BASE_URL, API_KEY, API_SECRET);
MerchantCreateRequest merchantCreateRequest = new MerchantCreateRequest();
merchantCreateRequest.Name = "hrmj";
merchantCreateRequest.Email = "[email protected]";
merchantCreateRequest.ResellerName = "Pine Labs";
merchantCreateRequest.Contact = "haoren";
merchantCreateRequest.Country = "CN";
merchantCreateRequest.Description = "merchant hrmj";
merchantCreateRequest.Phone = "0512-59564515";
Result<Merchant> result = API.CreateMerchant(merchantCreateRequest);

Client side validation failed sample result(JSON formatted)

{
	"BusinessCode": -1,
	"Message": null,
	"ValidationErrors": ["'Name' should not be empty.", "'Email' should not be empty.", "'Reseller Name' should not be empty.", "'Contact' should not be empty.", "'Country' should not be empty.", "'Phone' should not be empty."],
	"Data": null,
	"PageInfo": null
}

Server side validation failed sample result(JSON formatted)

{
	"BusinessCode": 1721,
	"Message": "Merchant name already exists",
	"ValidationErrors": null,
	"Data": null,
	"PageInfo": null
}

Successful sample result(JSON formatted)

{
	"BusinessCode": 0,
	"Message": null,
	"ValidationErrors": null,
	"Data": {
		"EntityAttributeValues": null,
		"MerchantCategory": [],
		"ID": 1000000155,
		"Name": "hrmj",
		"Reseller": {
			"ID": 1000000211,
			"Name": "Pine Labs"
		},
		"Country": "CN",
		"Postcode": null,
		"Address": null,
		"Contact": "haoren",
		"Email": "[email protected]",
		"Phone": "0512-59564515",
		"Status": "P",
		"Description": "merchant hrmj"
	},
	"PageInfo": null
}

The type of data in result is same as the get reseller API.

Possible client validation errors

Parameter merchantCreateRequest cannot be null!
'Name' should not be empty.
'Reseller Name' should not be empty.
The length of 'Name' must be 64 characters or fewer. You entered 100 characters.
The length of 'Reseller Name' must be 64 characters or fewer. You entered 100 characters.
The length of 'Email' must be 255 characters or fewer. You entered 256 characters.
The length of 'Country' must be 64 characters or fewer. You entered 70 characters.
The length of 'Contact' must be 64 characters or fewer. You entered 70 characters.
The length of 'Phone' must be 32 characters or fewer. You entered 60 characters.
The length of 'Postcode' must be 16 characters or fewer. You entered 20 characters.
The length of 'Address' must be 255 characters or fewer. You entered 300 characters.
The length of 'Description' must be 3000 characters or fewer. You entered 3008 characters.

Possible business codes

Business Code Message Description
1721 Merchant name already exists  
1759 Reseller doesn't exist  
16000 Merchant category not found  
1723 Merchant name is mandatory  
1725 Merchant reseller is mandatory  
1606 Country is mandatory  
1726 Merchant contact is mandatory  
1727 Merchant email is mandatory  
1728 Merchant phone is mandatory  
1729 Merchant name is too long  
1731 Merchant reseller is too long  
1618 Postcode is too long  
1619 Address is too long  
1732 Merchant contact is too long  
1733 Merchant email is too long  
1734 Merchant phone is too long  
1736 Merchant description is too long  
1105 Email is invalid  
1112 Phone No. is invalid  
3400 Country code is invalid  
1773 The associated reseller is not activate  

Update a merchant

Update merchant API allows the thirdparty system update a exist merchant.

API

public Result<Merchant>  UpdateMerchant(long merchantId, MerchantUpdateRequest merchantUpdateRequest)

Input parameter(s) description

Parameter Name Type Nullable Description
merchantId long false The id of merchant.
merchantUpdateRequest MerchantUpdateRequest false The update request object. The structure shows below.

Structure of class MerchantUpdateRequest

Property Name Type Nullable Description
Name string false Merchant name, max length is 64.
Email string true Email of merchant, max length is 255. If email is empty the API won't change the email.
ResellerName string false Reseller name of merchant, max length is 64. Make sure the reseller exist. If resellerName is empty the API won't update the reseller of the merchant
Contact string true Contact of merchant, max length is 64.
Country string true the country code, please refer to Country Codes
Province string true Max length is 64.
Phone string true Phone number of merchant, max length is 32.
Postcode string true Postcode of merchant, max length is 16.
City string true Max length is 255.
Address string true Address of merchant, max length is 255.
Description string true Description of merchant, max length is 3000.
CreateUserFlag bool true Indicate whether to create user when activate the merchant, won't create user if this value is empty
MerchantCategoryNames List<string> true Merchant categories. Make sure the categories are available.
EntityAttributeValues Dictionary<string, string> true Dynamic attributes of merchant. Whether the attribute is required or not depend on the configuration of attribute.

Sample codes

MerchantApi api = new MerchantApi(API_BASE_URL, API_KEY, API_SECRET);
MerchantUpdateRequest merchantUpdateRequest = new MerchantUpdateRequest();
merchantUpdateRequest.Name = "hrmj2";
merchantUpdateRequest.Email = "[email protected]";
merchantUpdateRequest.ResellerName = "Pine Labs";
merchantUpdateRequest.Contact = "haoren2";
merchantUpdateRequest.Country = "CN";
merchantUpdateRequest.Description = "merchant hrmj2";
merchantUpdateRequest.Phone = "0512-88889999";
Result<Merchant> updateResult = api.UpdateMerchant(1000000155, merchantUpdateRequest);

Client side validation failed sample result(JSON formatted)

{
	"BusinessCode": -1,
	"Message": null,
	"ValidationErrors": ["'Contact' should not be empty.", "'Country' should not be empty.", "'Phone' should not be empty."],
	"Data": null,
	"PageInfo": null
}

Server side validation failed sample result(JSON formatted)

{
	"BusinessCode": 1720,
	"Message": "Merchant doesn't exist",
	"ValidationErrors": null,
	"Data": null,
	"PageInfo": null
}

Succsssful sample result(JSON formatted)

{
	"BusinessCode": 0,
	"Message": null,
	"ValidationErrors": null,
	"Data": {
		"EntityAttributeValues": null,
		"MerchantCategory": [],
		"ID": 1000000155,
		"Name": "hrmj2",
		"Reseller": {
			"ID": 1000000211,
			"Name": "Pine Labs"
		},
		"Country": "CN",
		"Postcode": null,
		"Address": null,
		"Contact": "haoren2",
		"Email": "[email protected]",
		"Phone": "0512-88889999",
		"Status": "P",
		"Description": "merchant hrmj2"
	},
	"PageInfo": null
}

The data type in result is same as get merchant API.

Possible client validation errors

Parameter merchantId cannot be null and cannot be less than 1!
Parameter merchantUpdateRequest cannot be null!
'Name' should not be empty.
The length of 'Name' must be 64 characters or fewer. You entered 100 characters.
The length of 'Reseller Name' must be 64 characters or fewer. You entered 100 characters.
The length of 'Email' must be 255 characters or fewer. You entered 256 characters.
The length of 'Country' must be 64 characters or fewer. You entered 70 characters.
The length of 'Contact' must be 64 characters or fewer. You entered 70 characters.
The length of 'Phone' must be 32 characters or fewer. You entered 60 characters.
The length of 'Postcode' must be 16 characters or fewer. You entered 20 characters.
The length of 'Address' must be 255 characters or fewer. You entered 300 characters.
The length of 'Description' must be 3000 characters or fewer. You entered 3008 characters.

Possible business codes

Business Code Message Description
1720 Merchant doesn't exist  
1721 Merchant name already exists  
1759 Reseller doesn't exist  
16000 Merchant category not found  
1723 Merchant name is mandatory  
1606 Country is mandatory  
1726 Merchant contact is mandatory  
1727 Merchant email is mandatory  
1728 Merchant phone is mandatory  
1725 Merchant reseller is mandatory  
1729 Merchant name is too long  
1618 Postcode is too long  
1619 Address is too long  
1732 Merchant contact is too long  
1733 Merchant email is too long  
1734 Merchant phone is too long  
1736 Merchant description is too long  
1105 Email is invalid  
1112 Phone No. is invalid  
3400 Country code is invalid  
1927 The merchant is not inactive,reseller cannot be updated!  
1773 The associated reseller is not activate  
1936 The merchant is not inactive,merchant email cannot be updated! Only the pending merchant can update the email

Activate a merchant

Activate merchant API allows the thirdparty system activate a inactive merchant. If activate successfully there's no response content from remote server.

API

public Result<string> ActivateMerchant(long merchantId)

Input parameter(s) description

Parameter Name Type Nullable Description
merchantId long false The merchant id.

Sample codes

MerchantApi api = new MerchantApi(API_BASE_URL, API_KEY, API_SECRET);
Result<string> result = api.ActivateMerchant(72590);

Client side validation failed sample result(JSON formatted)

{
	"BusinessCode": -1,
	"Message": null,
	"ValidationErrors": ["Parameter merchantId cannot be null and cannot be less than 1!"],
	"Data": null,
	"PageInfo": null
}

Server side validation failed sample result(JSON formatted)

{
	"BusinessCode": 1892,
	"Message": "The merchant has already been activated!",
	"ValidationErrors": null,
	"Data": null,
	"PageInfo": null
}

Successful sample result(JSON formatted)

{
	"BusinessCode": 0,
	"Message": null,
	"ValidationErrors": null,
	"Data": null,
	"PageInfo": null
}

Possible client validation errors

Parameter merchantId cannot be null and cannot be less than 1!

Possible business codes

Business Code Message Description
1720 Merchant doesn't exist  
1759 Reseller doesn't exist  
1773 The associated reseller is not activate  
1892 The merchant has already been activated!  

Disable a merchant

Disable merchant API allows the thirdparty system disable a Active/Pendding merchant. If disable successfully there's not response content from remote server.

API

public Result<string> DisableMerchant(long merchantId)

Input parameter(s) description

Parameter Name Type Nullable Description
merchantId long false The merchant id.

Sample codes

MerchantApi api = new MerchantApi(API_BASE_URL, API_KEY, API_SECRET);
Result<string> result = api.DisableMerchant(72594);

Client side validation failed sample result(JSON formatted)

{
	"BusinessCode": -1,
	"Message": null,
	"ValidationErrors": ["Parameter merchantId cannot be null and cannot be less than 1!"],
	"Data": null,
	"PageInfo": null
}

Server side validation failed sample result(JSON formatted)

{
	"BusinessCode": 1887,
	"Message": "The merchant is not active,unable to disable!",
	"ValidationErrors": null,
	"Data": null,
	"PageInfo": null
}

Successful sample result(JSON formatted)

{
	"BusinessCode": 0,
	"Message": null,
	"ValidationErrors": null,
	"Data": null,
	"PageInfo": null
}

Possible client validation errors

Parameter merchantId cannot be null and cannot be less than 1!

Possible business codes

Business Code Message Description
1720 Merchant doesn't exist  
1887 The merchant is not active,unable to disable!  
1797 The merchant has active terminals  

Delete a merchant

Delete merchant API allows the thirdparty system delete a exist merchant. If delete successfully there's no response content from remote server.

API

public Result<string> DeleteMerchant(long merchantId)

Input parameter(s) description

Parameter Name Type Nullable Description
merchantId long false The merchant id.

Sample codes

MerchantApi api = new MerchantApi(API_BASE_URL, API_KEY, API_SECRET);
Result<string> result = api.DeleteMerchant(72593);

Client side validation failed sample result(JSON formatted)

{
	"BusinessCode": -1,
	"Message": null,
	"ValidationErrors": ["Parameter merchantId cannot be null and cannot be less than 1!"],
	"Data": null,
	"PageInfo": null
}

Server side validation failed sample result(JSON formatted)

{
	"BusinessCode": 1720,
	"Message": "Merchant doesn't exist",
	"ValidationErrors": null,
	"Data": null,
	"PageInfo": null
}

Successful sample result(JSON formatted)

{
	"BusinessCode": 0,
	"Message": null,
	"ValidationErrors": null,
	"Data": null,
	"PageInfo": null
}

Possible client validation errors

Parameter merchantId cannot be null and cannot be less than 1!

Possible business codes

Business Code Message Description
1720 Merchant doesn't exist  
1876 The merchant is active,unable to delete!  
1786 The merchant has been used by terminal  

Replace merchant email

This API is used to update the email of active merchant

API

public Result<string> ReplaceMerchantEmail(long merchantId, string email, bool createUser)

Input parameter(s) description

Parameter Name Type Nullable Description
merchantId long false The merchant id
email string false The new email
createUser bool false Indicate whether to create user when replace the email

Sample codes

MerchantApi api = new MerchantApi(API_BASE_URL, API_KEY, API_SECRET);
Result<string> result = api.ReplaceMerchantEmail(72593, "[email protected]", true);

Client side validation failed sample result(JSON formatted)

{
	"BusinessCode": -1,
	"Message": null,
	"ValidationErrors": ["Parameter merchantId cannot be null and cannot be less than 1!"],
	"Data": null,
	"PageInfo": null
}

Server side validation failed sample result(JSON formatted)

{
	"BusinessCode": 1720,
	"Message": "Merchant doesn't exist",
	"ValidationErrors": null,
	"Data": null,
	"PageInfo": null
}

Successful sample result(JSON formatted)

{
	"BusinessCode": 0,
	"Message": null,
	"ValidationErrors": null,
	"Data": null,
	"PageInfo": null
}

Possible client validation errors

Parameter merchantId cannot be null and cannot be less than 1!
'Email' should not be empty. The length of 'Email' must be 255 characters or fewer. You entered 256 characters.
'Email' is not a valid email address.

Possible business codes

Business Code Message Description
1720 Merchant doesn't exist  
1934 The merchant is not active,unable to replace user! This API can only update the email of active merchants
1105 Email is invalid The inputted email address is invalid
1933 The user email not update. The inputted email address is same as the original email