Assign Affiliate to Order
Assign the affiliate to the order.
Post
https://store.payproglobal.com/api/Affiliates/AssignToOrderRequest Parameters
application/jsonAssignToOrderRequestModel
objectaffiliateAgreementId
integerrequired
The ID of the agreement with your affiliate.
It can be found in your PayPro Global account > Affiliates > Agreements.
It can be found in your PayPro Global account > Affiliates > Agreements.
orderId
integerrequired
The order ID to which the affiliate should be assigned.
vendorAccountId
integerrequired
The vendor account ID identifies your PayPro Global account.
It can be found in Account settings > Business info.
It can be found in Account settings > Business info.
apiSecretKey
stringrequired
The vendor account API secret key is a unique key
that was generated specifically for authenticating API requests.
It can be found in Store settings > General settings > Integration tab.
that was generated specifically for authenticating API requests.
It can be found in Store settings > General settings > Integration tab.
Response Parameters
application/jsonAssignToOrderResponseModel
objectrequest
objectaffiliateAgreementId
integerThe ID of the agreement with your affiliate.
It can be found in your PayPro Global account > Affiliates > Agreements.
It can be found in your PayPro Global account > Affiliates > Agreements.
orderId
integerThe order ID to which the affiliate should be assigned.
vendorAccountId
integerThe vendor account ID identifies your PayPro Global account.
It can be found in Account settings > Business info.
It can be found in Account settings > Business info.
apiSecretKey
stringThe vendor account API secret key is a unique key
that was generated specifically for authenticating API requests.
It can be found in Store settings > General settings > Integration tab.
that was generated specifically for authenticating API requests.
It can be found in Store settings > General settings > Integration tab.
errors
array[object]propertyWithError
stringpropertyErrorMessages
array[string]isSuccess
booleanRequest Sample
{
"affiliateAgreementId": 4321,
"orderId": 12345678,
"vendorAccountId": 123456,
"apiSecretKey": "your_api_secret_key"
}
Response Sample
{
"request": {
"affiliateAgreementId": 4321,
"orderId": 12345678,
"vendorAccountId": 123456,
"apiSecretKey": "your_api_secret_key"
},
"errors": [],
"isSuccess": true
}