curl --request GET \
--url https://api.example.com/api/v1/ops/cooperative-payment-settings \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/ops/cooperative-payment-settings"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/api/v1/ops/cooperative-payment-settings', 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.example.com/api/v1/ops/cooperative-payment-settings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.example.com/api/v1/ops/cooperative-payment-settings"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.example.com/api/v1/ops/cooperative-payment-settings")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/ops/cooperative-payment-settings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"cooperativePaymentSettingsId": "0197a817-1cc7-7d9c-9d74-8149674d0ef2",
"organizationId": "0197a7f7-7291-7a43-96db-2c8580b80c5d",
"cooperativeId": "0197a800-24e6-76a2-90ed-ff0f6fba7b0c",
"externalProvider": "billing_interface",
"externalAccountId": "acct_2c9f81b0",
"status": "ACTIVE",
"hasExternalApiKey": true,
"createdAt": "2026-07-03T14:30:00.000Z",
"updatedAt": "2026-07-03T14:30:00.000Z",
"externalWalletId": "wallet_42d8a19f",
"createdBy": null,
"updatedBy": null
}{
"errors": [
{
"message": "required",
"path": "name"
}
],
"message": "Bad Request Error",
"statusCode": 400
}{
"message": "Missing or invalid access token",
"statusCode": 401
}{
"message": "Insufficient permissions",
"statusCode": 403
}{
"message": "Internal Server Error",
"statusCode": 500
}Get Cooperative Payment Settings
Returns cooperative payment settings.
curl --request GET \
--url https://api.example.com/api/v1/ops/cooperative-payment-settings \
--header 'Authorization: Bearer <token>'import requests
url = "https://api.example.com/api/v1/ops/cooperative-payment-settings"
headers = {"Authorization": "Bearer <token>"}
response = requests.get(url, headers=headers)
print(response.text)const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};
fetch('https://api.example.com/api/v1/ops/cooperative-payment-settings', 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.example.com/api/v1/ops/cooperative-payment-settings",
CURLOPT_RETURNTRANSFER => true,
CURLOPT_ENCODING => "",
CURLOPT_MAXREDIRS => 10,
CURLOPT_TIMEOUT => 30,
CURLOPT_HTTP_VERSION => CURL_HTTP_VERSION_1_1,
CURLOPT_CUSTOMREQUEST => "GET",
CURLOPT_HTTPHEADER => [
"Authorization: Bearer <token>"
],
]);
$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.example.com/api/v1/ops/cooperative-payment-settings"
req, _ := http.NewRequest("GET", url, nil)
req.Header.Add("Authorization", "Bearer <token>")
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.example.com/api/v1/ops/cooperative-payment-settings")
.header("Authorization", "Bearer <token>")
.asString();require 'uri'
require 'net/http'
url = URI("https://api.example.com/api/v1/ops/cooperative-payment-settings")
http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true
request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'
response = http.request(request)
puts response.read_body{
"cooperativePaymentSettingsId": "0197a817-1cc7-7d9c-9d74-8149674d0ef2",
"organizationId": "0197a7f7-7291-7a43-96db-2c8580b80c5d",
"cooperativeId": "0197a800-24e6-76a2-90ed-ff0f6fba7b0c",
"externalProvider": "billing_interface",
"externalAccountId": "acct_2c9f81b0",
"status": "ACTIVE",
"hasExternalApiKey": true,
"createdAt": "2026-07-03T14:30:00.000Z",
"updatedAt": "2026-07-03T14:30:00.000Z",
"externalWalletId": "wallet_42d8a19f",
"createdBy": null,
"updatedBy": null
}{
"errors": [
{
"message": "required",
"path": "name"
}
],
"message": "Bad Request Error",
"statusCode": 400
}{
"message": "Missing or invalid access token",
"statusCode": 401
}{
"message": "Insufficient permissions",
"statusCode": 403
}{
"message": "Internal Server Error",
"statusCode": 500
}Authorizations
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Query Parameters
Comma-separated list of fields to include in the response. Supports dot notation for nested projection (e.g. id,name,user.email,trips.route.id). Unknown fields are silently dropped.
Response
OK
Cooperative payment settings
Settings identifier
"0197a817-1cc7-7d9c-9d74-8149674d0ef2"
Organization identifier
"0197a7f7-7291-7a43-96db-2c8580b80c5d"
Cooperative identifier
"0197a800-24e6-76a2-90ed-ff0f6fba7b0c"
External billing provider
"billing_interface"
External account identifier
"acct_2c9f81b0"
Cooperative payment settings status
PENDING, ACTIVE, REJECTED, DISABLED "ACTIVE"
External API key configured
true
Created at
"2026-07-03T14:30:00.000Z"
Updated at
"2026-07-03T14:30:00.000Z"
External wallet identifier
"wallet_42d8a19f"
Created by
null
Updated by
null