Skip to main content
POST
/
networks
/
custom
/
scrubratetable
List Custom Scrub Rates
curl --request POST \
  --url https://api.eflow.team/v1/networks/custom/scrubratetable \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "filters": {
    "network_offer_id": {
      "values": [
        100
      ],
      "comparison": "is"
    }
  },
  "paging": {
    "page": 1,
    "page_size": 50
  },
  "sort": {
    "field": "time_created",
    "direction": "desc"
  }
}
'
{
  "custom_scrub_rate_settings": [
    {
      "network_custom_scrub_rate_setting_id": 123,
      "network_id": 123,
      "network_offer_id": 123,
      "network_affiliate_id": 123,
      "custom_setting_status": "active",
      "scrub_rate": 123,
      "time_created": 123,
      "time_saved": 123,
      "relationship": {
        "offer": {},
        "affiliate": {}
      }
    }
  ],
  "paging": {
    "page": 123,
    "page_size": 123,
    "total_count": 123
  }
}

Authorizations

X-Eflow-Api-Key
string
header
required

The Everflow API key generated from the Control Center > Security.

Body

application/json
filters
object

Filter criteria for searching scrub rates.

paging
object
sort
object

Response

200 - application/json

OK

custom_scrub_rate_settings
object[]
paging
object