Add reseller information
Last updated: 28-Sep-2021
Rate this article:
Overview
Use this method to add information about a reseller in the 2Checkout system.
Requirements
This method requires you to set a specific partner using setPartner.
Parameters
Parameters | Type/Description |
---|---|
sessionID | Required (string) |
Session identifier, output of the Login method. An exception will be thrown if the values are incorrect. | |
Reseller | Required (object) |
Response
Parameters | Type/Description |
---|---|
ResellerCode | String |
Unique code identifying a specific reseller. |
Request
<?php
require ('PATH_TO_AUTH'); // Authentication example: https://knowledgecenter.avangate.com/Integration/Channel_Manager_API/JSON-RPC/02Authentication
require ('PATH_TO_SET_PARTNER'); // setPartner example: https://knowledgecenter.avangate.com/Integration/Channel_Manager_API/JSON-RPC/06Reference/Partner/00Set_partner
$reseller = new stdClass();
$reseller->ResellerCode = '1234565';
$reseller->Company = 'Avangate';
$reseller->FirstName = 'John';
$reseller->LastName = 'Doe';
$reseller->Email = 'johndoe@example.com';
$reseller->Phone = '123456789';
$reseller->Fax = '12345';
$reseller->Country = 'US';
$reseller->State = 'CA';
$reseller->City = 'Palo Alto';
$reseller->Address = 'Street';
$reseller->PostaCode = '90210';
$jsonRpcRequest = array (
'jsonrpc' => '2.0',
'id' => $i++,
'method' => 'createReseller',
'params' => array($sessionID, $reseller)
);
var_dump (callRPC((Object)$jsonRpcRequest, $host));
Errors
Error | Description |
---|---|
NOT_FOUND_PARTNER |
A partner must be set first. |
EMPTY_RESELLER_FIRST_NAME |
Reseller first name is mandatory. |
EMPTY_RESELLER_LAST_NAME |
Reseller last name is mandatory. |
EMPTY_RESELLER_COMPANY |
Reseller company is mandatory. |
INVALID_RESELLER_EMAIL |
Reseller email is mandatory. |
INVALID_RESELLER_EMAIL |
Invalid reseller email provided. |
INVALID_COUNTRY |
Invalid reseller country code. |
INTERNAL_ERROR |
Reseller information could not be saved. |
Rate this article: