Skip to main content
POST
/
networks
/
couponcodes
Create Coupon Code
curl --request POST \
  --url https://api.eflow.team/v1/networks/couponcodes \
  --header 'Content-Type: application/json' \
  --header 'X-Eflow-Api-Key: <api-key>' \
  --data '
{
  "coupon_code": "DOCTEST_CODE_1",
  "network_offer_id": 1,
  "coupon_status": "active"
}
'
import requests

url = "https://api.eflow.team/v1/networks/couponcodes"

payload = {
    "coupon_code": "DOCTEST_CODE_1",
    "network_offer_id": 1,
    "coupon_status": "active"
}
headers = {
    "X-Eflow-Api-Key": "<api-key>",
    "Content-Type": "application/json"
}

response = requests.post(url, json=payload, headers=headers)

print(response.text)
const options = {
  method: 'POST',
  headers: {'X-Eflow-Api-Key': '<api-key>', 'Content-Type': 'application/json'},
  body: JSON.stringify({coupon_code: 'DOCTEST_CODE_1', network_offer_id: 1, coupon_status: 'active'})
};

fetch('https://api.eflow.team/v1/networks/couponcodes', options)
  .then(res => res.json())
  .then(res => console.log(res))
  .catch(err => console.error(err));
<?php

$curl = curl_init();

curl_setopt_array($curl, [
  CURLOPT_URL => "https://api.eflow.team/v1/networks/couponcodes",
  CURLOPT_RETURNTRANSFER => true,
  CURLOPT_ENCODING => "",
  CURLOPT_MAXREDIRS => 10,
  CURLOPT_TIMEOUT => 30,
  CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
  CURLOPT_CUSTOMREQUEST => "POST",
  CURLOPT_POSTFIELDS => json_encode([
    'coupon_code' => 'DOCTEST_CODE_1',
    'network_offer_id' => 1,
    'coupon_status' => 'active'
  ]),
  CURLOPT_HTTPHEADER => [
    "Content-Type: application/json",
    "X-Eflow-Api-Key: <api-key>"
  ],
]);

$response = curl_exec($curl);
$err = curl_error($curl);

curl_close($curl);

if ($err) {
  echo "cURL Error #:" . $err;
} else {
  echo $response;
}
package main

import (
	"fmt"
	"strings"
	"net/http"
	"io"
)

func main() {

	url := "https://api.eflow.team/v1/networks/couponcodes"

	payload := strings.NewReader("{\n  \"coupon_code\": \"DOCTEST_CODE_1\",\n  \"network_offer_id\": 1,\n  \"coupon_status\": \"active\"\n}")

	req, _ := http.NewRequest("POST", url, payload)

	req.Header.Add("X-Eflow-Api-Key", "<api-key>")
	req.Header.Add("Content-Type", "application/json")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(string(body))

}
HttpResponse<String> response = Unirest.post("https://api.eflow.team/v1/networks/couponcodes")
  .header("X-Eflow-Api-Key", "<api-key>")
  .header("Content-Type", "application/json")
  .body("{\n  \"coupon_code\": \"DOCTEST_CODE_1\",\n  \"network_offer_id\": 1,\n  \"coupon_status\": \"active\"\n}")
  .asString();
require 'uri'
require 'net/http'

url = URI("https://api.eflow.team/v1/networks/couponcodes")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Post.new(url)
request["X-Eflow-Api-Key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n  \"coupon_code\": \"DOCTEST_CODE_1\",\n  \"network_offer_id\": 1,\n  \"coupon_status\": \"active\"\n}"

response = http.request(request)
puts response.read_body
{
  "network_coupon_code_id": 1,
  "network_id": 1,
  "network_affiliate_id": 7,
  "network_offer_id": 1,
  "coupon_code": "DOCTEST_CODE_1",
  "coupon_status": "active",
  "internal_notes": "",
  "time_created": 1774725262,
  "time_saved": 1774725262,
  "start_date": "",
  "end_date": "",
  "description": "",
  "is_description_plain_text": false,
  "time_deleted": 0
}
Create a new coupon code. Optionally set network_affiliate_id, start and end dates, description, and internal notes.

Authorizations

X-Eflow-Api-Key
string
header
required

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

Body

application/json
network_offer_id
integer
required

ID of the offer for which the coupon applies.

coupon_code
string
required

Coupon code value. Must be at least 3 characters.

Minimum string length: 3
coupon_status
enum<string>
required

Status of the coupon code.

Available options:
active,
paused
network_affiliate_id
integer

ID of the affiliate for which the coupon applies. A coupon code without an affiliate specified can exist but cannot be used.

internal_notes
string

Notes for internal usage — they will not be visible to the partner.

description
string

A description (either plain text or HTML) that will be visible to the partner.

is_description_plain_text
boolean

Only relevant when a description is provided. Determines if the description is in HTML or plain text format.

start_date
string

An optional date starting at which the coupon code can be used. Use the YYYY-MM-DD format.

end_date
string

An optional date at which the coupon code becomes obsolete. Use the YYYY-MM-DD format.

Response

200 - application/json

Coupon code as returned by create and update endpoints (without relationship data).

network_coupon_code_id
integer

Unique identifier for this coupon code.

network_id
integer

The ID of the network this coupon code belongs to.

network_affiliate_id
integer

ID of the affiliate for which the coupon applies. A coupon code without an affiliate specified can exist but cannot be used.

network_offer_id
integer

ID of the offer for which the coupon applies.

coupon_code
string

Coupon code value.

coupon_status
enum<string>

Status of the coupon code. Can be one of the following values: active or paused.

Available options:
active,
paused
internal_notes
string

Notes for internal usage -- they will not be visible to the partner.

description
string

A description (either plain text or HTML) that will be visible to the partner.

is_description_plain_text
boolean

Only relevant when a description is provided. Determines if the description is in HTML or plain text format.

start_date
string

An optional date starting at which the coupon code can be used. Uses the YYYY-MM-DD format.

end_date
string

An optional date at which the coupon code becomes obsolete. Uses the YYYY-MM-DD format.

time_created
integer

Unix timestamp of when the coupon code was created.

Example:

1734455015

time_saved
integer

Unix timestamp of when the coupon code was last updated.

Example:

1734455015

time_deleted
integer

Unix timestamp of when the coupon code was deleted. 0 if not deleted.

Example:

0