Get All Partners
Endpoint for getting all Partners.
info
Please be aware that this endpoint requires a Manage Partners API Key.
GET
/api/v1/groups/{group_id}/partners
Query Parameters
| Name | Description | Type |
|---|---|---|
| limit | Optional parameter to limit the number of results in the query. | uint64 |
| offset | The number of Partners to skip before starting to collect the result set. | uint64 |
| name | The name of the Partner. | string |
Response
| Code | Description |
|---|---|
| 200 | Success |
| 400 | Bad Request / Validation error |
| 500 | Internal Error |
Example Usage
- JavaScript
- Python
- Go
getAll.js
var headers = new Headers();
headers.append('Authorization', 'API_KEY');
var requestOptions = {
method: 'GET',
headers: headers,
redirect: 'follow'
};
const group_id = '';
const url = `https://api.reverepayments.dev/api/v1/groups/${group_id}/partners`;
fetch(url, requestOptions)
.then((response) => response.text())
.then((result) => console.log(result))
.catch((error) => console.log('error', error));
getAll.py
import requests
group_id = ""
url = "https://api.reverepayments.dev/api/v1/groups/" + group_id + "/partners"
headers = {
'Authorization': 'API_KEY'
}
response = requests.request("GET", url, headers=headers)
print(response.text)
getAll.go
package main
import (
"bytes"
"encoding/json"
"fmt"
"io"
"net/http"
)
func main() {
const group_id = ""
url := "https://api.reverepayments.dev/api/v1/groups/" + group_id + "/partners"
client := &http.Client{}
body := bytes.NewBuffer(nil)
_ = json.NewEncoder(body).Encode(map[string]any{
// body data
})
req, _ := http.NewRequest("GET", url, body)
req.Header.Add("Authorization", "API_KEY")
res, _ := client.Do(req)
defer res.Body.Close()
bytes, err := io.ReadAll(res.Body)
if err != nil {
fmt.Println(err.Error())
return
}
fmt.Println(string(bytes))
}
Example Success Response
{
"data": {
"items": [
{
"id": "07979b71-8812-4bed-ac63-07314aa4747a",
"group_id": "655e5d89-5541-4852-b284-58772dbdfd90",
"company": "Knockout Kickboxing",
"first_name": "John",
"last_name": "Doe",
"email": "knockout.kickboxing@domain.com",
"line_1": "2672 Woodland Avenue",
"line_2": "Apt 5B",
"city": "Larose",
"country": "US",
"subdivision": "LA",
"postal_code": "70373",
"created_at": "2025-11-19T14:26:05.141114Z",
"updated_at": "2025-11-19T14:57:25.375684Z"
},
{
"id": "19b200f7-084d-44d8-8b05-21e5669fd629",
"group_id": "d4e729c4-6cad-4a37-8743-506b94e7e246",
"company": "Pioneer Chicken",
"first_name": "",
"last_name": "",
"email": "SherriGBohner@dayrep.com",
"line_1": "2858 Seltice Way",
"line_2": "",
"city": "Boise",
"country": "US",
"subdivision": "ID",
"postal_code": "83716",
"created_at": "2025-06-20T08:28:21.188136Z",
"updated_at": "2025-06-20T08:28:21.188136Z"
},
{
"id": "eeb0aa2c-49c1-4fce-85c7-8defe27f9100",
"group_id": "d4e729c4-6cad-4a37-8743-506b94e7e246",
"company": "Hoyden",
"first_name": "Rose",
"last_name": "Meyer-Fults",
"email": "RoseMFults@jourrapide.com",
"line_1": "3911 West Fork Street",
"line_2": "",
"city": "Belgrade",
"country": "US",
"subdivision": "MT",
"postal_code": "59714",
"created_at": "2025-06-20T08:27:11.342839Z",
"updated_at": "2025-06-20T08:27:11.342839Z"
},
{
"id": "b87d673f-bf96-44ca-9ca7-ac3539d01dd1",
"group_id": "d4e729c4-6cad-4a37-8743-506b94e7e246",
"company": "Heilig-Meyers",
"first_name": "Joseph Bartholomew",
"last_name": "Daub",
"email": "JosephBDaub@dayrep.com",
"line_1": "3998 A Avenue",
"line_2": "",
"city": "Edmonton",
"country": "CA",
"subdivision": "AB",
"postal_code": "T5J 0K7",
"created_at": "2025-06-19T14:53:05.696325Z",
"updated_at": "2025-06-19T14:53:05.696325Z"
},
{
"id": "a5b5bd51-5822-4336-9486-f238310c36d6",
"group_id": "655e5d89-5541-4852-b284-58772dbdfd90",
"company": "Tiny Troops",
"first_name": "",
"last_name": "",
"email": "tiny.troops@domain.com",
"line_1": "1767 Charles Street",
"line_2": "",
"city": "Livonia",
"country": "US",
"subdivision": "MI",
"postal_code": "48150",
"created_at": "2025-06-16T09:10:15.904721Z",
"updated_at": "2025-06-16T09:10:41.599802Z"
}
],
"total_count": 5
}
}