Attach reseller information to an order
Last updated: 15-Aug-2025
Rate this article:
Overview
Use this method to add reseller details to a partner order.
Requirements
Parameters
| Parameters | Type/Description |
|---|---|
| sessionID | Required (String) |
| Session identifier, which is the output of the Login method. An exception is thrown if the values are incorrect. | |
| refNo | Required (String) |
| The unique, system-generated identifier of a partner order. | |
| resellerCode | Required (String) |
| Unique code identifying a specific reseller. |
Response
| Parameters | Type/Description |
|---|---|
| result | Boolean |
| True or false |
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
$refNo = 'YOUR_ORDER_REFERENCE_NUMBER';
$resellerCode = 'NEW_RESELLER_CODE';
$jsonRpcRequest = array (
'jsonrpc' => '2.0',
'id' => $i++,
'method' => 'setOrderReseller',
'params' => array($sessionID, $refNo, $resellerCode)
);
var_dump (callRPC((Object)$jsonRpcRequest,$host));
Errors
| Error | Description |
|---|---|
|
NOT_FOUND_PARTNER |
No partner set before invoking the method. |
|
EMPTY_ORDER_REFERENCE |
Order reference not provided. |
|
INVALID_PARTNER_RESELLER_CODE |
Invalid partner reseller provided. |
|
INVALID_SUBSCRIPTION_REFERENCE |
No reseller defined for this order reference. |
|
INVALID_PARTNER_RESELLER_CODE |
No partner reseller found for the specified code. |
Rate this article: