1. Affiliate.com API Endpoints
Affiliate.com API Documentation
  • Affiliate.com API Endpoints
    • Account
      • Get User Team Account Information
    • Network Groups
      • List All Network Groups
    • Networks
      • List All Networks
      • Get Single Specific Network
    • Merchants
      • List All Merchants
      • Get Single Specific Merchant Name
      • Get a Single Specific Merchant ID
    • Products
      • Search Products
    • Omni
      • Omni
    • Conversion
      • URL to Barcode
      • Barcode to SKU
      • ASIN to Barcode
      • SKU to Barcode
      • Barcode to ASIN
    • Watch
      • Set Product Watch
      • Get All Product Watches
      • Get Specific Product Watch
      • Get Specific Product Watch from Metadata
      • Edit Product Watch
      • Delete Product Watch
      • Get Single Product Watch Notification History
      • Get Product Watch Notification History via Metadata
    • Product List
      • Create Product List
      • Get Product Lists
      • Get Single List
      • Get List By Metadata
      • Add Products to a List
      • Remove Products from a List
      • Delete Product List
  1. Affiliate.com API Endpoints

Network Groups

Network Groups API Overview#

The Network Groups API allows users to retrieve information about network groups. Network groups are a collection of networks that are related (eg. Impact Sweden, Impact UK, Impact US, Impact France, etc.).

Endpoint#

GET /v1/network-groups

API Description#

The Network Groups API is designed to offer users a convenient way to access network group information. Network groups consist of related networks, and this API enables users to efficiently retrieve details about these groups, such as their IDs and names. By supporting pagination, the API ensures that users can handle large volumes of data in a structured and manageable manner. This API is essential for applications that need to display or process information about various network groups, providing an organized view of related networks across different regions or categories.

Response#

A successful response returns a JSON object with metadata about the pagination and an array of network groups.
{
    "meta": {
        "total": 34,
        "from": 4,
        "to": 6,
        "current_page": 2,
        "last_page": 12,
        "per_page": "3",
        "fields": ["id", "name"]
    },
    "data": [
        {"id": 10001, "name": "Adrecord"},
        {"id": 10002, "name": "Adtraction"},
        {"id": 10004, "name": "Avangate"},
        ...
}

Response Fields#

Main Response#

Field NameTypeDescription
metaobjectMetadata about the pagination.
dataarrayThe array of network groups.

meta Object#

Field NameTypeDescription
totalintegerThe total number of items.
limitintegerThe number of items per page.
offsetintegerThe offset of the current page.

data Array#

network group Object#

Field NameTypeDescription
idintegerThe unique identifier of the network group.
namestringThe name of the network group.

Parameters#

Parameter NameTypeRequiredDescription
fieldsstringNoLimit to the return to the fields specified
pageintegerNoThe page number to retrieve. Defaults to 1.
per_pageintegerNoThe number of items per page. Defaults to 100.
Modified at 2024-06-02 19:31:50
Previous
Get User Team Account Information
Next
List All Network Groups