enrollments
Show enrollment
Public endpoint — retrieves enrollment form by token.
GET
/
api
/
checkout
/
v2026-04
/
enrollments
/
{token}
Show enrollment
curl --request GET \
--url https://api.fluid.app/api/checkout/v2026-04/enrollments/{token}import requests
url = "https://api.fluid.app/api/checkout/v2026-04/enrollments/{token}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.fluid.app/api/checkout/v2026-04/enrollments/{token}', 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.fluid.app/api/checkout/v2026-04/enrollments/{token}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fluid.app/api/checkout/v2026-04/enrollments/{token}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.fluid.app/api/checkout/v2026-04/enrollments/{token}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fluid.app/api/checkout/v2026-04/enrollments/{token}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"company": {
"bundle_subscriptions": true,
"checkout_primary_button_color": "<string>",
"checkout_primary_text_color": "<string>",
"checkout_secondary_button_color": "<string>",
"checkout_secondary_text_color": "<string>",
"collect_email_marketing": true,
"collect_phone": true,
"collect_sms_marketing": true,
"favicon_url": "<string>",
"fluid_shop": "<string>",
"id": 123,
"isolated_payment_tokens": true,
"kount_environment": "sandbox",
"kount_client_id": "150953359757648",
"logo_url": "<string>",
"name": "<string>",
"order_on_behalf": true,
"primary_domain_hostname": "<string>",
"require_billing_zip": true,
"require_phone": true,
"reward_points_apply_to_subtotal": true,
"reward_points_enabled": true,
"reward_points_label_singular": "<string>",
"reward_points_label_plural": "<string>",
"subdomain": "<string>"
},
"enroll": {
"title": "<string>"
},
"enrollment": {
"enrollment_fields": [
{
"id": 123,
"title": "<string>",
"field_type": "<string>",
"order": 123,
"response": "<string>",
"field_answer_id": 123,
"metadata": {}
}
]
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
}{
"error_message": "<string>",
"errors": "<string>",
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
}⌘I
Show enrollment
curl --request GET \
--url https://api.fluid.app/api/checkout/v2026-04/enrollments/{token}import requests
url = "https://api.fluid.app/api/checkout/v2026-04/enrollments/{token}"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.fluid.app/api/checkout/v2026-04/enrollments/{token}', 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.fluid.app/api/checkout/v2026-04/enrollments/{token}",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
]);
$response = curl_exec($curl);
$err = curl_error($curl);
curl_close($curl);
if ($err) {
echo "cURL Error #:" . $err;
} else {
echo $response;
}package main
import (
"fmt"
"net/http"
"io"
)
func main() {
url := "https://api.fluid.app/api/checkout/v2026-04/enrollments/{token}"
req, _ := http.NewRequest("GET", url, nil)
res, _ := http.DefaultClient.Do(req)
defer res.Body.Close()
body, _ := io.ReadAll(res.Body)
fmt.Println(string(body))
}HttpResponse<String> response = Unirest.get("https://api.fluid.app/api/checkout/v2026-04/enrollments/{token}")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.fluid.app/api/checkout/v2026-04/enrollments/{token}")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
response = http.request(request)
puts response.read_body{
"company": {
"bundle_subscriptions": true,
"checkout_primary_button_color": "<string>",
"checkout_primary_text_color": "<string>",
"checkout_secondary_button_color": "<string>",
"checkout_secondary_text_color": "<string>",
"collect_email_marketing": true,
"collect_phone": true,
"collect_sms_marketing": true,
"favicon_url": "<string>",
"fluid_shop": "<string>",
"id": 123,
"isolated_payment_tokens": true,
"kount_environment": "sandbox",
"kount_client_id": "150953359757648",
"logo_url": "<string>",
"name": "<string>",
"order_on_behalf": true,
"primary_domain_hostname": "<string>",
"require_billing_zip": true,
"require_phone": true,
"reward_points_apply_to_subtotal": true,
"reward_points_enabled": true,
"reward_points_label_singular": "<string>",
"reward_points_label_plural": "<string>",
"subdomain": "<string>"
},
"enroll": {
"title": "<string>"
},
"enrollment": {
"enrollment_fields": [
{
"id": 123,
"title": "<string>",
"field_type": "<string>",
"order": 123,
"response": "<string>",
"field_answer_id": 123,
"metadata": {}
}
]
},
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
}{
"error_message": "<string>",
"errors": "<string>",
"meta": {
"request_id": "<string>",
"timestamp": "2023-11-07T05:31:56Z"
}
}