Profitshare Api Doc

1.0.0

Advertisers

Advertisers | Advertisers listing

Details of active advertisers

Current limit: 60 calls per 60 seconds

get
[API_URL]/affiliate-advertisers/
curl -x GET /affiliate-advertisers/

Header

Field Type Description
Host string

Url Api

Date date

Date

X-PS-Client string

Client

X-PS-Accept json

Json Content

X-PS-Auth string

Auth Token


'Host:api.profitshare.ro'
'Date:Thu, 17 Jul 2012 14:52:54 GMT'
'X-PS-Client:test-account'
'X-PS-Accept:json'
'X-PS-Auth:90a6d325e982f764f86a7e248edf6a660d4ee833'

Filter_name params

Field Type Description
advertiser optional string

Filter advertisers listing by advertiser id

HTTP/1.1 200 OK
{
      "Date": Thu, 17 Jul 2012 14:52:55 GMT,
      "Server": profitshare.ro,
      "Content-Length": 795,
      "Connection": close,
      "Content-Type": text/json,
      "Response body":
       {
         "result":[
             {
                 "id": "100",
                 "name": "Advertiser 1",
                 "logo": "//profitshare.ro/files_shared/advertiser-logos/logo_1.png",
                 "category": "Fashion",
                 "url": "http://www.xxxx.ro",
                 "affiliate_statuses": [
                      "active": "yes",
                      "approved": "yes"
                      ]
             },
             {
                 "id": "104",
                 "name": "Advertiser 2",
                 "logo": "//profitshare.ro/files_shared/advertiser-logos/logo_2.png",
                 "category": "Fashion",
                 "url": "http://www.yyyyy.ro",
                 "affiliate_statuses": [
                      "active": "yes",
                      "approved": "yes"
                      ]
             },]
       }
 }

Error 400

Name Type Description
errors Object

Please finalize your contract in order to generate links

Campaigns

Campaigns | Campaigns listing

The results are paginated, each page having 20 results. In order to get page N, provide parameter page=N \n Important: Please be aware that our system also support flash files with .swf extension. In case youwish to integrate in html, please use the proper tags.

Current limit: 60 calls per 60 seconds

GET
[API_URL]/affiliate-campaigns/
curl -x GET /affiliate-campaigns/

Header

Field Type Description
Host string

Url Api

Date date

Date

X-PS-Client string

Client

X-PS-Accept json

Json Content

X-PS-Auth string

Auth Token


'Host:api.profitshare.ro'
'Date:Thu, 17 Jul 2012 14:52:54 GMT'
'X-PS-Client:test-account'
'X-PS-Accept:json'
'X-PS-Auth:90a6d325e982f764f86a7e248edf6a660d4ee833'
HTTP/1.1 200 OK
{
      "Date": Thu, 17 Jul 2012 14:52:55 GMT,
      "Server": profitshare.ro,
      "Content-Length": 795,
      "Connection": close,
      "Content-Type": text/json,
      "Response body":
       {
         "result":{
             "paginator":{
                 "itemsPerPage":20,
                 "currentPage":2,
                 "totalPages":2
              },
             "campaigns":[
                  {
                     "id":118,
                     "name":"Carti la eMAG",
                     "commissionType":"CPS",
                     "startDate":"2013-05-13 00:00:00",
                     "endDate":"2013-12-31 00:00:00",
                     "url":"http://www.emag.ro/carti/l/",
                     "banners":{
                         "468x60":{
                             "width":468,
                             "height":60,
                             "src":"//profitshare.ro/images/advertiser_widgets/a.jpg"
                         },
                         "125x125":{
                         "width":125,
                         "height":125,
                         "src":"//profitshare.ro/images/advertiser_widgets/s.swf"
                         }
                     },}
              ]
          }
       }
 }

Commissions

Commissions | Commission details

Filter one commission by order number.

Current limit: 60 calls per 60 seconds

get
[API_URL]/affiliate-commissions-details/
curl -x GET "[API_URL]/affiliate-commissions-details/?order_number=1234553"

'Host:api.profitshare.ro'
'X-PS-Client:test-account'
'X-PS-Accept:json'
'X-PS-Auth:90a6d325e982f764f86a7e248edf6a660d4ee833'

Body filters params

Field Type Description
filters[filter_name] optional string

filter_value

Filter_name params

Field Type Description
order_number optional string

order number of the commission

Result fields

Field Type Description
order_date_time string

order date and time

status string

general status of order

last_update string

last update date and time

hash string

optional parameter used in affiliate links. (For example: http://profitshare.ro/l/123456/qwexyz)

referer_page string

click referrer page

click_date string

click date and time

recurring_time number

total seconds between click date and order date

id_advertiser number

unique advertiser id. Use method Advertisers listing to retrieve more details about advertisers

products array

products

  HTTP/1.1 200 OK
   {
        "Date": Thu, 17 Jul 2023 14:52:55 GMT,
        "Server": profitshare.ro,
        "Content-Length": 795,
        "Connection": close,
        "Content-Type": text/json,
        "Response body":
            {
            "result":[
            {
                "order_date_time": "2024-01-01 05:00:00",
                "status": "approved",
                "last_update": "2024-01-15 00:00:00",
                "hash": "12313sadfasc234",
                "referer_page": "https://google.ro/",
                "click_date": "2024-01-01 00:00:00",
                "id_advertiser": "123",
                "products": [
                    {
                        "name" => "Product name",
                        "code" => "123",
                        "part_no" => "ZXC123",
                        "amount" => "139.99",
                        "commission" => "13.99",
                        "status" => "approved",
                    },
                    {
                        "name" => "Product name 2",
                        "code" => "345",
                        "part_no" => "ZXC345",
                        "amount" => "159.99",
                        "commission" => "15.99",
                        "status" => "canceled",
                    },
                ],
            },
        ]
    }
}

Commissions | Commission listing

The results can be filtered by providing additional parameters and ordered as well. The filters will be sent via the filters parameter and the order will be sent via the order parameter. Each order has different items (products) that could be commisioned using diffent commision percents. Use the following fields to retrieve details about each item(separated by „|”).

Current limit: 100 calls per 60 seconds

get
[API_URL]/affiliate-commissions/
curl -x GET /affiliate-commissions/? filters[status]=pending&filters[date_from]=2013-01-15&filters[date_to]=2013-01-16

Header

Field Type Description
Host string

Url Api

Date date

Date

X-PS-Client string

Client

X-PS-Accept json

Json Content

X-PS-Auth string

Auth Token

'Host:api.profitshare.ro'
'Date:Thu, 17 Jul 2012 14:52:54 GMT'
'X-PS-Accept:json'
'X-PS-Auth:90a6d325e982f764f86a7e248edf6a660d4ee833'

Filter_name params

Field Type Description
status optional string

the status for the commission

date_from optional date

for date_added >= date_from

date_to optional date

for date_added <= date_to

click_hash optional string

hash used as an optional parameter on affiliate links

Order params

Field Type Description
date optional date

date

page optional number

pages number

Order commission

Field Type Description
commission optional number

commission value

Query Parameter(s)

Field Type Description
filters[filter_name]   optional string

filter name

Result fields

Field Type Description
order_id Number

unique order identifier (profitshare)

order_ref Number

unique order identifier (advertiser)

order_status string

general status of the order. May have one of the following values:pending,approved,canceled

advertiser_id Number

unique advertiser id. Use method Advertisers listing to retrieve more details about advertisers

hash string

optional parameter used in affiliate links. (For example: http://profitshare.ro/l/123456/qwexyz)

order_date date

order date and time

order_updated date

last update date and time

items_status string

status of each order item separated by „|”. May have one of the following values:pending, approved, canceled

items_commision number

value of each order item commision, in RON without VAT

items_commision_value string

value of each order item commision percent

network_reference string

network tracking reference

 HTTP/1.1 200 OK
 {
       Date: Tue, 17 Jul 2012 14:55:35 GMT Server: Profitshare
       Content-Length: 795
       Connection: close
       Content-Type: text/json
       {
          "result": {
          "current_page": 1,
          "total_pages": 2,
          "records_per_page": 25,
          "commissions": [
              {
                  "order_id": 3000099327,
                  "order_ref": "8657110",
                  "order_status": "pending",
                  "advertiser_id": 35,
                  "hash": "your_refference",
                  "order_date": "2013-11-01 14:20:37",
                  "order_updated": "0000-00-00 00:00:00",
                  "items_status": "pending|pending",
                  "items_commision": "4.5965|56.3707",
                  "items_commision_value": "3.00|3.00",
                  "network_reference": "Cj0KCQjw2cWgBhDYARIsALggUNqtfnj5q8aAumnEALw_aS"
              },
              {
                  "order_id": 3000099323,
                  "order_ref": "45699",
                  "order_status": "pending",
                  "advertiser_id": 35,
                  "hash": "your_refference",
                  "order_date": "2013-11-01 13:53:00",
                  "order_updated": "0000-00-00 00:00:00",
                  "items_status": "pending",
                  "items_commision": "5.4031",
                  "items_commision_value": "1.00",
                  "network_reference": "Cj0KCQjw2cWgBhDYARIsALggUNqtfnj5q8aAumnEALw_aS"
              },]
          }
       }
}

Products

Products | Available feeds

List all available feeds from affiliate account.

Current limit: 60 calls per 60 seconds

get
[API_URL]/affiliate-feeds/
curl -x GET "[API_URL]/affiliate-feeds"

'Host:api.profitshare.ro'
'X-PS-Client:test-account'
'X-PS-Accept:json'
'X-PS-Auth:90a6d325e982f764f86a7e248edf6a660d4ee833'

Body param

Field Type Description
page optional number

The results are paginated, each page having 20 results. In order to get page N, provide number for N

Result fields

Field Type Description
link string

direct link to feed

type string

type of feed, ex csv

name string

name of feed

created_at date

created at date

updated_at date

last feed update

status string

the status of feed - active or inactive

list array

of feed advertisers with columns id and name

 HTTP/1.1 200 OK
 {
       Date: Tue, 17 Jul 2012 14:55:35 GMT Server: Profitshare
       Content-Length: 795
       Connection: close
       Content-Type: text/json
       {
          "result": {
          "current_page": 1,
          "total_pages": 1,
          "records_per_page": 20,
          "feeds": [
              {
                 "link":"http://profitshare.ro/",
                 "type":"csv",
                 "name":"Test feed name",
                 "created_at": "2024-07-01 00:00:00",
                 "updated_at": "2024-07-02 03:10:20",
                 "status": "active",
                 "advertisers": {
                                  {
                                      "id": 35,
                                      "name": "eMAG.ro"
                                  }
                              }
              }]
          }
       }
}

Products | Products listing

This method is used to retrieve details about products. The results can be filtered by providing additional parameters. The filters will be sent via the filters.

Current limit: 60 calls per 60 seconds

get
[API_URL]/affiliate-products/
curl -x GET "[API_URL]/affiliate-products/? filters[advertiser]=45,41"

'Host:api.profitshare.ro'
'X-PS-Client:test-account'
'X-PS-Accept:json'
'X-PS-Auth:90a6d325e982f764f86a7e248edf6a660d4ee833'

Body filters params

Field Type Description
filters[filter_name] optional string

filter_value

Filter_name params

Field Type Description
advertisers optional string

the status for the commission (filter value example: 45,56)

part_no optional string

Filter products by model or part number (SKU)

Body param

Field Type Description
page optional number

The results are paginated, each page having 20 results. In order to get page N, provide number for N

Result fields

Field Type Description
link string

link of product

name string

name of product

price_vat number

price with vat of product

price number

price without vat of product

advertiser_name string

advertiser name

category_name string

category of product

advertiser_id number

unique advertiser id. Use method Advertisers listing to retrieve more details about advertisers

 HTTP/1.1 200 OK
 {
       Date: Tue, 17 Jul 2012 14:55:35 GMT Server: Profitshare
       Content-Length: 795
       Connection: close
       Content-Type: text/json
       {
          "result": {
          "current_page": 1,
          "total_pages": 1,
          "records_per_page": 20,
          "products": [
              {
                  "link":"http://www.test.ro/test/test",
                  "name":"Laptop Lenovo",
                  "image":"http://static.profitshare.ro/sfsd/sdfsdf.jpg",
                  "price_vat":1299,
                  "price":1047.58,
                  "advertiser_id":41,
                  "advertiser_name":"test.ro",
                  "category_name":"Laptopuri"
              },
              {
                  "link":"http://www.test.ro/test/test ",
                  "name":"Laptop Lenovo",
                  "image":"http://static.profitshare.ro/sfsd/sdfsdf.jpg",
                  "price_vat":1299,
                  "price":1047.58,
                  "advertiser_id":41,
                  "advertiser_name":"test.ro",
                  "category_name":"Laptopuri"
              },]
          }
       }
}

Vouchers

Vouchers | Vouchers listing

This method is used to retrieve details about vouchers. The results can be filtered by providing additional parameters.

Current limit: 60 calls per 60 seconds

get
[API_URL]/affiliate-vouchers/
curl -x GET "[API_URL]/affiliate-vouchers/?advertiser_id=1234&name=Name&type=code&exclusivity=1&valid=1&image=1&page=1"

'Host:api.profitshare.ro'
'X-PS-Client:test-account'
'X-PS-Accept:json'
'X-PS-Auth:90a6d325e982f764f86a7e248edf6a660d4ee833'

Query Parameter(s)

Field Type Description
advertiser_id   optional integer

advertiser ID

name   optional string

voucher name

exclusivity   optional boolean

vouchers assigned to you (value : 1) or common (value : 0). Ex: exclusivity=1

type   optional string

type of the voucher (code,promotion). Ex: type=code

Default value: code,promotion

valid   optional boolean

for all vouchers (ex: valid=0) or active ones (ex: valid=1)

image   optional boolean

vouchers with banner (ex: image=1) or all vouchers (ex: image=0)

page   optional number

The results are paginated, each page having 20 results. In order to get page N, provide number for N

Result fields

Field Type Description
adv_name string

advertiser name

name string

name of voucher

type number

voucher type

code string

voucher code

discount string

discount value

valability string

active period

adv_logo string

advertiser logo

tracking_link string

tracking link

image string

voucher image

 HTTP/1.1 200 OK
 {
       Date: Tue, 17 Jul 2012 14:55:35 GMT Server: Profitshare
       Content-Length: 795
       Connection: close
       Content-Type: text/json
       {
          "result": {
          "current_page": 1,
          "total_pages": 1,
          "records_per_page": 20,
          "results": [
              {
                  "adv_name":"eMAG.ro",
                  "name":"sdsdsf",
                  "type":"code",
                  "code":"32131",
                  "discount":"45 %",
                  "valability":"2024-06-20 - 2024-07-15",
                  "exclusivity":0,
                  "adv_logo":"logo_adv_1351266509.png",
                  "tracking_link":"http://profitshare.ro/l/352101",
                  "image":"voucher_image_23423432ew.png"
              },]
          }
       }
}

Webhooks

Webhooks | Order Add

If you have set webhooks url in your affiliate accout, then for each event below you wil receive a request from us. Each request will be accompanied by the User Agent ProfitshareWebhooks/v1.0 and if you have set a token, the Authorization header will be sent with value Bararer {token}

When a new order is registered, a GET request will be made with the following parameters

get
[Webhook_URL]

Get param

Field Type Description
order_reference string

Order number from your account

advertiser_id string

Order advertiser identifier

status string

Current Order status - it will be pending

order_date_time string

Order date and time

commissions float

Total commissions value

amount float

Total amount value

referrer_page string

Click referrer page - if it does not exist then null will be sent

type string

order_add

hash optional string

Order hash value - it will be sent only if exist

Webhooks | Order Update

If you have set webhooks url in your affiliate accout, then for each event below you wil receive a request from us. Each request will be accompanied by the User Agent ProfitshareWebhooks/v1.0 and if you have set a token, the Authorization header will be sent with value Bararer {token}

When a new order is changed, a GET request will be made with the following parameters

get
[Webhook_URL]

Get param

Field Type Description
order_reference optional string

Order number from your account

advertiser_id optional string

Order advertiser identifier

status optional string

Current Order status - it will be pending

order_date_time optional string

Order date and time

commissions optional float

Total commissions value

amount optional float

Total amount value

referrer_page optional string

Click referrer page - if it does not exist then null will be sent

type optional string

order_add

hash optional string

Order hash value - it will be sent only if exist