Introduction
Welcome to the WP Rocket Reseller API documentation!
WP Rocket is a WordPress premium caching plugin that provides both lightning speed for your website and easy set up for you.
If you are a webhosting company, or if you want to offer WP Rocket to customers as part of a site optimization service (for example), our reseller program allows you to purchase Personal licenses at 20% off to sell to your customers.
When you resell a license through our API, we automatically generate an account for that customer in our system and they are the owner of the license.
Authentication
All API requests must be sent over HTTPS. An App ID and API Key must be included in the request - Basic Authentication is used to submit these details, where the App ID and the API key should be used as the parameters.
Orders
Order Model
Attribute | Type | Description |
---|---|---|
order |
array | List of customer infos. See Order properties |
customer |
array | List of customer infos. See Customer properties |
licence |
array | List of license infos. See License properties |
plugin |
string | The link to download the plugin zip |
Order Properties
Attribute | Type | Description |
---|---|---|
id |
integer | Order ID |
paid_date |
timestamp | Timestamp when the order was paid |
currency |
integer | Currency in ISO format, e.g USD |
total |
integer | Order total |
Customer Properties
Attribute | Type | Description |
---|---|---|
id |
integer | Customer ID |
email |
string | Customer email |
first_name |
string | Customer first name |
last_name |
string | Customer last name |
Licence Properties
Attribute | Type | Description |
---|---|---|
version |
string | Licence version |
first_name |
timestamp | Licence date expiration |
Create an Order
This endpoint helps you to create a new order.
https://api.wp-rocket.me/api/v2/reseller/orders
Parameter | Type | Description |
---|---|---|
email |
string | The email of the customer required |
first_name |
string | The first name of the customer required |
last_name |
string | The last name of the customer required |
billing_country |
string | The country of the customer. Format: ISO 3166-1 alpha-2 |
customer_id |
int | The customer ID |
licence |
string | The licence to give to the customer. Defaults to single .By default are available the licences: single , plus , infinite , renew |
force |
bool | Force the new licence to be combined with current one. Defaults to false .For example, if the customer has a business license and you want to offer him a new Single license (3+1 = 4 websites) |
curl -X POST https://api.wp-rocket.me/api/v2/reseller/orders
-u reseller_app_id:reseller_api_key \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' -d '
{
"email": "john.doe@gmail.com",
"first_name": "John",
"last_name": "Doe",
"customer_id": 123456,
"licence": "single",
"force": false
}'
Response:
{
"type": "order.create",
"order": {
"id": 52982,
"paid_date": 1432577572,
"currency": "USD",
"total": "31.20"
},
"customer": {
"id": 123456,
"email": "john.doe@gmail.com",
"first_name": "John",
"last_name": "Doe"
},
"licence": {
"version": "2.5.12",
"date_expiration": 1464192770
},
"plugin": "http:\/\/support.wp-rocket.me\/johndoe\/wp-rocket-X.zip",
"error": false,
"status": 200
}
View an Order
This endpoint lets you retrieve and view a specific order.
HTTP Request
https://api.wp-rocket.me/api/v2/reseller/orders/<id>
URL Parameters
Parameter | Type | Description |
---|---|---|
ID |
integer | The ID of the order to retrieve required |
curl https://api.wp-rocket.me/api/v2/reseller/orders/52982
-u reseller_app_id:reseller_api_key \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
Response:
{
"type": "order",
"order": {
"id": 52982,
"paid_date": 1432577572,
"currency": "USD",
"total": "31.20"
},
"customer": {
"id": 123456,
"email": "john.doe@gmail.com",
"first_name": "John",
"last_name": "Doe"
},
"licence": {
"version": "2.5.12",
"date_expiration": 1464192770
},
"plugin": "http:\/\/support.wp-rocket.me\/johndoe\/wp-rocket-X.zip",
"error": false,
"status": 200
}
List Orders
This endpoint retrieves all orders.
The order list is ordered descending, most recently created first.
HTTP Request
https://api.wp-rocket.me/api/v2/reseller/orders
curl https://api.wp-rocket.me/api/v2/reseller/orders
-u reseller_app_id:reseller_api_key \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
Response:
{
"type": "order.list",
"orders": [
{
"order": {
"id": 52982,
"paid_date": 1432577572,
"currency": "USD",
"total": "31.20"
},
"customer": {
"id": 123456,
"email": "john.doe@gmail.com",
"first_name": "John",
"last_name": "Doe"
},
"licence": {
"version": "2.5.12",
"date_expiration": 1464192770
},
"plugin": "http:\/\/support.wp-rocket.me\/johndoe\/wp-rocket-X.zip"
},
{},
{}
],
"error": false,
"status": 200
}
Count Orders
This endpoint helps you to get all orders total.
https://api.wp-rocket.me/api/v2/reseller/orders/count
curl https://api.wp-rocket.me/api/v2/reseller/orders/count
-u reseller_app_id:reseller_api_key \
-H 'Accept: application/json' \
-H 'Content-Type: application/json' \
Response:
{
"type": "order.count",
"orders": 10,
"error": false,
"status": 200
}
Websites
Website Properties
Attribute | Type | Description |
---|---|---|
uuid |
string | Unique identifier for the website |
domain |
string | Domain name of the website |
user_id |
integer | ID of the user associated with the website |
status |
string | Status of the website (e.g., active, inactive) |
type |
string | Type of the website (e.g., domain, subdomain) |
post_id |
integer | ID of the associated post |
created_at |
timestamp | Timestamp when the website was created |
updated_at |
timestamp | Timestamp when the website was last updated |
List Websites
This endpoint lets you retrieve and view websites associated with the reseller.
HTTP Request
https://api.wp-rocket.me/api/v2/reseller/websites
Query Parameters
Parameter | Type | Description |
---|---|---|
start_date |
string | Filter websites created after this date (format: Y-m-d) |
curl https://api.wp-rocket.me/api/v2/reseller/websites
\
-u reseller_app_id:reseller_api_key \
-H 'Accept: application/json' \
-H 'Content-Type: application/json'
Response:
{
"type": "websites.list",
"websites": [
{
"uuid": "2bd210c2-6ba0-45a5-8362-7276830bc522,
"domain": "example.com",
"user_id": "291040,
"status": "active",
"type": "domain",
"post_id": "5554869",
"created_at": "2024-02-20 10:00:00",
"updated_at": "2024-02-20 10:00:00"
}
],
"error": false,
"status": 200
}
Add token
This endpoint creates a token associated with the reseller. (If it already exists, it will instead be updated to active)
HTTP Request
https://api.wp-rocket.me/api/v2/reseller/tokens
curl https://api.wp-rocket.me/api/v2/reseller/tokens
\
-X POST \
-F reseller_app_id:reseller_api_key \
-u external_token=token \
-H 'Accept: application/json' \
-H 'Content-Type: multipart/form-data'
Response:
{
"type": "token.created",
"token": [
{
"uuid": "2bd210c2-6ba0-45a5-8362-7276830bc522,
"reseller_id": "291040,
"status": "active",
"created_at": "2024-02-20 10:00:00",
"updated_at": "2024-02-20 10:00:00"
}
],
"error": false,
"status": 200
}
Post parameters
Parameter | Type | Description |
---|---|---|
external_token |
string | Token from the user. |
Integrations
WooCommerce
If you are selling your optimization service with WooCommerce, you can implement our Reseller API by following this example integration.
Please select PHP mode to view the example code!