Sell or issue a gift card.
curl --request POST \
--url https://dash.dmly.io/api/v1/gift-cards \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"purchaser_id": "9f1c2d3e-4b5a-6789-abcd-ef0123456789",
"recipient_id": "7a6b5c4d-3e2f-1908-8776-655443322110",
"value": 50,
"currency": "USD",
"expires_at": "2027-01-01",
"notes": "Birthday gift card.",
"comp": false
}
'import requests
url = "https://dash.dmly.io/api/v1/gift-cards"
payload = {
"purchaser_id": "9f1c2d3e-4b5a-6789-abcd-ef0123456789",
"recipient_id": "7a6b5c4d-3e2f-1908-8776-655443322110",
"value": 50,
"currency": "USD",
"expires_at": "2027-01-01",
"notes": "Birthday gift card.",
"comp": False
}
headers = {
"x-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-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
purchaser_id: '9f1c2d3e-4b5a-6789-abcd-ef0123456789',
recipient_id: '7a6b5c4d-3e2f-1908-8776-655443322110',
value: 50,
currency: 'USD',
expires_at: '2027-01-01',
notes: 'Birthday gift card.',
comp: false
})
};
fetch('https://dash.dmly.io/api/v1/gift-cards', 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://dash.dmly.io/api/v1/gift-cards",
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([
'purchaser_id' => '9f1c2d3e-4b5a-6789-abcd-ef0123456789',
'recipient_id' => '7a6b5c4d-3e2f-1908-8776-655443322110',
'value' => 50,
'currency' => 'USD',
'expires_at' => '2027-01-01',
'notes' => 'Birthday gift card.',
'comp' => false
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-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://dash.dmly.io/api/v1/gift-cards"
payload := strings.NewReader("{\n \"purchaser_id\": \"9f1c2d3e-4b5a-6789-abcd-ef0123456789\",\n \"recipient_id\": \"7a6b5c4d-3e2f-1908-8776-655443322110\",\n \"value\": 50,\n \"currency\": \"USD\",\n \"expires_at\": \"2027-01-01\",\n \"notes\": \"Birthday gift card.\",\n \"comp\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-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://dash.dmly.io/api/v1/gift-cards")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"purchaser_id\": \"9f1c2d3e-4b5a-6789-abcd-ef0123456789\",\n \"recipient_id\": \"7a6b5c4d-3e2f-1908-8776-655443322110\",\n \"value\": 50,\n \"currency\": \"USD\",\n \"expires_at\": \"2027-01-01\",\n \"notes\": \"Birthday gift card.\",\n \"comp\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://dash.dmly.io/api/v1/gift-cards")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"purchaser_id\": \"9f1c2d3e-4b5a-6789-abcd-ef0123456789\",\n \"recipient_id\": \"7a6b5c4d-3e2f-1908-8776-655443322110\",\n \"value\": 50,\n \"currency\": \"USD\",\n \"expires_at\": \"2027-01-01\",\n \"notes\": \"Birthday gift card.\",\n \"comp\": false\n}"
response = http.request(request)
puts response.read_body{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>",
"errors": {}
}{
"message": "<string>"
}Sell or issue a gift card.
Creates a gift card. By default the card is sold to a purchaser (required) and a purchase invoice is minted and sent. Pass comp=true to issue a complimentary card instead, with no purchaser and no billing. value and currency are required; a recipient and an expiry are optional. Returns the created gift card (201).
POST
/
gift-cards
Sell or issue a gift card.
curl --request POST \
--url https://dash.dmly.io/api/v1/gift-cards \
--header 'Content-Type: application/json' \
--header 'x-api-key: <api-key>' \
--data '
{
"purchaser_id": "9f1c2d3e-4b5a-6789-abcd-ef0123456789",
"recipient_id": "7a6b5c4d-3e2f-1908-8776-655443322110",
"value": 50,
"currency": "USD",
"expires_at": "2027-01-01",
"notes": "Birthday gift card.",
"comp": false
}
'import requests
url = "https://dash.dmly.io/api/v1/gift-cards"
payload = {
"purchaser_id": "9f1c2d3e-4b5a-6789-abcd-ef0123456789",
"recipient_id": "7a6b5c4d-3e2f-1908-8776-655443322110",
"value": 50,
"currency": "USD",
"expires_at": "2027-01-01",
"notes": "Birthday gift card.",
"comp": False
}
headers = {
"x-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-api-key': '<api-key>', 'Content-Type': 'application/json'},
body: JSON.stringify({
purchaser_id: '9f1c2d3e-4b5a-6789-abcd-ef0123456789',
recipient_id: '7a6b5c4d-3e2f-1908-8776-655443322110',
value: 50,
currency: 'USD',
expires_at: '2027-01-01',
notes: 'Birthday gift card.',
comp: false
})
};
fetch('https://dash.dmly.io/api/v1/gift-cards', 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://dash.dmly.io/api/v1/gift-cards",
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([
'purchaser_id' => '9f1c2d3e-4b5a-6789-abcd-ef0123456789',
'recipient_id' => '7a6b5c4d-3e2f-1908-8776-655443322110',
'value' => 50,
'currency' => 'USD',
'expires_at' => '2027-01-01',
'notes' => 'Birthday gift card.',
'comp' => false
]),
CURLOPT_HTTPHEADER => [
"Content-Type: application/json",
"x-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://dash.dmly.io/api/v1/gift-cards"
payload := strings.NewReader("{\n \"purchaser_id\": \"9f1c2d3e-4b5a-6789-abcd-ef0123456789\",\n \"recipient_id\": \"7a6b5c4d-3e2f-1908-8776-655443322110\",\n \"value\": 50,\n \"currency\": \"USD\",\n \"expires_at\": \"2027-01-01\",\n \"notes\": \"Birthday gift card.\",\n \"comp\": false\n}")
req, _ := http.NewRequest("POST", url, payload)
req.Header.Add("x-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://dash.dmly.io/api/v1/gift-cards")
.header("x-api-key", "<api-key>")
.header("Content-Type", "application/json")
.body("{\n \"purchaser_id\": \"9f1c2d3e-4b5a-6789-abcd-ef0123456789\",\n \"recipient_id\": \"7a6b5c4d-3e2f-1908-8776-655443322110\",\n \"value\": 50,\n \"currency\": \"USD\",\n \"expires_at\": \"2027-01-01\",\n \"notes\": \"Birthday gift card.\",\n \"comp\": false\n}")
.asString();require 'uri'
require 'net/http'
url = URI("https://dash.dmly.io/api/v1/gift-cards")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Post.new(url)
request["x-api-key"] = '<api-key>'
request["Content-Type"] = 'application/json'
request.body = "{\n \"purchaser_id\": \"9f1c2d3e-4b5a-6789-abcd-ef0123456789\",\n \"recipient_id\": \"7a6b5c4d-3e2f-1908-8776-655443322110\",\n \"value\": 50,\n \"currency\": \"USD\",\n \"expires_at\": \"2027-01-01\",\n \"notes\": \"Birthday gift card.\",\n \"comp\": false\n}"
response = http.request(request)
puts response.read_body{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>"
}{
"message": "<string>",
"errors": {}
}{
"message": "<string>"
}Was this page helpful?
⌘I

