MENU navbar-image

Introduction

Welcome to the Foodiverse API reference portal.

This aims to provide all the information you need to work with our REST API, which has predictable resource-oriented URLs, returns JSON-encoded responses and standard HTTP response codes.

All authenticated endpoints require an Authorization header to be sent along with the request.

Base URL

https://api-dev.foodiverse.net

Authenticating requests

To authenticate requests, include a AuthorizationToken header with the value "Bearer {token}".

All authenticated endpoints are marked with a requires authentication badge in the documentation below.

Auth

Login

Login with an email address and password to receive an authorisation token.

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/user/login" \
    --header "Content-Type: application/json" \
    --data "{
    \"email\": \"[email protected]\",
    \"password\": \"password\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/login"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "[email protected]",
    "password": "password"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/login';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'email' => '[email protected]',
            'password' => 'password',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/login'
payload = {
    "email": "[email protected]",
    "password": "password"
}
headers = {
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "token": {
            "token_type": "Bearer",
            "access_token": "abcdefghijklmnopqrstuvwxyz0123456789...",
            "expires_in": 900,
            "domain": ".food.cloud",
            "url": "https://api-qa.foodiverse.net"
        },
        "user": {
            "uuid": "90070464-ecbf-4d4a-af6a-293534b50665",
            "first_name": "First Name",
            "surname": "Surname",
            "language_code": "en_IE",
            "mobile_number": "",
            "email": "[email protected]",
            "email_verified_at": null,
            "activation_key": null,
            "restoration_key": null,
            "is_active": 1,
            "is_organisation_admin": 1,
            "created_at": "2016-02-11 15:12:07",
            "updated_at": "2019-09-24 09:33:02",
            "deleted_at": null,
            "full_name": "First Name Surname",
            "role": "role",
            "image": {
                "filename": "5d89e2cd593493900d8ce.png"
            },
            "organisation": {
                "uuid": "f3738be8-1cab-47fa-b8e6-9b1f48108eff",
                "name": "FoodCloud",
                "image": null,
                "organisation_type": {
                    "id": 3,
                    "name": "FoodBank"
                }
            },
            "branches": [
                {
                    "name": "FoodCloud branch 1",
                    "uuid": "70ee2848-7f29-482f-b56c-87d18371fc7f",
                    "in_line_address": ""
                }
            ]
        }
    },
    "callTime": 1.0086328983306885
}
 

Example response (400):


{
    "status": "error",
    "data": [
        {
            "field": "email",
            "message": "e_email_required"
        },
        {
            "field": "password",
            "message": "e_password_required"
        }
    ],
    "callTime": 0.0011749267578125
}
 

Request      

POST api/user/login

Headers

Content-Type      

Example: application/json

Body Parameters

email   String   

The email of the user. Example: [email protected]

password   String   

The password of the user. Example: password

User Info

requires authentication

Get User Info from Auth0 Token

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/user-info" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Authorization: Bearer {access_token} The access token used for authorization."
const url = new URL(
    "api-qa.foodiverse.net/api/user/user-info"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Authorization": "Bearer {access_token} The access token used for authorization.",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/user-info';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Authorization' => 'Bearer {access_token} The access token used for authorization.',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/user-info'
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Authorization': 'Bearer {access_token} The access token used for authorization.'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "user": {
            "uuid": "13c52fd4-1b94-405e-99ce-04df62e3b792",
            "first_name": "Org",
            "surname": "Admin",
            "language_code": "en_IE",
            "mobile_number": "+353879804714",
            "email": "[email protected]",
            "availability": null,
            "mode_of_transport": null,
            "pickup_locations": null,
            "is_active": 1,
            "is_organisation_admin": 1,
            "suppress_notifications": 0,
            "suppress_email": 0,
            "created_at": "2024-04-29T17:02:24.000000Z",
            "updated_at": "2024-09-10T13:52:32.000000Z",
            "full_name": "Org Admin",
            "role": "foodnet_administrator",
            "organisation": {
                "uuid": "6261301c-1d15-47ff-9724-a4f41cb42701",
                "name": "MRT TESTING FOODBANK",
                "in_line_address": "",
                "image": null,
                "organisation_type": {
                    "name": "FoodBank"
                }
            },
            "image": {
                "filename": "662fd3006173f3d691185.png"
            },
            "branches": [
                {
                    "name": "MRT, testing, branch 1",
                    "uuid": "96fa12fa-1bf1-4999-9492-ce09bb215684",
                    "in_line_address": ""
                },
                {
                    "name": "Mrt testing branch 2",
                    "uuid": "5a18fc8f-da8d-43d5-8b4d-3508116cf19d",
                    "in_line_address": ""
                },
                {
                    "name": "Mrt testing branch 3",
                    "uuid": "eb14286e-578e-4b9f-993f-617b0f6a823c",
                    "in_line_address": ""
                },
                {
                    "name": "Mrt testing 4",
                    "uuid": "8b8077ca-3207-43a8-a95f-d31f181f1175",
                    "in_line_address": ""
                }
            ]
        }
    },
    "frontendRedirect": false,
    "callTime": 0.877655029296875
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "e_invalid_token"
    ],
    "frontendRedirect": false,
    "callTime": 0.015797138214111328
}
 

Example response (401):


{
    "status": "error",
    "data": [
        "e_incorrect_email_or_password"
    ],
    "frontendRedirect": false,
    "callTime": 0.015797138214111328,
    "debug_error_message": "e_incorrect_email_or_password"
}
 

Example response (403):


{
    "status": "error",
    "data": [
        "e_account_not_activated"
    ],
    "frontendRedirect": false,
    "callTime": 0.015797138214111328,
    "debug_error_message": "e_account_not_activated"
}
 

Request      

GET api/user/user-info

Headers

AuthorizationToken      

Example: Bearer {token}

Authorization      

Example: Bearer {access_token} The access token used for authorization.

Logout

requires authentication

Logout and invalidate all existing access and refresh tokens.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/logout" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/logout"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/logout';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/logout'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        null
    ],
    "callTime": 0.01135396957397461
}
 

Request      

GET api/user/logout

Headers

AuthorizationToken      

Example: Bearer {token}

Branches

Get All Branches

requires authentication

This endpoint retrieves all user's branches.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/branches" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/branches"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/branches';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/branches'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        {
            "uuid": "c2a2c390-265b-c38a-c2b7-42c3b0c2b0c2",
            "name": "FoodCloud Dublin",
            "address": "Unit 8 Broomhill Business Park, Broomhill Road, Tallaght, South Dublin, Leinster, Ireland",
            "post_code": "D24 CD32",
            "is_active": 1,
            "latitude": "53.29716570",
            "longitude": "-6.36017910",
            "in_line_address": "D24 CD32"
        },
        {
            "uuid": "51c592c3-b909-c390-3f4e-c38dc2be7b45",
            "name": "FoodCloud Cork",
            "address": "Unit 3, O'connell Commercial Park, Cork, Munster, Ireland",
            "post_code": "T45 YP40 ",
            "is_active": 1,
            "latitude": "51.90001390",
            "longitude": "-8.35212060",
            "in_line_address": "T45 YP40 "
        },
        {
            "uuid": "c28d4ac3-aac2-a353-c2a9-47e280b9c592",
            "name": "FoodCloud Galway",
            "address": "Unit 9, Glennascaul Manufacturing & Technology, Deerpark, Cork, Munster, Ireland",
            "post_code": "H91 N96C",
            "is_active": 1,
            "latitude": "53.28375640",
            "longitude": "-8.92998510",
            "in_line_address": "H91 N96C"
        }
    ],
    "callTime": 0.03259706497192383
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

GET api/user/branches

Headers

AuthorizationToken      

Example: Bearer {token}

Get a Specific Branch

requires authentication

This endpoint retrieves a specific user's branch.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/branches/1" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/branches/1"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/branches/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/branches/1'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "uuid": "c2a2c390-265b-c38a-c2b7-42c3b0c2b0c2",
        "name": "FoodCloud Dublin",
        "countries_id": 2963597,
        "provinces_id": 7521314,
        "counties_id": 7288565,
        "official_id": null,
        "address_1": "Unit 8 Broomhill Business Park, Broomhill Road",
        "address_2": "Tallaght",
        "city_town": "Dublin 24",
        "post_code": "D24 CD32",
        "phone": null,
        "prepare_donation_option": "l_product_and_category",
        "default_categories_only": false,
        "approved_products_only": false,
        "geofilter_unit_of_distance": "l_kilometers",
        "latitude": "53.29716570",
        "longitude": "-6.36017910",
        "is_active": 1,
        "created_at": "2019-09-29 04:52:10",
        "updated_at": "2019-09-29 04:52:10",
        "deleted_at": null,
        "users_id": 2,
        "branches_id": 2,
        "is_branch_admin": 1,
        "in_line_address": "Unit 8 Broomhill Business Park, Broomhill Road, Tallaght, Dublin 24, D24 CD32",
        "country": {
            "id": 2963597,
            "name": "Ireland",
            "latitude": 53,
            "longitude": -8,
            "code": "IE",
            "created_at": "2019-09-29 04:02:02",
            "updated_at": "2019-09-29 04:02:02",
            "deleted_at": null
        },
        "province": {
            "id": 7521314,
            "countries_id": 2963597,
            "name": "Leinster",
            "latitude": 53.16667,
            "longitude": -7.02121,
            "created_at": "2019-09-29 04:02:02",
            "updated_at": "2019-09-29 04:02:02",
            "deleted_at": null
        },
        "county": {
            "id": 7288565,
            "countries_id": 2963597,
            "provinces_id": 7521314,
            "name": "South Dublin",
            "latitude": 53.28595,
            "longitude": -6.37739,
            "created_at": "2019-09-29 04:02:02",
            "updated_at": "2019-09-29 04:02:02",
            "deleted_at": null
        }
    },
    "callTime": 0.011002063751220703
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

GET api/user/branches/{id}

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

id   integer   

The ID of the branch. Example: 1

branch   string   

The UUID of the branch. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Get all charities for a Branch

requires authentication

This endpoint retrieves all of a branch's associated charities.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/charities" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/charities"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/charities';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/charities'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        {
            "uuid": "c2af254b-cb9c-66e2-809d-4cc2a7c28118",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 1,
            "day_of_week_end": 1,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        },
        {
            "uuid": "c396c2b5-2c27-c3a2-c385-41c2a1c2a56e",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 2,
            "day_of_week_end": 2,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        },
        {
            "uuid": "512369c3-be3b-5d4e-41e2-84a2094d17c2",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 3,
            "day_of_week_end": 3,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        },
        {
            "uuid": "75c2b0c2-a749-c281-c29d-431ee2809dc2",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 4,
            "day_of_week_end": 4,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        },
        {
            "uuid": "6a4ce280-993e-c382-674f-c2abc2a8c281",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 5,
            "day_of_week_end": 5,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        },
        {
            "uuid": "5cc2a7c3-a96d-c3a9-0d41-c3a5c2aa66c3",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 6,
            "day_of_week_end": 6,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        },
        {
            "uuid": "5b78c3b2-c394-e280-a2e2-84a243c2b2e2",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 7,
            "day_of_week_end": 7,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        }
    ],
    "callTime": 0.004434108734130859
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

GET api/user/branches/{branch}/charities

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

branch   string   

The UUID of the branch. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Get Schedules

requires authentication

This endpoint retrieves the store schedules

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/branches/official_id/TESCO:4045/schedules" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/branches/official_id/TESCO:4045/schedules"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/branches/official_id/TESCO:4045/schedules';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/branches/official_id/TESCO:4045/schedules'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (404):

Show headers
cache-control: no-cache, private
content-type: text/html; charset=UTF-8
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2473
 

<!DOCTYPE html>
<html lang="en">
    <head>
        <meta charset="utf-8">
        <meta name="viewport" content="width=device-width, initial-scale=1">

        <title>Not Found</title>

        <style>
            /*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */html{line-height:1.15;-webkit-text-size-adjust:100%}body{margin:0}a{background-color:transparent}code{font-family:monospace,monospace;font-size:1em}[hidden]{display:none}html{font-family:system-ui,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Helvetica Neue,Arial,Noto Sans,sans-serif,Apple Color Emoji,Segoe UI Emoji,Segoe UI Symbol,Noto Color Emoji;line-height:1.5}*,:after,:before{box-sizing:border-box;border:0 solid #e2e8f0}a{color:inherit;text-decoration:inherit}code{font-family:Menlo,Monaco,Consolas,Liberation Mono,Courier New,monospace}svg,video{display:block;vertical-align:middle}video{max-width:100%;height:auto}.bg-white{--bg-opacity:1;background-color:#fff;background-color:rgba(255,255,255,var(--bg-opacity))}.bg-gray-100{--bg-opacity:1;background-color:#f7fafc;background-color:rgba(247,250,252,var(--bg-opacity))}.border-gray-200{--border-opacity:1;border-color:#edf2f7;border-color:rgba(237,242,247,var(--border-opacity))}.border-gray-400{--border-opacity:1;border-color:#cbd5e0;border-color:rgba(203,213,224,var(--border-opacity))}.border-t{border-top-width:1px}.border-r{border-right-width:1px}.flex{display:flex}.grid{display:grid}.hidden{display:none}.items-center{align-items:center}.justify-center{justify-content:center}.font-semibold{font-weight:600}.h-5{height:1.25rem}.h-8{height:2rem}.h-16{height:4rem}.text-sm{font-size:.875rem}.text-lg{font-size:1.125rem}.leading-7{line-height:1.75rem}.mx-auto{margin-left:auto;margin-right:auto}.ml-1{margin-left:.25rem}.mt-2{margin-top:.5rem}.mr-2{margin-right:.5rem}.ml-2{margin-left:.5rem}.mt-4{margin-top:1rem}.ml-4{margin-left:1rem}.mt-8{margin-top:2rem}.ml-12{margin-left:3rem}.-mt-px{margin-top:-1px}.max-w-xl{max-width:36rem}.max-w-6xl{max-width:72rem}.min-h-screen{min-height:100vh}.overflow-hidden{overflow:hidden}.p-6{padding:1.5rem}.py-4{padding-top:1rem;padding-bottom:1rem}.px-4{padding-left:1rem;padding-right:1rem}.px-6{padding-left:1.5rem;padding-right:1.5rem}.pt-8{padding-top:2rem}.fixed{position:fixed}.relative{position:relative}.top-0{top:0}.right-0{right:0}.shadow{box-shadow:0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px 0 rgba(0,0,0,.06)}.text-center{text-align:center}.text-gray-200{--text-opacity:1;color:#edf2f7;color:rgba(237,242,247,var(--text-opacity))}.text-gray-300{--text-opacity:1;color:#e2e8f0;color:rgba(226,232,240,var(--text-opacity))}.text-gray-400{--text-opacity:1;color:#cbd5e0;color:rgba(203,213,224,var(--text-opacity))}.text-gray-500{--text-opacity:1;color:#a0aec0;color:rgba(160,174,192,var(--text-opacity))}.text-gray-600{--text-opacity:1;color:#718096;color:rgba(113,128,150,var(--text-opacity))}.text-gray-700{--text-opacity:1;color:#4a5568;color:rgba(74,85,104,var(--text-opacity))}.text-gray-900{--text-opacity:1;color:#1a202c;color:rgba(26,32,44,var(--text-opacity))}.uppercase{text-transform:uppercase}.underline{text-decoration:underline}.antialiased{-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.tracking-wider{letter-spacing:.05em}.w-5{width:1.25rem}.w-8{width:2rem}.w-auto{width:auto}.grid-cols-1{grid-template-columns:repeat(1,minmax(0,1fr))}@-webkit-keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@keyframes spin{0%{transform:rotate(0deg)}to{transform:rotate(1turn)}}@-webkit-keyframes ping{0%{transform:scale(1);opacity:1}75%,to{transform:scale(2);opacity:0}}@keyframes ping{0%{transform:scale(1);opacity:1}75%,to{transform:scale(2);opacity:0}}@-webkit-keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}@keyframes pulse{0%,to{opacity:1}50%{opacity:.5}}@-webkit-keyframes bounce{0%,to{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{transform:translateY(0);-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}@keyframes bounce{0%,to{transform:translateY(-25%);-webkit-animation-timing-function:cubic-bezier(.8,0,1,1);animation-timing-function:cubic-bezier(.8,0,1,1)}50%{transform:translateY(0);-webkit-animation-timing-function:cubic-bezier(0,0,.2,1);animation-timing-function:cubic-bezier(0,0,.2,1)}}@media (min-width:640px){.sm\:rounded-lg{border-radius:.5rem}.sm\:block{display:block}.sm\:items-center{align-items:center}.sm\:justify-start{justify-content:flex-start}.sm\:justify-between{justify-content:space-between}.sm\:h-20{height:5rem}.sm\:ml-0{margin-left:0}.sm\:px-6{padding-left:1.5rem;padding-right:1.5rem}.sm\:pt-0{padding-top:0}.sm\:text-left{text-align:left}.sm\:text-right{text-align:right}}@media (min-width:768px){.md\:border-t-0{border-top-width:0}.md\:border-l{border-left-width:1px}.md\:grid-cols-2{grid-template-columns:repeat(2,minmax(0,1fr))}}@media (min-width:1024px){.lg\:px-8{padding-left:2rem;padding-right:2rem}}@media (prefers-color-scheme:dark){.dark\:bg-gray-800{--bg-opacity:1;background-color:#2d3748;background-color:rgba(45,55,72,var(--bg-opacity))}.dark\:bg-gray-900{--bg-opacity:1;background-color:#1a202c;background-color:rgba(26,32,44,var(--bg-opacity))}.dark\:border-gray-700{--border-opacity:1;border-color:#4a5568;border-color:rgba(74,85,104,var(--border-opacity))}.dark\:text-white{--text-opacity:1;color:#fff;color:rgba(255,255,255,var(--text-opacity))}.dark\:text-gray-400{--text-opacity:1;color:#cbd5e0;color:rgba(203,213,224,var(--text-opacity))}}
        </style>

        <style>
            body {
                font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
            }
        </style>
    </head>
    <body class="antialiased">
        <div class="relative flex items-top justify-center min-h-screen bg-gray-100 dark:bg-gray-900 sm:items-center sm:pt-0">
            <div class="max-w-xl mx-auto sm:px-6 lg:px-8">
                <div class="flex items-center pt-8 sm:justify-start sm:pt-0">
                    <div class="px-4 text-lg text-gray-500 border-r border-gray-400 tracking-wider">
                        404                    </div>

                    <div class="ml-4 text-lg text-gray-500 uppercase tracking-wider">
                        Not Found                    </div>
                </div>
            </div>
        </div>
    </body>
</html>

 

Request      

GET api/branches/official_id/{official_id}/schedules

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

official_id   string   

The branch official ID. Example: TESCO:4045

Get Branch Closures

requires authentication

This endpoint gets all upcoming temporary closures for a branch

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/branches/a1eb5c82-7511-41de-b0d9-8ad20b1c2b46/temporary_closures" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/branches/a1eb5c82-7511-41de-b0d9-8ad20b1c2b46/temporary_closures"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/branches/a1eb5c82-7511-41de-b0d9-8ad20b1c2b46/temporary_closures';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/branches/a1eb5c82-7511-41de-b0d9-8ad20b1c2b46/temporary_closures'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        {
            "uuid": "72d8073b-1330-4943-8ceb-6f07f151a601",
            "closed_at": "2024-06-27 00:00:00"
        }
    ],
    "frontendRedirect": false,
    "callTime": 0.004642963409423828
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "e_error_retrieving_data"
    ],
    "frontendRedirect": false,
    "callTime": 0.007400035858154297
}
 

Request      

GET api/branches/{branch_uuid}/temporary_closures

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

branch_uuid   string  optional  

uuid required branch UUID. Example: a1eb5c82-7511-41de-b0d9-8ad20b1c2b46

Create Branch Temporary Calendar

requires authentication

This endpoint store temporary closures for a branch

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/branches/temporary_closures/create" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"branch_uuid\": \"a1eb5c82-7511-41de-b0d9-8ad20b1c2b46\",
    \"dates\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "api-qa.foodiverse.net/api/branches/temporary_closures/create"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "branch_uuid": "a1eb5c82-7511-41de-b0d9-8ad20b1c2b46",
    "dates": [
        "architecto"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/branches/temporary_closures/create';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'branch_uuid' => 'a1eb5c82-7511-41de-b0d9-8ad20b1c2b46',
            'dates' => [
                'architecto',
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/branches/temporary_closures/create'
payload = {
    "branch_uuid": "a1eb5c82-7511-41de-b0d9-8ad20b1c2b46",
    "dates": [
        "architecto"
    ]
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/branches/temporary_closures/create

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

branch_uuid   uuid   

branch UUID. Example: a1eb5c82-7511-41de-b0d9-8ad20b1c2b46

dates   string[]  optional  

required. Example ["2024-05-02", "2024-05-03"]

*   date   

date. Example: 2024-05-02

Delete Branch Temporary Calendar

requires authentication

This endpoint removes temporary closures for a branch

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/branches/temporary_closures/remove" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"branch_uuid\": \"a1eb5c82-7511-41de-b0d9-8ad20b1c2b46\",
    \"dates\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "api-qa.foodiverse.net/api/branches/temporary_closures/remove"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "branch_uuid": "a1eb5c82-7511-41de-b0d9-8ad20b1c2b46",
    "dates": [
        "architecto"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/branches/temporary_closures/remove';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'branch_uuid' => 'a1eb5c82-7511-41de-b0d9-8ad20b1c2b46',
            'dates' => [
                'architecto',
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/branches/temporary_closures/remove'
payload = {
    "branch_uuid": "a1eb5c82-7511-41de-b0d9-8ad20b1c2b46",
    "dates": [
        "architecto"
    ]
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/branches/temporary_closures/remove

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

branch_uuid   uuid   

branch UUID. Example: a1eb5c82-7511-41de-b0d9-8ad20b1c2b46

dates   string[]  optional  

required. Example ["2024-05-02", "2024-05-03"]

*   date   

date. Example: 2024-05-02

Categories

Get All Categories

requires authentication

This endpoint retrieves all categories.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/categories" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/categories"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/categories';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/categories'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "data": {
            "l_meat": [
                {
                    "uuid": "e2809d69-c3a3-4155-c3b5-43c3afe28093",
                    "name": "l_ambient_meat",
                    "label": "l_ambient_meat",
                    "description": "l_cuts_of_meat",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:51",
                    "updated_at": "2019-10-31 07:33:51",
                    "parent_label": "l_meat"
                },
                {
                    "uuid": "05c2b124-68c2-aac2-ba40-5bc2a9c5a168",
                    "name": "l_chilled_meat",
                    "label": "l_chilled_meat",
                    "description": "l_cuts_of_meat",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:51",
                    "updated_at": "2019-10-31 07:33:51",
                    "parent_label": "l_meat"
                },
                {
                    "uuid": "c2a54525-c2bd-590f-4471-e280b07b6e7f",
                    "name": "l_frozen_meat",
                    "label": "l_frozen_meat",
                    "description": "l_cuts_of_meat",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:51",
                    "updated_at": "2019-10-31 07:33:51",
                    "parent_label": "l_meat"
                },
                {
                    "uuid": "c3970e7f-46c2-9010-40c3-84c2a975c389",
                    "name": "l_hot_meat",
                    "label": "l_hot_meat",
                    "description": "l_cuts_of_meat",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:51",
                    "updated_at": "2019-10-31 07:33:51",
                    "parent_label": "l_meat"
                },
                {
                    "uuid": "c2a0c2b7-c2aa-7536-c2b5-432ec2ad0cc3",
                    "name": "l_prepared_ambient_product_with_meat",
                    "label": "l_prepared_ambient_product_with_meat",
                    "description": "l_prepared_products_containing_meat",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:51",
                    "updated_at": "2019-10-31 07:33:51",
                    "parent_label": "l_meat"
                },
                {
                    "uuid": "c2b874c3-a50b-c3b8-3d49-c2b5e280a651",
                    "name": "l_prepared_chilled_product_with_meat",
                    "label": "l_prepared_chilled_product_with_meat",
                    "description": "l_prepared_products_containing_meat",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:51",
                    "updated_at": "2019-10-31 07:33:51",
                    "parent_label": "l_meat"
                },
                {
                    "uuid": "c2bcc2bd-c3bf-e280-a132-c2be4ec3a2c2",
                    "name": "l_prepared_frozen_product_with_meat",
                    "label": "l_prepared_frozen_product_with_meat",
                    "description": "l_prepared_products_containing_meat",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:51",
                    "updated_at": "2019-10-31 07:33:51",
                    "parent_label": "l_meat"
                },
                {
                    "uuid": "c5bec3af-c381-e280-a6c2-a35e420ee280",
                    "name": "l_prepared_hot_product_with_meat",
                    "label": "l_prepared_hot_product_with_meat",
                    "description": "l_prepared_products_containing_meat",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:51",
                    "updated_at": "2019-10-31 07:33:51",
                    "parent_label": "l_meat"
                }
            ],
            "l_fish": [
                {
                    "uuid": "c2bdc2b3-1170-4c4a-44c3-98e2809d43c3",
                    "name": "l_ambient_fish",
                    "label": "l_ambient_fish",
                    "description": "l_cuts_of_fish",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fish"
                },
                {
                    "uuid": "e280a1e2-80a6-54c3-a7c5-bde280a647c3",
                    "name": "l_chilled_fish",
                    "label": "l_chilled_fish",
                    "description": "l_cuts_of_fish",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fish"
                },
                {
                    "uuid": "c3996046-6535-c3b8-44c2-9dc2bec3b4e2",
                    "name": "l_frozen_fish",
                    "label": "l_frozen_fish",
                    "description": "l_cuts_of_fish",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fish"
                },
                {
                    "uuid": "c38335c3-a4e2-84a2-c3a8-5d48c3bac2bf",
                    "name": "l_hot_fish",
                    "label": "l_hot_fish",
                    "description": "l_cuts_of_fish",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fish"
                },
                {
                    "uuid": "e282accb-86c3-a768-c2a5-e280b94305c2",
                    "name": "l_prepared_ambient_product_with_fish",
                    "label": "l_prepared_ambient_product_with_fish",
                    "description": "l_prepared_products_containing_fish",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fish"
                },
                {
                    "uuid": "3e1fc3ac-0dc3-a76e-48c2-a1c2a1c39058",
                    "name": "l_prepared_chilled_product_with_fish",
                    "label": "l_prepared_chilled_product_with_fish",
                    "description": "l_prepared_products_containing_fish",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fish"
                },
                {
                    "uuid": "527bc395-506f-c3a2-48e2-80a2c2b8c2b6",
                    "name": "l_prepared_frozen_product_with_fish",
                    "label": "l_prepared_frozen_product_with_fish",
                    "description": "l_prepared_products_containing_fish",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fish"
                },
                {
                    "uuid": "585355c3-9365-0a4e-c2a2-c2aac38bc385",
                    "name": "l_prepared_hot_product_with_fish",
                    "label": "l_prepared_hot_product_with_fish",
                    "description": "l_prepared_products_containing_fish",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fish"
                }
            ],
            "l_fruit_veg": [
                {
                    "uuid": "19c3b1c3-8dc3-bd19-054d-5cc2b8c2bd2f",
                    "name": "l_fresh_fruit",
                    "label": "l_fresh_fruit",
                    "description": "l_whole_or_chopped_fruit",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fruit_veg"
                },
                {
                    "uuid": "09c5a1c2-9dc3-82c3-b927-4138c2bac39c",
                    "name": "l_chilled_fruit",
                    "label": "l_chilled_fruit",
                    "description": "l_whole_or_chopped_fruit",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fruit_veg"
                },
                {
                    "uuid": "4ac2b4c2-a276-c38b-2941-6be284a26f7f",
                    "name": "l_prepared_ambient_fruit",
                    "label": "l_prepared_ambient_fruit",
                    "description": "l_prepared_products_containing_fruit",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fruit_veg"
                },
                {
                    "uuid": "c3855dc3-aa76-c3ac-c2a3-4e06c2a6c2b7",
                    "name": "l_prepared_chilled_fruit",
                    "label": "l_prepared_chilled_fruit",
                    "description": "l_prepared_products_containing_fruit",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fruit_veg"
                },
                {
                    "uuid": "62e28093-1940-c3ba-c38b-42c2bce284a2",
                    "name": "l_prepared_frozen_fruit",
                    "label": "l_prepared_frozen_fruit",
                    "description": "l_prepared_products_containing_fruit",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fruit_veg"
                },
                {
                    "uuid": "c38ac2ad-c2ae-760e-c2a9-4b0ec2a7c38c",
                    "name": "l_prepared_hot_fruit",
                    "label": "l_prepared_hot_fruit",
                    "description": "l_prepared_products_containing_fruit",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fruit_veg"
                },
                {
                    "uuid": "21c3833f-c2a4-0961-4cc3-9bc692c3b1c3",
                    "name": "l_fresh_veg",
                    "label": "l_fresh_veg",
                    "description": "l_whole_or_chopped_veg",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fruit_veg"
                },
                {
                    "uuid": "c3b9027a-c3aa-e280-a002-4368c5921123",
                    "name": "l_chilled_veg",
                    "label": "l_chilled_veg",
                    "description": "l_whole_or_chopped_veg",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fruit_veg"
                },
                {
                    "uuid": "63e282ac-c2a8-75c5-bd55-432cc290c3a6",
                    "name": "l_prepared_ambient_veg",
                    "label": "l_prepared_ambient_veg",
                    "description": "l_prepared_products_containing_veg",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fruit_veg"
                },
                {
                    "uuid": "c3864b1d-c2bf-17c2-b344-c2bbc2b55447",
                    "name": "l_prepared_chilled_veg",
                    "label": "l_prepared_chilled_veg",
                    "description": "l_prepared_products_containing_veg",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fruit_veg"
                },
                {
                    "uuid": "c390c2af-532d-c2ab-c2b3-466fe280a209",
                    "name": "l_prepared_frozen_veg",
                    "label": "l_prepared_frozen_veg",
                    "description": "l_prepared_products_containing_veg",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fruit_veg"
                },
                {
                    "uuid": "c3b1c396-c3ba-c3a5-cb86-e280a04234e2",
                    "name": "l_prepared_hot_veg",
                    "label": "l_prepared_hot_veg",
                    "description": "l_prepared_products_containing_veg",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_fruit_veg"
                }
            ],
            "l_dairy_eggs": [
                {
                    "uuid": "c593c5bd-c2b9-c3a9-4530-4b1fc5a14643",
                    "name": "l_dairy",
                    "label": "l_dairy",
                    "description": "l_dairy_products",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_dairy_eggs"
                },
                {
                    "uuid": "0a54c3b1-3fc3-8505-45c3-b3c2bac391c2",
                    "name": "l_eggs",
                    "label": "l_eggs",
                    "description": "l_eggs",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_dairy_eggs"
                },
                {
                    "uuid": "c3bfc3ad-28e2-84a2-c2a5-c38b4ac390c2",
                    "name": "l_chilled_products_with_dairy_and_eggs",
                    "label": "l_chilled_products_with_dairy_and_eggs",
                    "description": "l_prepared_products_containing_dairy_or_eggs",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_dairy_eggs"
                },
                {
                    "uuid": "42556158-434f-4116-c281-c39e2bc2ad4c",
                    "name": "l_frozen_products_with_dairy_and_eggs",
                    "label": "l_frozen_products_with_dairy_and_eggs",
                    "description": "l_prepared_products_containing_dairy_or_eggs",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_dairy_eggs"
                }
            ],
            "l_bakery": [
                {
                    "uuid": "1877c2b0-372c-5246-c2b7-c281c2a8e280",
                    "name": "l_bread_and_bread_products",
                    "label": "l_bread_and_bread_products",
                    "description": "l_savoury_bakery_goods",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_bakery"
                },
                {
                    "uuid": "c3bfc390-c2a1-07c2-ace2-80a64dc3a2c2",
                    "name": "l_sweet_and_savoury_bakery",
                    "label": "l_sweet_and_savoury_bakery",
                    "description": "l_sweet_bakery_goods",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_bakery"
                }
            ],
            "l_cereal_grains_and_soy": [
                {
                    "uuid": "3534c3bc-1e5a-c2b2-49cb-86c2af77c388",
                    "name": "l_whole_or_milled_grain",
                    "label": "l_whole_or_milled_grain",
                    "description": "l_cereal,_grain_or_soy_products_in_whole_or_milled_form",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_cereal_grains_and_soy"
                },
                {
                    "uuid": "c2b2c38c-0fe2-809c-03e2-80a14ce282ac",
                    "name": "l_flour_and_starches",
                    "label": "l_flour_and_starches",
                    "description": "l_cereal,_grain_or_soy_products_in_flour_or_fine_form",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_cereal_grains_and_soy"
                },
                {
                    "uuid": "cb9c1058-c382-5177-4cc2-b0c2b3c3a44d",
                    "name": "l_pasta_and_noodles",
                    "label": "l_pasta_and_noodles",
                    "description": "l_cereal,_grain_or_soy_products_in_prepared_form",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_cereal_grains_and_soy"
                },
                {
                    "uuid": "2c1b14c3-9d47-c2a1-4875-c2a1c382c3a9",
                    "name": "l_breakfast_cereals",
                    "label": "l_breakfast_cereals",
                    "description": "l_prepared_breakfast_cereals",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_cereal_grains_and_soy"
                },
                {
                    "uuid": "09c3823e-5e3e-5f4a-c2b0-e2809ec39605",
                    "name": "l_soy_products",
                    "label": "l_soy_products",
                    "description": "l_soy_products_such_as_beans,_tofu_etc.",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_cereal_grains_and_soy"
                },
                {
                    "uuid": "c38000c3-bae2-8093-c3ba-c5934fc2bec2",
                    "name": "l_ambient",
                    "label": "l_ambient",
                    "description": "l_batter,_prepared_grains,_grain_deserts",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_cereal_grains_and_soy"
                }
            ],
            "l_beverages": [
                {
                    "uuid": "431fe280-ba0c-6928-4bc3-a5e28098c2af",
                    "name": "l_water",
                    "label": "l_water",
                    "description": "l_water",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_beverages"
                },
                {
                    "uuid": "e284a2c3-b9c3-b2c3-99e2-80ba3244c3b9",
                    "name": "l_juice",
                    "label": "l_juice",
                    "description": "l_juices,_nectars_and_concentrates",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_beverages"
                },
                {
                    "uuid": "2e76c382-c2ba-c28f-c2ae-487ec2a2c3ad",
                    "name": "l_soda_and_sports_drinks",
                    "label": "l_soda_and_sports_drinks",
                    "description": "l_water_based_sugary_and_flavoured_drinks",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_beverages"
                },
                {
                    "uuid": "35c3b6e2-80a6-26c2-b9e2-809942c29dc2",
                    "name": "l_tea_and_coffee",
                    "label": "l_tea_and_coffee",
                    "description": "l_tea_and_coffee_in_dry_or_prepared_form",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_beverages"
                },
                {
                    "uuid": "c3ab5a69-c3a7-6ec3-9647-3ce28093e280",
                    "name": "l_alcoholic_beverages",
                    "label": "l_alcoholic_beverages",
                    "description": "l_alcoholic_drinks",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_beverages"
                }
            ],
            "l_grocery_ambient": [
                {
                    "uuid": "c2a360c3-9a4d-c3a3-c3a4-46c390c2bdc2",
                    "name": "l_salt_herbs_spices_yeast",
                    "label": "l_salt_herbs_spices_yeast",
                    "description": "l_salt,_herbs,_spices,_yeast",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_grocery_ambient"
                },
                {
                    "uuid": "43c38505-c391-03c2-bb45-c3ace280a6c3",
                    "name": "l_sauces_vinegars_mustards_salad_dressing_soy_sauces",
                    "label": "l_sauces_vinegars_mustards_salad_dressing_soy_sauces",
                    "description": "l_sauces,_vinegars,_mustards,_salad_dressing,_soy_sauces",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_grocery_ambient"
                },
                {
                    "uuid": "c2b54ce2-8094-c2a0-c2b0-0c47e28093e2",
                    "name": "l_soups_and_broths",
                    "label": "l_soups_and_broths",
                    "description": "l_soups_and_broths",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_grocery_ambient"
                },
                {
                    "uuid": "507bc2a4-6ac2-af4a-44c2-afc2a4c39b1e",
                    "name": "l_protein_products",
                    "label": "l_protein_products",
                    "description": "l_protein_products(not_including_veg_or_grain_products)",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_grocery_ambient"
                },
                {
                    "uuid": "435cc3a2-c2b1-c383-714b-2ae284a2015d",
                    "name": "l_fats_and_oils",
                    "label": "l_fats_and_oils",
                    "description": "l_fats_and_oils",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_grocery_ambient"
                },
                {
                    "uuid": "33c3aa2c-c385-2b2a-4ec3-a3c5be04c2ad",
                    "name": "l_ice_sorbet_and_sherbet",
                    "label": "l_ice_sorbet_and_sherbet",
                    "description": "l_ice,_sorbet_and_sherbet(not_including_dairy_ice_cream,_see_dairy)",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_grocery_ambient"
                },
                {
                    "uuid": "101a1ec2-af1b-c3b2-4233-c2b3c3b5e280",
                    "name": "l_confectionary",
                    "label": "l_confectionary",
                    "description": "l_confectionary(not_including_sweet_bakery_goods,_see_bakery)",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_grocery_ambient"
                },
                {
                    "uuid": "c3925bc3-bcc2-8d06-c397-435cc2a44f1b",
                    "name": "l_other_grocery",
                    "label": "l_other_grocery",
                    "description": "l_other_grocery",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_grocery_ambient"
                }
            ],
            "l_non_food": [
                {
                    "uuid": "c3896fc3-b8c3-9ac3-83c3-9f45c2b6e280",
                    "name": "l_non_food",
                    "label": "l_non_food",
                    "description": "l_non-food_items_related_to_food_donations",
                    "is_active": 1,
                    "created_at": "2019-10-31 07:33:52",
                    "updated_at": "2019-10-31 07:33:52",
                    "parent_label": "l_non_food"
                }
            ]
        },
        "recordsFiltered": 9,
        "recordsTotal": 54
    },
    "callTime": 0.01037907600402832
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

GET api/categories

Headers

AuthorizationToken      

Example: Bearer {token}

Get specific Category

requires authentication

This endpoint retrieves specified category.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/categories/5ce3a914-8a20-4e83-9e5a-059361de5d04" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/categories/5ce3a914-8a20-4e83-9e5a-059361de5d04"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/categories/5ce3a914-8a20-4e83-9e5a-059361de5d04';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/categories/5ce3a914-8a20-4e83-9e5a-059361de5d04'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "uuid": "e2809d69-c3a3-4155-c3b5-43c3afe28093",
        "name": "l_ambient_meat",
        "label": "l_ambient_meat",
        "description": "l_cuts_of_meat",
        "is_active": 1,
        "created_at": "2019-10-31 07:33:51",
        "updated_at": "2019-10-31 07:33:51"
    },
    "callTime": 0.0027418136596679688
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

GET api/categories/{id}

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

id   string   

The UUID of the category. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Get organisation default categories (admin only)

requires authentication

This endpoint retrieves all the organisation default categories.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/admin/organisation/default_categories" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/admin/organisation/default_categories"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/admin/organisation/default_categories';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/admin/organisation/default_categories'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        {
            "id": 11,
            "uuid": "60efbfbd-efbf-bdef-bfbd-efbfbdefbfbd",
            "name": "l_ambient_fish",
            "label": "l_ambient_fish",
            "description": "l_cuts_of_fish",
            "is_active": 1,
            "created_at": "2020-02-10 15:55:05",
            "updated_at": "2020-02-10 15:55:05"
        }
    ],
    "callTime": 0.04359316825866699
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

GET api/admin/organisation/default_categories

Headers

AuthorizationToken      

Example: Bearer {token}

Attach default categories to the organisation (admin only)

requires authentication

This endpoint is used to attach default categories to the organisation.

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/admin/organisation/default_categories" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"categories\": [
        \"architecto\"
    ]
}"
const url = new URL(
    "api-qa.foodiverse.net/api/admin/organisation/default_categories"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "categories": [
        "architecto"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/admin/organisation/default_categories';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'categories' => [
                'architecto',
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/admin/organisation/default_categories'
payload = {
    "categories": [
        "architecto"
    ]
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/admin/organisation/default_categories

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

categories   string[]   

An Array of categories to be attached to the organisation

Get organisation default categories

requires authentication

This endpoint retrieves all the organisation default categories.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/organisation/default_categories" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"return_order\": \"{url}?return_order=ASC|DESC\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/organisation/default_categories"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "return_order": "{url}?return_order=ASC|DESC"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/organisation/default_categories';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'return_order' => '{url}?return_order=ASC|DESC',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/organisation/default_categories'
payload = {
    "return_order": "{url}?return_order=ASC|DESC"
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('GET', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        {
            "id": 11,
            "uuid": "60efbfbd-efbf-bdef-bfbd-efbfbdefbfbd",
            "name": "l_ambient_fish",
            "label": "l_ambient_fish",
            "description": "l_cuts_of_fish",
            "is_active": 1,
            "created_at": "2020-02-10 15:55:05",
            "updated_at": "2020-02-10 15:55:05"
        }
    ],
    "callTime": 0.04359316825866699
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

GET api/organisation/default_categories

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

return_order   String  optional  

optional, default ASC. Example: {url}?return_order=ASC|DESC

Collection Windows

Get All Collection Windows for a Branch

requires authentication

This endpoint retrieves all branch's collection windows.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/collection_windows" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/collection_windows"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/collection_windows';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/collection_windows'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        {
            "uuid": "c2af254b-cb9c-66e2-809d-4cc2a7c28118",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 1,
            "day_of_week_end": 1,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        },
        {
            "uuid": "c396c2b5-2c27-c3a2-c385-41c2a1c2a56e",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 2,
            "day_of_week_end": 2,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        },
        {
            "uuid": "512369c3-be3b-5d4e-41e2-84a2094d17c2",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 3,
            "day_of_week_end": 3,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        },
        {
            "uuid": "75c2b0c2-a749-c281-c29d-431ee2809dc2",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 4,
            "day_of_week_end": 4,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        },
        {
            "uuid": "6a4ce280-993e-c382-674f-c2abc2a8c281",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 5,
            "day_of_week_end": 5,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        },
        {
            "uuid": "5cc2a7c3-a96d-c3a9-0d41-c3a5c2aa66c3",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 6,
            "day_of_week_end": 6,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        },
        {
            "uuid": "5b78c3b2-c394-e280-a2e2-84a243c2b2e2",
            "starts_at": "20:30:00",
            "ends_at": "21:30:00",
            "day_of_week_start": 7,
            "day_of_week_end": 7,
            "created_at": "2019-09-29 05:52:02",
            "updated_at": "2019-09-29 05:52:02",
            "max_collectors": 1,
            "difference_in_days": 0
        }
    ],
    "callTime": 0.004434108734130859
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

GET api/user/branches/{branch}/collection_windows

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

branch   string   

The UUID of the branch. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Donation Response

Get Donation Response

requires authentication

This endpoint retrieves specified Donation Response.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/donation_responses/5ce3a914-8a20-4e83-9e5a-059361de5d04" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/donation_responses/5ce3a914-8a20-4e83-9e5a-059361de5d04"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/donation_responses/5ce3a914-8a20-4e83-9e5a-059361de5d04';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/donation_responses/5ce3a914-8a20-4e83-9e5a-059361de5d04'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "uuid": "00000032-13bc-47d1-93e2-8583495cd796",
        "type": "P",
        "token": "10",
        "response_at": "2021-04-01 18:08:21",
        "created_at": "2021-04-01 18:07:43",
        "updated_at": "2021-04-01 18:08:21",
        "deleted_at": null,
        "tsm_current_state": "Rejected",
        "uncollected_reason": null,
        "accepted_at": null,
        "declined_at": "2021-04-01 18:08:21",
        "transferred_at": null,
        "not_transferred_at": null,
        "category_summary": [
            {
                "category": "l_bakery",
                "quantity": 1,
                "uom": "Crate",
                "estimated_weight": 0,
                "actual_weight": 0,
                "estimated_price": 0,
                "actual_price": 0
            },
            {
                "category": "l_fruit_veg",
                "quantity": 1,
                "uom": "Crate",
                "estimated_weight": 0,
                "actual_weight": 0,
                "estimated_price": 0,
                "actual_price": 0
            }
        ],
        "tsm_current_state_label": "rejected",
        "donation_images": [],
        "charity_branch": {
            "uuid": "2d0e0e00-5af0-4401-823e-04e19fe3a3e7",
            "name": "The Nest",
            "countries_id": 2635167,
            "provinces_id": 6269131,
            "counties_id": 2651079,
            "official_id": "FS:0011p00002lzQdQAAU",
            "address_1": "Abbotsbury Road",
            "address_2": "",
            "city_town": "",
            "post_code": "DT4 0JX",
            "phone": "+447724285851",
            "latitude": "50.61114100",
            "longitude": "-2.46985500",
            "timezone": "Europe/Dublin",
            "locale": "en_IE",
            "is_active": 1,
            "is_foodboard_allowed": 1,
            "esign": 0,
            "send_daily_donations_reminders": false,
            "send_instant_donations_reminders": false,
            "offers_token_counter": 0,
            "created_at": "2020-11-13T09:14:18.000000Z",
            "updated_at": "2021-06-28T18:10:06.000000Z",
            "deleted_at": null,
            "in_line_address": "Abbotsbury Road, DT4 0JX, Dorset, England, United Kingdom",
            "storage_types": [
                {
                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                    "name": "l_ambient",
                    "label": "l_ambient",
                    "is_active": 1,
                    "created_at": "2021-03-15T00:26:32.000000Z",
                    "updated_at": "2021-03-15T00:26:32.000000Z"
                }
            ],
            "county": {
                "id": 2651079,
                "countries_id": 2635167,
                "provinces_id": 6269131,
                "name": "Dorset",
                "latitude": 50.75,
                "longitude": -2.33333,
                "created_at": "2021-03-15T00:26:10.000000Z",
                "updated_at": "2021-03-15T00:26:10.000000Z",
                "deleted_at": null
            },
            "province": {
                "id": 6269131,
                "countries_id": 2635167,
                "name": "England",
                "latitude": 52.16045,
                "longitude": -0.70312,
                "created_at": "2021-03-15T00:26:09.000000Z",
                "updated_at": "2021-03-15T00:26:09.000000Z",
                "deleted_at": null
            },
            "country": {
                "id": 2635167,
                "name": "United Kingdom",
                "latitude": 54.75844,
                "longitude": -2.69531,
                "code": "GB",
                "created_at": "2021-03-15T00:26:09.000000Z",
                "updated_at": "2021-03-15T00:26:09.000000Z",
                "deleted_at": null
            }
        },
        "charity_membership": {
            "uuid": "88721bef-ea47-4e97-996d-1592c301db5c",
            "tsm_current_state": "Activated",
            "created_at": "2021-03-15T01:08:32.000000Z",
            "updated_at": "2021-12-17T21:19:24.000000Z",
            "cancellation_requested": 0,
            "laravel_through_key": 5151770,
            "tsm_current_state_label": "activated",
            "storage_types": [
                {
                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                    "name": "l_ambient",
                    "label": "l_ambient",
                    "is_active": 1,
                    "created_at": "2021-03-15T00:26:32.000000Z",
                    "updated_at": "2021-03-15T00:26:32.000000Z"
                }
            ]
        },
        "items": [
            {
                "is_available": 1,
                "created_at": "2021-04-01T18:07:43.000000Z",
                "updated_at": "2021-04-01T18:07:43.000000Z",
                "deleted_at": null,
                "donation_item": {
                    "quantity": 1,
                    "unit_of_measure": "Crate",
                    "unit_of_measure_co2e": 3.2,
                    "unit_of_measure_kg": 6.5,
                    "meals_per_kg": 2.381,
                    "created_at": "2021-04-01T18:03:40.000000Z",
                    "updated_at": "2021-04-01T18:03:40.000000Z",
                    "deleted_at": null,
                    "total_co2e": 20.8,
                    "total_kg": 6.5,
                    "total_meals": 15.476499999999998,
                    "total_price": null,
                    "estimated_total_co2e": null,
                    "estimated_total_kg": null,
                    "estimated_total_meals": null,
                    "estimated_total_price": null,
                    "actual_total_co2e": null,
                    "actual_total_kg": null,
                    "actual_total_meals": null,
                    "actual_total_price": null,
                    "is_available": 1,
                    "is_extra": 0,
                    "is_breached": 0,
                    "product_level_descriptions": [],
                    "category": {
                        "uuid": "dbab4052-6a5a-4db5-be49-0122bca76183",
                        "name": "l_bread_and_bread_products",
                        "label": "l_bread_and_bread_products",
                        "description": "l_products_containing_mostly_bread",
                        "is_active": 1,
                        "created_at": "2021-03-15T00:26:32.000000Z",
                        "updated_at": "2021-03-15T00:26:32.000000Z"
                    }
                }
            },
            {
                "is_available": 1,
                "created_at": "2021-04-01T18:07:43.000000Z",
                "updated_at": "2021-04-01T18:07:43.000000Z",
                "deleted_at": null,
                "donation_item": {
                    "quantity": 1,
                    "unit_of_measure": "Crate",
                    "unit_of_measure_co2e": 3.2,
                    "unit_of_measure_kg": 6.5,
                    "meals_per_kg": 2.381,
                    "created_at": "2021-04-01T18:03:40.000000Z",
                    "updated_at": "2021-04-01T18:03:40.000000Z",
                    "deleted_at": null,
                    "total_co2e": 20.8,
                    "total_kg": 6.5,
                    "total_meals": 15.476499999999998,
                    "total_price": null,
                    "estimated_total_co2e": null,
                    "estimated_total_kg": null,
                    "estimated_total_meals": null,
                    "estimated_total_price": null,
                    "actual_total_co2e": null,
                    "actual_total_kg": null,
                    "actual_total_meals": null,
                    "actual_total_price": null,
                    "is_available": 1,
                    "is_extra": 0,
                    "is_breached": 0,
                    "product_level_descriptions": [],
                    "category": {
                        "uuid": "750a9375-9fb1-437d-bd5e-1b11dce297c1",
                        "name": "l_fresh_veg",
                        "label": "l_fresh_veg",
                        "description": "l_fresh_vegetables",
                        "is_active": 1,
                        "created_at": "2021-03-15T00:26:32.000000Z",
                        "updated_at": "2021-03-15T00:26:32.000000Z"
                    }
                }
            }
        ],
        "donation": {
            "uuid": "0808a2c9-371f-4ef9-8bf7-9bf8ef8c09f6",
            "external_id": "9317b483-7d30-4fc7-9896-5b0eaecc2e1d",
            "is_max_collectors_reached": null,
            "received_at": "2021-04-01 18:03:40",
            "created_at": "2021-04-01 18:03:40",
            "updated_at": "2021-04-01 20:00:08",
            "deleted_at": null,
            "accepted_by": "2021-04-01 20:00:00",
            "collect_by": null,
            "primary_available_at": "2021-04-01 18:00:00",
            "waitlist_available_at": null,
            "foodboard_available_at": "2021-04-01 18:08:21",
            "donation_window_start_at": "2021-04-01 18:00:00",
            "donation_window_end_at": "2021-04-01 18:30:00",
            "tsm_current_state": "Ended",
            "require_friends": 1,
            "rag_status": 2,
            "all_items_taken": 0,
            "esign": 0,
            "tsm_current_state_label": "ended",
            "donor": {
                "uuid": "25fcf6f9-dbf1-4030-9949-3e5c5361cc49",
                "name": "Little Waitrose Poundbury",
                "countries_id": 2635167,
                "provinces_id": 6269131,
                "counties_id": 2651079,
                "official_id": "WAITROSE:733",
                "address_1": "Poundbury, Queen Mother Square, Poundbury, Dorchester",
                "address_2": "",
                "city_town": "Not Available",
                "post_code": "DT1 3BW",
                "phone": "+447400123760",
                "latitude": "50.71532390",
                "longitude": "-2.46895310",
                "timezone": "Europe/London",
                "locale": "en_IE",
                "is_active": 1,
                "is_foodboard_allowed": 1,
                "esign": 0,
                "send_daily_donations_reminders": false,
                "send_instant_donations_reminders": false,
                "offers_token_counter": 0,
                "created_at": "2020-10-15T15:06:10.000000Z",
                "updated_at": "2022-01-25T10:49:23.000000Z",
                "deleted_at": null,
                "in_line_address": "Poundbury, Queen Mother Square, Poundbury, Dorchester, Not Available DT1 3BW, Dorset, England, United Kingdom",
                "organisation": {
                    "uuid": "7373f661-1583-4f17-a4cf-930099d7ae15",
                    "name": "Waitrose UK",
                    "countries_id": 2635167,
                    "provinces_id": null,
                    "counties_id": null,
                    "official_id": null,
                    "accept_by_offset": 40,
                    "phone": null,
                    "address_1": "No Address Available In Migration",
                    "address_2": "",
                    "city_town": "",
                    "post_code": "MIG N0A",
                    "latitude": "0.00000000",
                    "longitude": "0.00000000",
                    "description": null,
                    "food_safety_info": null,
                    "is_active": true,
                    "is_friend_group": 1,
                    "created_at": "2017-03-01T11:34:26.000000Z",
                    "updated_at": "2022-05-23T11:12:23.000000Z",
                    "deleted_at": null,
                    "in_line_address": "No Address Available In Migration, MIG N0A, United Kingdom",
                    "county": null,
                    "province": null,
                    "country": {
                        "id": 2635167,
                        "name": "United Kingdom",
                        "latitude": 54.75844,
                        "longitude": -2.69531,
                        "code": "GB",
                        "created_at": "2021-03-15T00:26:09.000000Z",
                        "updated_at": "2021-03-15T00:26:09.000000Z",
                        "deleted_at": null
                    }
                },
                "county": {
                    "id": 2651079,
                    "countries_id": 2635167,
                    "provinces_id": 6269131,
                    "name": "Dorset",
                    "latitude": 50.75,
                    "longitude": -2.33333,
                    "created_at": "2021-03-15T00:26:10.000000Z",
                    "updated_at": "2021-03-15T00:26:10.000000Z",
                    "deleted_at": null
                },
                "province": {
                    "id": 6269131,
                    "countries_id": 2635167,
                    "name": "England",
                    "latitude": 52.16045,
                    "longitude": -0.70312,
                    "created_at": "2021-03-15T00:26:09.000000Z",
                    "updated_at": "2021-03-15T00:26:09.000000Z",
                    "deleted_at": null
                },
                "country": {
                    "id": 2635167,
                    "name": "United Kingdom",
                    "latitude": 54.75844,
                    "longitude": -2.69531,
                    "code": "GB",
                    "created_at": "2021-03-15T00:26:09.000000Z",
                    "updated_at": "2021-03-15T00:26:09.000000Z",
                    "deleted_at": null
                }
            },
            "network": {
                "uuid": "7a6d523b-22e7-4856-b4ad-2da72a478a69",
                "description": "FareShare | Fighting hunger, tackling food waste in the UK",
                "max_donation_volume_kg": 30000,
                "donation_interval": 30,
                "requirements": "FareShare | Fighting hunger, tackling food waste in the UK",
                "default_co2e": null,
                "default_meals_per_kg": null,
                "silence_collection_window_invitation_notifications": 1,
                "silence_network_membership_notifications": null,
                "created_at": "2021-03-15T01:07:38.000000Z",
                "updated_at": "2021-03-26T17:53:22.000000Z",
                "deleted_at": null,
                "is_public": false,
                "organisation": {
                    "uuid": "fbfe1124-ac4e-4fcb-bd43-ed6b3035506c",
                    "name": "FareShare UK",
                    "countries_id": 2635167,
                    "provinces_id": 6269131,
                    "counties_id": 2648110,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "phone": "+442073942468",
                    "address_1": "Unit 7 Deptford Trading Estate",
                    "address_2": "Blackhorse Road",
                    "city_town": "London",
                    "post_code": "SE8 5HY",
                    "latitude": "51.48429100",
                    "longitude": "-0.03901200",
                    "description": "FareShare is the UK’s national network of charitable food redistributors, made up of 18 independent organisations. Together, we take good quality surplus food from right across the food industry and get it to almost 11,000 frontline charities and community groups.",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_friend_group": 0,
                    "created_at": "2019-07-17T13:42:10.000000Z",
                    "updated_at": "2021-07-21T12:38:39.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 7 Deptford Trading Estate, Blackhorse Road, London SE8 5HY, Greater London, England, United Kingdom",
                    "county": {
                        "id": 2648110,
                        "countries_id": 2635167,
                        "provinces_id": 6269131,
                        "name": "Greater London",
                        "latitude": 51.5,
                        "longitude": -0.16667,
                        "created_at": "2021-03-15T00:26:10.000000Z",
                        "updated_at": "2021-03-15T00:26:10.000000Z",
                        "deleted_at": null
                    },
                    "province": {
                        "id": 6269131,
                        "countries_id": 2635167,
                        "name": "England",
                        "latitude": 52.16045,
                        "longitude": -0.70312,
                        "created_at": "2021-03-15T00:26:09.000000Z",
                        "updated_at": "2021-03-15T00:26:09.000000Z",
                        "deleted_at": null
                    },
                    "country": {
                        "id": 2635167,
                        "name": "United Kingdom",
                        "latitude": 54.75844,
                        "longitude": -2.69531,
                        "code": "GB",
                        "created_at": "2021-03-15T00:26:09.000000Z",
                        "updated_at": "2021-03-15T00:26:09.000000Z",
                        "deleted_at": null
                    }
                }
            }
        }
    },
    "frontendRedirect": false,
    "callTime": 0.08298206329345703
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Invalid UUID string: 00000032-13bc-47d1-93e2-8583495cd796"
    ],
    "frontendRedirect": false,
    "callTime": 0.017800092697143555
}
 

Request      

GET api/donation_responses/{uuid}

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

uuid   string   

The UUID of the donation response. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Donation Record PDF

requires authentication

To download the donation record in PDF format The locale in pdf is decided by donation response associated branch locale.

The request rate limit is set to 50/ min per user fixed!

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/donation_responses/5ce3a914-8a20-4e83-9e5a-059361de5d04/download" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/donation_responses/5ce3a914-8a20-4e83-9e5a-059361de5d04/download"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/donation_responses/5ce3a914-8a20-4e83-9e5a-059361de5d04/download';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/donation_responses/5ce3a914-8a20-4e83-9e5a-059361de5d04/download'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "uuid": "00000032-13bc-47d1-93e2-8583495cd796",
        "type": "P",
        "token": "10",
        "response_at": "2021-04-01 18:08:21",
        "created_at": "2021-04-01 18:07:43",
        "updated_at": "2021-04-01 18:08:21",
        "deleted_at": null,
        "tsm_current_state": "Rejected",
        "uncollected_reason": null,
        "accepted_at": null,
        "declined_at": "2021-04-01 18:08:21",
        "transferred_at": null,
        "not_transferred_at": null,
        "category_summary": [
            {
                "category": "l_bakery",
                "quantity": 1,
                "uom": "Crate",
                "estimated_weight": 0,
                "actual_weight": 0,
                "estimated_price": 0,
                "actual_price": 0
            },
            {
                "category": "l_fruit_veg",
                "quantity": 1,
                "uom": "Crate",
                "estimated_weight": 0,
                "actual_weight": 0,
                "estimated_price": 0,
                "actual_price": 0
            }
        ],
        "tsm_current_state_label": "rejected",
        "donation_images": [],
        "charity_branch": {
            "uuid": "2d0e0e00-5af0-4401-823e-04e19fe3a3e7",
            "name": "The Nest",
            "countries_id": 2635167,
            "provinces_id": 6269131,
            "counties_id": 2651079,
            "official_id": "FS:0011p00002lzQdQAAU",
            "address_1": "Abbotsbury Road",
            "address_2": "",
            "city_town": "",
            "post_code": "DT4 0JX",
            "phone": "+447724285851",
            "latitude": "50.61114100",
            "longitude": "-2.46985500",
            "timezone": "Europe/Dublin",
            "locale": "en_IE",
            "is_active": 1,
            "is_foodboard_allowed": 1,
            "esign": 0,
            "send_daily_donations_reminders": false,
            "send_instant_donations_reminders": false,
            "offers_token_counter": 0,
            "created_at": "2020-11-13T09:14:18.000000Z",
            "updated_at": "2021-06-28T18:10:06.000000Z",
            "deleted_at": null,
            "in_line_address": "Abbotsbury Road, DT4 0JX, Dorset, England, United Kingdom",
            "storage_types": [
                {
                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                    "name": "l_ambient",
                    "label": "l_ambient",
                    "is_active": 1,
                    "created_at": "2021-03-15T00:26:32.000000Z",
                    "updated_at": "2021-03-15T00:26:32.000000Z"
                }
            ],
            "county": {
                "id": 2651079,
                "countries_id": 2635167,
                "provinces_id": 6269131,
                "name": "Dorset",
                "latitude": 50.75,
                "longitude": -2.33333,
                "created_at": "2021-03-15T00:26:10.000000Z",
                "updated_at": "2021-03-15T00:26:10.000000Z",
                "deleted_at": null
            },
            "province": {
                "id": 6269131,
                "countries_id": 2635167,
                "name": "England",
                "latitude": 52.16045,
                "longitude": -0.70312,
                "created_at": "2021-03-15T00:26:09.000000Z",
                "updated_at": "2021-03-15T00:26:09.000000Z",
                "deleted_at": null
            },
            "country": {
                "id": 2635167,
                "name": "United Kingdom",
                "latitude": 54.75844,
                "longitude": -2.69531,
                "code": "GB",
                "created_at": "2021-03-15T00:26:09.000000Z",
                "updated_at": "2021-03-15T00:26:09.000000Z",
                "deleted_at": null
            }
        },
        "charity_membership": {
            "uuid": "88721bef-ea47-4e97-996d-1592c301db5c",
            "tsm_current_state": "Activated",
            "created_at": "2021-03-15T01:08:32.000000Z",
            "updated_at": "2021-12-17T21:19:24.000000Z",
            "cancellation_requested": 0,
            "laravel_through_key": 5151770,
            "tsm_current_state_label": "activated",
            "storage_types": [
                {
                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                    "name": "l_ambient",
                    "label": "l_ambient",
                    "is_active": 1,
                    "created_at": "2021-03-15T00:26:32.000000Z",
                    "updated_at": "2021-03-15T00:26:32.000000Z"
                }
            ]
        },
        "items": [
            {
                "is_available": 1,
                "created_at": "2021-04-01T18:07:43.000000Z",
                "updated_at": "2021-04-01T18:07:43.000000Z",
                "deleted_at": null,
                "donation_item": {
                    "quantity": 1,
                    "unit_of_measure": "Crate",
                    "unit_of_measure_co2e": 3.2,
                    "unit_of_measure_kg": 6.5,
                    "meals_per_kg": 2.381,
                    "created_at": "2021-04-01T18:03:40.000000Z",
                    "updated_at": "2021-04-01T18:03:40.000000Z",
                    "deleted_at": null,
                    "total_co2e": 20.8,
                    "total_kg": 6.5,
                    "total_meals": 15.476499999999998,
                    "total_price": null,
                    "estimated_total_co2e": null,
                    "estimated_total_kg": null,
                    "estimated_total_meals": null,
                    "estimated_total_price": null,
                    "actual_total_co2e": null,
                    "actual_total_kg": null,
                    "actual_total_meals": null,
                    "actual_total_price": null,
                    "is_available": 1,
                    "is_extra": 0,
                    "is_breached": 0,
                    "product_level_descriptions": [],
                    "category": {
                        "uuid": "dbab4052-6a5a-4db5-be49-0122bca76183",
                        "name": "l_bread_and_bread_products",
                        "label": "l_bread_and_bread_products",
                        "description": "l_products_containing_mostly_bread",
                        "is_active": 1,
                        "created_at": "2021-03-15T00:26:32.000000Z",
                        "updated_at": "2021-03-15T00:26:32.000000Z"
                    }
                }
            },
            {
                "is_available": 1,
                "created_at": "2021-04-01T18:07:43.000000Z",
                "updated_at": "2021-04-01T18:07:43.000000Z",
                "deleted_at": null,
                "donation_item": {
                    "quantity": 1,
                    "unit_of_measure": "Crate",
                    "unit_of_measure_co2e": 3.2,
                    "unit_of_measure_kg": 6.5,
                    "meals_per_kg": 2.381,
                    "created_at": "2021-04-01T18:03:40.000000Z",
                    "updated_at": "2021-04-01T18:03:40.000000Z",
                    "deleted_at": null,
                    "total_co2e": 20.8,
                    "total_kg": 6.5,
                    "total_meals": 15.476499999999998,
                    "total_price": null,
                    "estimated_total_co2e": null,
                    "estimated_total_kg": null,
                    "estimated_total_meals": null,
                    "estimated_total_price": null,
                    "actual_total_co2e": null,
                    "actual_total_kg": null,
                    "actual_total_meals": null,
                    "actual_total_price": null,
                    "is_available": 1,
                    "is_extra": 0,
                    "is_breached": 0,
                    "product_level_descriptions": [],
                    "category": {
                        "uuid": "750a9375-9fb1-437d-bd5e-1b11dce297c1",
                        "name": "l_fresh_veg",
                        "label": "l_fresh_veg",
                        "description": "l_fresh_vegetables",
                        "is_active": 1,
                        "created_at": "2021-03-15T00:26:32.000000Z",
                        "updated_at": "2021-03-15T00:26:32.000000Z"
                    }
                }
            }
        ],
        "donation": {
            "uuid": "0808a2c9-371f-4ef9-8bf7-9bf8ef8c09f6",
            "external_id": "9317b483-7d30-4fc7-9896-5b0eaecc2e1d",
            "is_max_collectors_reached": null,
            "received_at": "2021-04-01 18:03:40",
            "created_at": "2021-04-01 18:03:40",
            "updated_at": "2021-04-01 20:00:08",
            "deleted_at": null,
            "accepted_by": "2021-04-01 20:00:00",
            "collect_by": null,
            "primary_available_at": "2021-04-01 18:00:00",
            "waitlist_available_at": null,
            "foodboard_available_at": "2021-04-01 18:08:21",
            "donation_window_start_at": "2021-04-01 18:00:00",
            "donation_window_end_at": "2021-04-01 18:30:00",
            "tsm_current_state": "Ended",
            "require_friends": 1,
            "rag_status": 2,
            "all_items_taken": 0,
            "esign": 0,
            "tsm_current_state_label": "ended",
            "donor": {
                "uuid": "25fcf6f9-dbf1-4030-9949-3e5c5361cc49",
                "name": "Little Waitrose Poundbury",
                "countries_id": 2635167,
                "provinces_id": 6269131,
                "counties_id": 2651079,
                "official_id": "WAITROSE:733",
                "address_1": "Poundbury, Queen Mother Square, Poundbury, Dorchester",
                "address_2": "",
                "city_town": "Not Available",
                "post_code": "DT1 3BW",
                "phone": "+447400123760",
                "latitude": "50.71532390",
                "longitude": "-2.46895310",
                "timezone": "Europe/London",
                "locale": "en_IE",
                "is_active": 1,
                "is_foodboard_allowed": 1,
                "esign": 0,
                "send_daily_donations_reminders": false,
                "send_instant_donations_reminders": false,
                "offers_token_counter": 0,
                "created_at": "2020-10-15T15:06:10.000000Z",
                "updated_at": "2022-01-25T10:49:23.000000Z",
                "deleted_at": null,
                "in_line_address": "Poundbury, Queen Mother Square, Poundbury, Dorchester, Not Available DT1 3BW, Dorset, England, United Kingdom",
                "organisation": {
                    "uuid": "7373f661-1583-4f17-a4cf-930099d7ae15",
                    "name": "Waitrose UK",
                    "countries_id": 2635167,
                    "provinces_id": null,
                    "counties_id": null,
                    "official_id": null,
                    "accept_by_offset": 40,
                    "phone": null,
                    "address_1": "No Address Available In Migration",
                    "address_2": "",
                    "city_town": "",
                    "post_code": "MIG N0A",
                    "latitude": "0.00000000",
                    "longitude": "0.00000000",
                    "description": null,
                    "food_safety_info": null,
                    "is_active": true,
                    "is_friend_group": 1,
                    "created_at": "2017-03-01T11:34:26.000000Z",
                    "updated_at": "2022-05-23T11:12:23.000000Z",
                    "deleted_at": null,
                    "in_line_address": "No Address Available In Migration, MIG N0A, United Kingdom",
                    "county": null,
                    "province": null,
                    "country": {
                        "id": 2635167,
                        "name": "United Kingdom",
                        "latitude": 54.75844,
                        "longitude": -2.69531,
                        "code": "GB",
                        "created_at": "2021-03-15T00:26:09.000000Z",
                        "updated_at": "2021-03-15T00:26:09.000000Z",
                        "deleted_at": null
                    }
                },
                "county": {
                    "id": 2651079,
                    "countries_id": 2635167,
                    "provinces_id": 6269131,
                    "name": "Dorset",
                    "latitude": 50.75,
                    "longitude": -2.33333,
                    "created_at": "2021-03-15T00:26:10.000000Z",
                    "updated_at": "2021-03-15T00:26:10.000000Z",
                    "deleted_at": null
                },
                "province": {
                    "id": 6269131,
                    "countries_id": 2635167,
                    "name": "England",
                    "latitude": 52.16045,
                    "longitude": -0.70312,
                    "created_at": "2021-03-15T00:26:09.000000Z",
                    "updated_at": "2021-03-15T00:26:09.000000Z",
                    "deleted_at": null
                },
                "country": {
                    "id": 2635167,
                    "name": "United Kingdom",
                    "latitude": 54.75844,
                    "longitude": -2.69531,
                    "code": "GB",
                    "created_at": "2021-03-15T00:26:09.000000Z",
                    "updated_at": "2021-03-15T00:26:09.000000Z",
                    "deleted_at": null
                }
            },
            "network": {
                "uuid": "7a6d523b-22e7-4856-b4ad-2da72a478a69",
                "description": "FareShare | Fighting hunger, tackling food waste in the UK",
                "max_donation_volume_kg": 30000,
                "donation_interval": 30,
                "requirements": "FareShare | Fighting hunger, tackling food waste in the UK",
                "default_co2e": null,
                "default_meals_per_kg": null,
                "silence_collection_window_invitation_notifications": 1,
                "silence_network_membership_notifications": null,
                "created_at": "2021-03-15T01:07:38.000000Z",
                "updated_at": "2021-03-26T17:53:22.000000Z",
                "deleted_at": null,
                "is_public": false,
                "organisation": {
                    "uuid": "fbfe1124-ac4e-4fcb-bd43-ed6b3035506c",
                    "name": "FareShare UK",
                    "countries_id": 2635167,
                    "provinces_id": 6269131,
                    "counties_id": 2648110,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "phone": "+442073942468",
                    "address_1": "Unit 7 Deptford Trading Estate",
                    "address_2": "Blackhorse Road",
                    "city_town": "London",
                    "post_code": "SE8 5HY",
                    "latitude": "51.48429100",
                    "longitude": "-0.03901200",
                    "description": "FareShare is the UK’s national network of charitable food redistributors, made up of 18 independent organisations. Together, we take good quality surplus food from right across the food industry and get it to almost 11,000 frontline charities and community groups.",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_friend_group": 0,
                    "created_at": "2019-07-17T13:42:10.000000Z",
                    "updated_at": "2021-07-21T12:38:39.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 7 Deptford Trading Estate, Blackhorse Road, London SE8 5HY, Greater London, England, United Kingdom",
                    "county": {
                        "id": 2648110,
                        "countries_id": 2635167,
                        "provinces_id": 6269131,
                        "name": "Greater London",
                        "latitude": 51.5,
                        "longitude": -0.16667,
                        "created_at": "2021-03-15T00:26:10.000000Z",
                        "updated_at": "2021-03-15T00:26:10.000000Z",
                        "deleted_at": null
                    },
                    "province": {
                        "id": 6269131,
                        "countries_id": 2635167,
                        "name": "England",
                        "latitude": 52.16045,
                        "longitude": -0.70312,
                        "created_at": "2021-03-15T00:26:09.000000Z",
                        "updated_at": "2021-03-15T00:26:09.000000Z",
                        "deleted_at": null
                    },
                    "country": {
                        "id": 2635167,
                        "name": "United Kingdom",
                        "latitude": 54.75844,
                        "longitude": -2.69531,
                        "code": "GB",
                        "created_at": "2021-03-15T00:26:09.000000Z",
                        "updated_at": "2021-03-15T00:26:09.000000Z",
                        "deleted_at": null
                    }
                }
            }
        }
    },
    "frontendRedirect": false,
    "callTime": 0.08298206329345703
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Invalid UUID string: 00000032-13bc-47d1-93e2-8583495cd796"
    ],
    "frontendRedirect": false,
    "callTime": 0.017800092697143555
}
 

Request      

GET api/donation_responses/{uuid}/download

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

uuid   string   

The UUID of the donation response. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Donation Windows

Get All Donation Windows for a Branch

requires authentication

This endpoint retrieves all branch's donation windows.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/donation_windows" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/donation_windows"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/donation_windows';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/donation_windows'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        {
            "uuid": "72c2ae39-2be2-84a2-064b-c381e280b92c",
            "starts_at": "10:00:00",
            "ends_at": "10:59:00",
            "day_of_week": 1,
            "created_at": "2019-09-29 05:52:50",
            "updated_at": "2019-09-29 05:52:50"
        },
        {
            "uuid": "c391c380-46c3-95c2-b7c5-a04cc2afc2af",
            "starts_at": "10:00:00",
            "ends_at": "10:59:00",
            "day_of_week": 2,
            "created_at": "2019-09-29 05:52:50",
            "updated_at": "2019-09-29 05:52:50"
        },
        {
            "uuid": "4014c380-e280-9a27-7f48-c3b7e2809dc3",
            "starts_at": "10:00:00",
            "ends_at": "10:59:00",
            "day_of_week": 3,
            "created_at": "2019-09-29 05:52:50",
            "updated_at": "2019-09-29 05:52:50"
        },
        {
            "uuid": "c2b1c3a4-c385-c3a9-c2b4-c3bf4c0bc2b2",
            "starts_at": "10:00:00",
            "ends_at": "10:59:00",
            "day_of_week": 4,
            "created_at": "2019-09-29 05:52:50",
            "updated_at": "2019-09-29 05:52:50"
        },
        {
            "uuid": "c2a6e280-9ce2-80a1-c2b2-c3b0134e2fe2",
            "starts_at": "10:00:00",
            "ends_at": "10:59:00",
            "day_of_week": 5,
            "created_at": "2019-09-29 05:52:50",
            "updated_at": "2019-09-29 05:52:50"
        }
    ],
    "callTime": 0.007502079010009766
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

GET api/user/branches/{branch}/donation_windows

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

branch   string   

The UUID of the branch. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Donations

Donation Manual Assignment

requires authentication

This endpoint manually assign donation to a charity

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/donations/manual_assignment" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"donation_uuid\": \"a1eb5c82-7511-41de-b0d9-8ad20b1c2b46\",
    \"charity_branch_uuid\": \"a1eb5c82-7511-41de-b0d9-8ad20b1c2b46\",
    \"collection_window_uuid\": \"a1eb5c82-7511-41de-b0d9-8ad20b1c2b46\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/donations/manual_assignment"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "donation_uuid": "a1eb5c82-7511-41de-b0d9-8ad20b1c2b46",
    "charity_branch_uuid": "a1eb5c82-7511-41de-b0d9-8ad20b1c2b46",
    "collection_window_uuid": "a1eb5c82-7511-41de-b0d9-8ad20b1c2b46"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/donations/manual_assignment';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'donation_uuid' => 'a1eb5c82-7511-41de-b0d9-8ad20b1c2b46',
            'charity_branch_uuid' => 'a1eb5c82-7511-41de-b0d9-8ad20b1c2b46',
            'collection_window_uuid' => 'a1eb5c82-7511-41de-b0d9-8ad20b1c2b46',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/donations/manual_assignment'
payload = {
    "donation_uuid": "a1eb5c82-7511-41de-b0d9-8ad20b1c2b46",
    "charity_branch_uuid": "a1eb5c82-7511-41de-b0d9-8ad20b1c2b46",
    "collection_window_uuid": "a1eb5c82-7511-41de-b0d9-8ad20b1c2b46"
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/donations/manual_assignment

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

donation_uuid   uuid   

donation UUID. Example: a1eb5c82-7511-41de-b0d9-8ad20b1c2b46

charity_branch_uuid   uuid   

charity branch UUID. Example: a1eb5c82-7511-41de-b0d9-8ad20b1c2b46

collection_window_uuid   uuid   

donation collection window UUID. Example: a1eb5c82-7511-41de-b0d9-8ad20b1c2b46

Get donations for Network Membership

requires authentication

This endpoint retrieves donation associated with a Network Membership.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/donations" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/donations"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/donations';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/donations'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "data": [
            {
                "external_id": "96ff536a-ca2d-4ff6-bc22-5f6a4a9e1b3c",
                "donation_date": "2022-08-11",
                "donation_time": "16:00",
                "donation_uuid": "75304d54-e150-47ff-a7da-e286c248d6dc",
                "ambient_total": 0,
                "chilled_total": 0,
                "frozen_total": 0,
                "hot_total": 0,
                "total": 0,
                "rag_status_color": "black",
                "rag_status_label": "l_no_posting",
                "created_at": "2022-08-11 16:00:03",
                "tsm_current_state": "No Posting",
                "accepted_by": null,
                "responses": [],
                "transitions": {
                    "received": {
                        "color": "outline-warning",
                        "icon": "fas fa-box",
                        "name": "Received",
                        "context": "donor"
                    }
                },
                "status_style": {
                    "color": "black",
                    "icon": "fas fa-exclamation-circle"
                },
                "tsm_current_state_label": "no_posting",
                "donor": {
                    "uuid": "9fbcb807-c331-4417-8691-7e202c95bd23",
                    "name": "Little Extra Grocer IOFN 1.5",
                    "countries_id": 2963597,
                    "provinces_id": 7521316,
                    "counties_id": 2964751,
                    "official_id": "LEG:2225",
                    "address_1": "36 Main Street",
                    "address_2": "District A4",
                    "city_town": "Bundoran",
                    "post_code": "F94 YHR6",
                    "phone": null,
                    "latitude": "54.91667000",
                    "longitude": "-8.00000000",
                    "timezone": "Europe/Dublin",
                    "locale": "en_IE",
                    "is_active": 1,
                    "is_foodboard_allowed": 1,
                    "esign": 0,
                    "send_daily_donations_reminders": false,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "created_at": "2022-08-11T08:48:59.000000Z",
                    "updated_at": "2022-08-11T08:48:59.000000Z",
                    "deleted_at": null,
                    "in_line_address": "36 Main Street, District A4, Bundoran F94 YHR6, Co. Donegal, Ulster, Ireland",
                    "local_admins": [
                        {
                            "uuid": "bef8dcdb-ac18-4425-b4b8-4772ec082ffe",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "email_verified_at": "2022-08-11T08:49:01.000000Z",
                            "activation_key": null,
                            "restoration_key": null,
                            "is_active": 1,
                            "failed_logins": 0,
                            "is_organisation_admin": 1,
                            "one_signal_id": null,
                            "created_at": "2022-08-11T08:49:01.000000Z",
                            "updated_at": "2022-08-11T08:49:01.000000Z",
                            "deleted_at": null,
                            "full_name": "Catherine Delaney",
                            "role": "admin",
                            "organisation": {
                                "uuid": "4fde3f5b-eadd-4fe9-9844-5e2a405ada13",
                                "name": "Little Extra Grocer Group",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": "MRTDonorOrg",
                                "accept_by_offset": 30,
                                "phone": null,
                                "address_1": "Test Address Line 1",
                                "address_2": "Test Address Line 2",
                                "city_town": "Dublin",
                                "post_code": "FV12345",
                                "latitude": "53.35512000",
                                "longitude": "-6.24922000",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_friend_group": 0,
                                "created_at": "2022-08-11T08:48:59.000000Z",
                                "updated_at": "2022-08-11T08:48:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Test Address Line 1, Test Address Line 2, Dublin FV12345, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922,
                                    "created_at": "2022-07-27T13:30:57.000000Z",
                                    "updated_at": "2022-07-27T13:30:57.000000Z",
                                    "deleted_at": null
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121,
                                    "created_at": "2022-07-27T13:30:57.000000Z",
                                    "updated_at": "2022-07-27T13:30:57.000000Z",
                                    "deleted_at": null
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE",
                                    "created_at": "2022-07-27T13:30:57.000000Z",
                                    "updated_at": "2022-07-27T13:30:57.000000Z",
                                    "deleted_at": null
                                }
                            }
                        },
                        {
                            "uuid": "d71f399a-bb6c-48b3-82ab-716551c60df8",
                            "first_name": "Org",
                            "surname": "Admin",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "email_verified_at": "2022-08-11T08:49:01.000000Z",
                            "activation_key": null,
                            "restoration_key": null,
                            "is_active": 1,
                            "failed_logins": 0,
                            "is_organisation_admin": 1,
                            "one_signal_id": null,
                            "created_at": "2022-08-11T08:49:01.000000Z",
                            "updated_at": "2022-08-11T08:51:40.000000Z",
                            "deleted_at": null,
                            "full_name": "Org Admin",
                            "role": "admin",
                            "organisation": {
                                "uuid": "4fde3f5b-eadd-4fe9-9844-5e2a405ada13",
                                "name": "Little Extra Grocer Group",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": "MRTDonorOrg",
                                "accept_by_offset": 30,
                                "phone": null,
                                "address_1": "Test Address Line 1",
                                "address_2": "Test Address Line 2",
                                "city_town": "Dublin",
                                "post_code": "FV12345",
                                "latitude": "53.35512000",
                                "longitude": "-6.24922000",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_friend_group": 0,
                                "created_at": "2022-08-11T08:48:59.000000Z",
                                "updated_at": "2022-08-11T08:48:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Test Address Line 1, Test Address Line 2, Dublin FV12345, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922,
                                    "created_at": "2022-07-27T13:30:57.000000Z",
                                    "updated_at": "2022-07-27T13:30:57.000000Z",
                                    "deleted_at": null
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121,
                                    "created_at": "2022-07-27T13:30:57.000000Z",
                                    "updated_at": "2022-07-27T13:30:57.000000Z",
                                    "deleted_at": null
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE",
                                    "created_at": "2022-07-27T13:30:57.000000Z",
                                    "updated_at": "2022-07-27T13:30:57.000000Z",
                                    "deleted_at": null
                                }
                            }
                        },
                        {
                            "uuid": "472eadcd-e160-4a0f-b2f5-1d2e742e1b00",
                            "first_name": "Duty 04",
                            "surname": "Manager",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "email_verified_at": "2022-08-11T08:49:01.000000Z",
                            "activation_key": null,
                            "restoration_key": null,
                            "is_active": 1,
                            "failed_logins": 0,
                            "is_organisation_admin": 0,
                            "one_signal_id": null,
                            "created_at": "2022-08-11T08:49:01.000000Z",
                            "updated_at": "2022-08-11T08:49:01.000000Z",
                            "deleted_at": null,
                            "full_name": "Duty 04 Manager",
                            "role": "user"
                        }
                    ],
                    "county": {
                        "id": 2964751,
                        "countries_id": 2963597,
                        "provinces_id": 7521316,
                        "name": "Co. Donegal",
                        "latitude": 54.91667,
                        "longitude": -8,
                        "created_at": "2022-07-27T13:30:57.000000Z",
                        "updated_at": "2022-07-27T13:31:08.000000Z",
                        "deleted_at": null
                    },
                    "province": {
                        "id": 7521316,
                        "countries_id": 2963597,
                        "name": "Ulster",
                        "latitude": 54.92732,
                        "longitude": -7.9395,
                        "created_at": "2022-07-27T13:30:57.000000Z",
                        "updated_at": "2022-07-27T13:30:57.000000Z",
                        "deleted_at": null
                    },
                    "country": {
                        "id": 2963597,
                        "name": "Ireland",
                        "latitude": 53,
                        "longitude": -8,
                        "code": "IE",
                        "created_at": "2022-07-27T13:30:57.000000Z",
                        "updated_at": "2022-07-27T13:30:57.000000Z",
                        "deleted_at": null
                    }
                },
                "network": {
                    "uuid": "9228d079-8e57-4cec-92b6-55ac7ed4c62d",
                    "description": null,
                    "max_donation_volume_kg": null,
                    "donation_interval": 30,
                    "requirements": null,
                    "default_co2e": 3.2,
                    "default_meals_per_kg": 2.2,
                    "silence_collection_window_invitation_notifications": null,
                    "silence_network_membership_notifications": null,
                    "created_at": "2022-08-11T08:48:59.000000Z",
                    "updated_at": "2022-08-11T08:48:59.000000Z",
                    "deleted_at": null,
                    "is_public": false
                }
            }
        ],
        "recordsFiltered": 1,
        "recordsTotal": 1
    },
    "frontendRedirect": false,
    "callTime": 0.02938985824584961
}
 

Request      

GET api/foodnet/network_memberships/{network_membership_uuid}/donations

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

network_membership_uuid   string   

The UUID of the Network Membership to get donations for. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Split Donation into Offers

requires authentication

This endpoint split a large volume donation into several offers with lesser donation items

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/foodnet_admin/donations/d9b49c91-0a23-4c50-acee-9636df6d8c94/split" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"splits\": [
        {
            \"charity_uuid\": \"8afcb65a-8757-4efd-84d7-b20c13a058ce\",
            \"items\": [
                {
                    \"category_uuid\": \"a9fcb65a-8757-4efd-84d7-b20c13a058ec\",
                    \"quantity\": 40
                },
                {
                    \"category_uuid\": \"a9fcb65a-8757-4efd-84d7-b20c13a058ec\",
                    \"quantity\": 10
                }
            ]
        },
        {
            \"charity_uuid\": \"b3d15e9f-1686-4d28-b8cc-930772d9f354\",
            \"items\": [
                {
                    \"category_uuid\": \"a9fcb65a-8757-4efd-84d7-b20c13a058ec\",
                    \"quantity\": 40
                }
            ]
        }
    ]
}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet_admin/donations/d9b49c91-0a23-4c50-acee-9636df6d8c94/split"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "splits": [
        {
            "charity_uuid": "8afcb65a-8757-4efd-84d7-b20c13a058ce",
            "items": [
                {
                    "category_uuid": "a9fcb65a-8757-4efd-84d7-b20c13a058ec",
                    "quantity": 40
                },
                {
                    "category_uuid": "a9fcb65a-8757-4efd-84d7-b20c13a058ec",
                    "quantity": 10
                }
            ]
        },
        {
            "charity_uuid": "b3d15e9f-1686-4d28-b8cc-930772d9f354",
            "items": [
                {
                    "category_uuid": "a9fcb65a-8757-4efd-84d7-b20c13a058ec",
                    "quantity": 40
                }
            ]
        }
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet_admin/donations/d9b49c91-0a23-4c50-acee-9636df6d8c94/split';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => \Symfony\Component\VarExporter\Internal\Hydrator::hydrate(
            $o = [
                clone (($p = &\Symfony\Component\VarExporter\Internal\Registry::$prototypes)['stdClass'] ?? \Symfony\Component\VarExporter\Internal\Registry::p('stdClass')),
                clone $p['stdClass'],
                clone $p['stdClass'],
                clone $p['stdClass'],
                clone $p['stdClass'],
            ],
            null,
            [
                'stdClass' => [
                    'charity_uuid' => [
                        '8afcb65a-8757-4efd-84d7-b20c13a058ce',
                        3 => 'b3d15e9f-1686-4d28-b8cc-930772d9f354',
                    ],
                    'items' => [
                        [
                            $o[1],
                            $o[2],
                        ],
                        3 => [
                            $o[4],
                        ],
                    ],
                    'category_uuid' => [
                        1 => 'a9fcb65a-8757-4efd-84d7-b20c13a058ec',
                        'a9fcb65a-8757-4efd-84d7-b20c13a058ec',
                        4 => 'a9fcb65a-8757-4efd-84d7-b20c13a058ec',
                    ],
                    'quantity' => [
                        1 => 40,
                        10,
                        4 => 40,
                    ],
                ],
            ],
            [
                'splits' => [
                    $o[0],
                    $o[3],
                ],
            ],
            []
        ),
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet_admin/donations/d9b49c91-0a23-4c50-acee-9636df6d8c94/split'
payload = {
    "splits": [
        {
            "charity_uuid": "8afcb65a-8757-4efd-84d7-b20c13a058ce",
            "items": [
                {
                    "category_uuid": "a9fcb65a-8757-4efd-84d7-b20c13a058ec",
                    "quantity": 40
                },
                {
                    "category_uuid": "a9fcb65a-8757-4efd-84d7-b20c13a058ec",
                    "quantity": 10
                }
            ]
        },
        {
            "charity_uuid": "b3d15e9f-1686-4d28-b8cc-930772d9f354",
            "items": [
                {
                    "category_uuid": "a9fcb65a-8757-4efd-84d7-b20c13a058ec",
                    "quantity": 40
                }
            ]
        }
    ]
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "uuid": "5f406fe0-2557-447f-8e67-e195f0c61347",
        "networks_id": 7,
        "branches_id": 934,
        "external_id": "9c6aa5ab-55a7-4dc1-9c82-73b065ce7db9",
        "organisations_id": 19,
        "is_max_collectors_reached": null,
        "received_at": "2024-07-01 07:23:19",
        "created_at": "2024-07-01 07:23:19",
        "updated_at": "2024-07-01 09:45:14",
        "deleted_at": null,
        "accepted_by": "2024-07-02 06:45:19",
        "collect_by": null,
        "primary_available_at": "2024-07-01 07:23:19",
        "waitlist_available_at": null,
        "foodboard_available_at": "2024-07-01T07:33:19.000000Z",
        "donation_window_start_at": "2024-07-01 07:23:19",
        "donation_window_end_at": "2024-07-02 06:45:19",
        "tsm_current_state": "Accepted",
        "require_friends": 0,
        "rag_status": 0,
        "all_items_taken": 0,
        "esign": 0,
        "tsm_current_state_label": "accepted",
        "donor": {
            "uuid": "9dc1c723-d8fe-4859-a819-12d59d1b0f5a",
            "name": "Uchenna Donor*",
            "countries_id": 2963597,
            "provinces_id": 7521313,
            "counties_id": 2962975,
            "official_id": null,
            "address_1": "123, Street",
            "address_2": "",
            "city_town": "Abc",
            "post_code": "XYZ",
            "phone": "+2349039893299",
            "latitude": "1.00345300",
            "longitude": "2.40345300",
            "timezone": "Europe/Dublin",
            "locale": "en_IE",
            "is_active": 1,
            "is_foodboard_allowed": 1,
            "esign": 0,
            "send_daily_donations_reminders": false,
            "send_instant_donations_reminders": false,
            "offers_token_counter": 0,
            "prepare_donation_option": "l_product_and_category",
            "default_categories_only": 0,
            "approved_products_only": 0,
            "geofilter_unit_of_distance": "l_kilometers",
            "collection_delivery": null,
            "created_at": "2024-05-21T08:30:09.000000Z",
            "updated_at": "2024-05-21T10:33:30.000000Z",
            "deleted_at": null,
            "category_min": 0,
            "category_max": 100,
            "donation_window_cutoff": 12,
            "transfer_window_cutoff": 24,
            "max_collection_window": 1,
            "in_line_address": "123, Street, Abc XYZ, Co. Leitrim, Connaught, Ireland",
            "delegated_admins": [
                {
                    "uuid": "abd7d0d2-cb68-443a-a4ba-86113f7cd583",
                    "first_name": "Uchenna",
                    "surname": "Ibekwe",
                    "language_code": "en_IE",
                    "mobile_number": null,
                    "email": "[email protected]",
                    "availability": null,
                    "is_active": 1,
                    "is_organisation_admin": 1,
                    "created_at": "2024-05-21T08:27:56.000000Z",
                    "updated_at": "2024-05-21T10:33:07.000000Z",
                    "pickup_locations": null,
                    "mode_of_transport": null,
                    "full_name": "Uchenna Ibekwe",
                    "role": "foodnet_administrator",
                    "organisation": {
                        "uuid": "7c715e88-4b16-4490-9cbc-4c0eb0a36d18",
                        "name": "Uchenna FB",
                        "countries_id": 2963597,
                        "provinces_id": 7521313,
                        "counties_id": 2962975,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 30,
                        "is_vip_window_active": 1,
                        "phone": "+2347039883288",
                        "address_1": "123, Street",
                        "address_2": "",
                        "city_town": "Abc",
                        "post_code": "XYZ",
                        "latitude": "1.00345300",
                        "longitude": "2.40345300",
                        "description": null,
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 0,
                        "is_friend_group": 0,
                        "receipt_sending_option": 1,
                        "created_at": "2024-05-21T08:27:56.000000Z",
                        "updated_at": "2024-05-21T08:38:07.000000Z",
                        "deleted_at": null,
                        "in_line_address": "123, Street, Abc XYZ, Co. Leitrim, Connaught, Ireland"
                    }
                }
            ],
            "organisation": {
                "uuid": "a1eb3b86-9816-4c0c-a9a3-40c1ac98f7c4",
                "name": "Uchenna Donor",
                "countries_id": 2963597,
                "provinces_id": 7521313,
                "counties_id": 2962975,
                "official_id": null,
                "accept_by_offset": 30,
                "vip_window": 10,
                "is_vip_window_active": 1,
                "phone": "+2349039893299",
                "address_1": "123, Street",
                "address_2": "",
                "city_town": "Abc",
                "post_code": "XYZ",
                "latitude": "6.23450100",
                "longitude": "3.12345000",
                "description": "All is well",
                "food_safety_info": null,
                "is_active": true,
                "is_featured": 0,
                "is_friend_group": 0,
                "receipt_sending_option": 1,
                "created_at": "2024-05-21T08:30:09.000000Z",
                "updated_at": "2024-06-27T12:33:14.000000Z",
                "deleted_at": null,
                "in_line_address": "123, Street, Abc XYZ, Co. Leitrim, Connaught, Ireland",
                "webhook_tokens": []
            }
        },
        "network": {
            "uuid": "f0f04075-45fc-4b60-9dfe-cb99bd800213",
            "activate_membership_required": 1,
            "description": "The first",
            "max_donation_volume_kg": 100,
            "donation_interval": 30,
            "requirements": "Just a kind heart",
            "default_co2e": 3.2,
            "default_meals_per_kg": 2.2,
            "silence_collection_window_invitation_notifications": null,
            "silence_network_membership_notifications": null,
            "created_at": "2024-05-21T08:27:56.000000Z",
            "updated_at": "2024-06-12T13:38:46.000000Z",
            "deleted_at": null,
            "is_public": false
        },
        "responses": [
            {
                "uuid": "cb2ef332-df0c-46ce-8861-0723b418e12d",
                "third_party_collector_branches_id": null,
                "third_party_assignment_user_id": null,
                "type": "P",
                "token": null,
                "response_at": null,
                "created_at": "2024-07-01 09:45:13",
                "updated_at": "2024-07-01 09:45:13",
                "deleted_at": null,
                "tsm_current_state": "Pending",
                "uncollected_reason": null,
                "accepted_at": null,
                "declined_at": null,
                "transferred_at": null,
                "not_transferred_at": null,
                "receipt_sent": 0,
                "tsm_current_state_label": "pending",
                "charity_branch": {
                    "uuid": "8afcb65a-8757-4efd-84d7-b20c13a058ce",
                    "name": "Uchenna Charity*",
                    "countries_id": 2963597,
                    "provinces_id": 7521313,
                    "counties_id": 2962975,
                    "official_id": null,
                    "address_1": "123, Street",
                    "address_2": "",
                    "city_town": "Abc",
                    "post_code": "XYZ",
                    "phone": "+2348039893299",
                    "latitude": "1.10345300",
                    "longitude": "2.10345300",
                    "timezone": "Europe/Dublin",
                    "locale": "en_IE",
                    "is_active": 1,
                    "is_foodboard_allowed": 1,
                    "esign": 0,
                    "send_daily_donations_reminders": false,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_product_and_category",
                    "default_categories_only": 0,
                    "approved_products_only": 0,
                    "geofilter_unit_of_distance": "l_kilometers",
                    "collection_delivery": null,
                    "created_at": "2024-05-21T08:32:11.000000Z",
                    "updated_at": "2024-05-31T10:37:55.000000Z",
                    "deleted_at": null,
                    "category_min": 0,
                    "category_max": 100,
                    "donation_window_cutoff": 12,
                    "transfer_window_cutoff": 24,
                    "max_collection_window": 1,
                    "in_line_address": "123, Street, Abc XYZ, Co. Leitrim, Connaught, Ireland",
                    "local_admins": [
                        {
                            "uuid": "a83296e3-f5dd-4b9a-a747-023d55dd5764",
                            "first_name": "Uchenna",
                            "surname": "Ibekwe",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2024-05-21T08:32:11.000000Z",
                            "updated_at": "2024-05-31T16:02:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Uchenna Ibekwe",
                            "role": "admin",
                            "onesignal_player_ids": [
                                {
                                    "player_id": "032593af-5e7a-4033-a02c-e65b8b348683",
                                    "created_at": "2024-05-21T11:29:43.000000Z",
                                    "updated_at": "2024-05-21T11:29:43.000000Z"
                                },
                                {
                                    "player_id": "145e02f0-af34-4813-af17-a3b0f3d30376",
                                    "created_at": "2024-05-28T13:19:29.000000Z",
                                    "updated_at": "2024-05-28T13:19:29.000000Z"
                                },
                                {
                                    "player_id": "974bde18-f357-4190-9e2f-ec58de55de7d",
                                    "created_at": "2024-06-06T13:38:10.000000Z",
                                    "updated_at": "2024-06-06T13:38:10.000000Z"
                                }
                            ],
                            "organisation": {
                                "uuid": "dbcfc3de-4bb1-408b-9f4c-13cfe3c3fc0e",
                                "name": "Uchenna Charity",
                                "countries_id": 2963597,
                                "provinces_id": 7521313,
                                "counties_id": 2962975,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 30,
                                "is_vip_window_active": 1,
                                "phone": "+2348039893299",
                                "address_1": "123, Street",
                                "address_2": "",
                                "city_town": "Abc",
                                "post_code": "XYZ",
                                "latitude": "1.00345300",
                                "longitude": "2.40345300",
                                "description": null,
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2024-05-21T08:32:11.000000Z",
                                "updated_at": "2024-05-21T08:33:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "123, Street, Abc XYZ, Co. Leitrim, Connaught, Ireland"
                            }
                        }
                    ]
                },
                "items": [
                    {
                        "is_available": 1,
                        "created_at": "2024-07-01T09:45:13.000000Z",
                        "updated_at": "2024-07-01T09:45:13.000000Z",
                        "deleted_at": null
                    },
                    {
                        "is_available": 1,
                        "created_at": "2024-07-01T09:45:13.000000Z",
                        "updated_at": "2024-07-01T09:45:13.000000Z",
                        "deleted_at": null
                    }
                ]
            },
            {
                "uuid": "83f1b56b-1bc3-4323-9609-4127a23e30c0",
                "third_party_collector_branches_id": null,
                "third_party_assignment_user_id": null,
                "type": "P",
                "token": null,
                "response_at": null,
                "created_at": "2024-07-01 09:45:13",
                "updated_at": "2024-07-01 09:45:13",
                "deleted_at": null,
                "tsm_current_state": "Pending",
                "uncollected_reason": null,
                "accepted_at": null,
                "declined_at": null,
                "transferred_at": null,
                "not_transferred_at": null,
                "receipt_sent": 0,
                "tsm_current_state_label": "pending",
                "charity_branch": {
                    "uuid": "b3d15e9f-1686-4d28-b8cc-930772d9f354",
                    "name": "Uchenna Charity 2*",
                    "countries_id": 2963597,
                    "provinces_id": 7521313,
                    "counties_id": 2962975,
                    "official_id": null,
                    "address_1": "1234, Xyz",
                    "address_2": "",
                    "city_town": "Here",
                    "post_code": "12345",
                    "phone": "+2347039892333",
                    "latitude": "1.00345300",
                    "longitude": "2.40345300",
                    "timezone": "Europe/Dublin",
                    "locale": "en_IE",
                    "is_active": 1,
                    "is_foodboard_allowed": 1,
                    "esign": 0,
                    "send_daily_donations_reminders": false,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_product_and_category",
                    "default_categories_only": 0,
                    "approved_products_only": 0,
                    "geofilter_unit_of_distance": "l_kilometers",
                    "collection_delivery": null,
                    "created_at": "2024-06-12T13:42:52.000000Z",
                    "updated_at": "2024-06-12T13:44:49.000000Z",
                    "deleted_at": null,
                    "category_min": 0,
                    "category_max": 100,
                    "donation_window_cutoff": 12,
                    "transfer_window_cutoff": 24,
                    "max_collection_window": 1,
                    "in_line_address": "1234, Xyz, Here 12345, Co. Leitrim, Connaught, Ireland",
                    "local_admins": [
                        {
                            "uuid": "7ae1afcf-664b-419e-865f-7e40a5552ea7",
                            "first_name": "Uchenna",
                            "surname": "Ibekwe",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2024-06-12T13:42:53.000000Z",
                            "updated_at": "2024-06-12T13:44:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Uchenna Ibekwe",
                            "role": "admin",
                            "onesignal_player_ids": [],
                            "organisation": {
                                "uuid": "ed1d09bd-78b5-460c-9309-3bf82a1a142a",
                                "name": "Uchenna Charity 2",
                                "countries_id": 2963597,
                                "provinces_id": 7521313,
                                "counties_id": 2962975,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 30,
                                "is_vip_window_active": 1,
                                "phone": "+2347039892333",
                                "address_1": "1234, Xyz",
                                "address_2": "",
                                "city_town": "Here",
                                "post_code": "12345",
                                "latitude": "1.00345300",
                                "longitude": "2.40345300",
                                "description": null,
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2024-06-12T13:42:52.000000Z",
                                "updated_at": "2024-06-12T13:43:42.000000Z",
                                "deleted_at": null,
                                "in_line_address": "1234, Xyz, Here 12345, Co. Leitrim, Connaught, Ireland"
                            }
                        }
                    ]
                },
                "items": [
                    {
                        "is_available": 1,
                        "created_at": "2024-07-01T09:45:13.000000Z",
                        "updated_at": "2024-07-01T09:45:13.000000Z",
                        "deleted_at": null
                    }
                ]
            }
        ],
        "collection_windows": [
            {
                "uuid": "8c9be6d3-4079-47d0-8177-674d9bb455ba",
                "transfer_types_name": "Collection",
                "transfer_types_label": "l_donation_transfer_type_collection",
                "max_collectors": 1,
                "collection_window_starts_at": "2024-07-01 07:30:19",
                "collection_window_ends_at": "2024-07-02 07:15:19",
                "charity_branches": {
                    "primary": 935,
                    "waitlist": [
                        933,
                        937
                    ]
                },
                "is_custom": 1,
                "created_at": "2024-07-01 07:23:19",
                "updated_at": "2024-07-01 07:23:19",
                "charity_branches_details": {
                    "primary": {
                        "uuid": "8afcb65a-8757-4efd-84d7-b20c13a058ce",
                        "name": "Uchenna Charity*",
                        "countries_id": 2963597,
                        "provinces_id": 7521313,
                        "counties_id": 2962975,
                        "official_id": null,
                        "address_1": "123, Street",
                        "address_2": "",
                        "city_town": "Abc",
                        "post_code": "XYZ",
                        "phone": "+2348039893299",
                        "latitude": "1.10345300",
                        "longitude": "2.10345300",
                        "timezone": "Europe/Dublin",
                        "locale": "en_IE",
                        "is_active": 1,
                        "is_foodboard_allowed": 1,
                        "esign": 0,
                        "send_daily_donations_reminders": false,
                        "send_instant_donations_reminders": false,
                        "offers_token_counter": 0,
                        "prepare_donation_option": "l_product_and_category",
                        "default_categories_only": 0,
                        "approved_products_only": 0,
                        "geofilter_unit_of_distance": "l_kilometers",
                        "collection_delivery": null,
                        "created_at": "2024-05-21T08:32:11.000000Z",
                        "updated_at": "2024-05-31T10:37:55.000000Z",
                        "deleted_at": null,
                        "category_min": 0,
                        "category_max": 100,
                        "donation_window_cutoff": 12,
                        "transfer_window_cutoff": 24,
                        "max_collection_window": 1,
                        "in_line_address": "123, Street, Abc XYZ, Co. Leitrim, Connaught, Ireland"
                    },
                    "waitlist": [
                        {
                            "uuid": "94ed878e-8125-4fd8-8386-a29c98648bf7",
                            "name": "Uchenna FB*",
                            "countries_id": 2963597,
                            "provinces_id": 7521313,
                            "counties_id": 2962975,
                            "official_id": null,
                            "address_1": "123, Street",
                            "address_2": "",
                            "city_town": "Abc",
                            "post_code": "XYZ",
                            "phone": "+2347039883288",
                            "latitude": "1.00345300",
                            "longitude": "2.40345300",
                            "timezone": "Europe/Dublin",
                            "locale": "en_IE",
                            "is_active": 1,
                            "is_foodboard_allowed": 1,
                            "esign": 0,
                            "send_daily_donations_reminders": false,
                            "send_instant_donations_reminders": false,
                            "offers_token_counter": 0,
                            "prepare_donation_option": "l_product_and_category",
                            "default_categories_only": 0,
                            "approved_products_only": 0,
                            "geofilter_unit_of_distance": "l_kilometers",
                            "collection_delivery": null,
                            "created_at": "2024-05-21T08:27:56.000000Z",
                            "updated_at": "2024-06-06T12:47:43.000000Z",
                            "deleted_at": null,
                            "category_min": 0,
                            "category_max": 100,
                            "donation_window_cutoff": 12,
                            "transfer_window_cutoff": 24,
                            "max_collection_window": 1,
                            "organisation_logo": null,
                            "in_line_address": "123, Street, Abc XYZ, Co. Leitrim, Connaught, Ireland",
                            "storage_types": [
                                {
                                    "uuid": "8618f912-ef5d-42ee-b3e7-259718a5ce63",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2024-05-18T17:19:46.000000Z",
                                    "updated_at": "2024-05-18T17:19:46.000000Z"
                                },
                                {
                                    "uuid": "da82e576-fbb0-4dd7-83e8-187e52c5aee2",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2024-05-18T17:19:46.000000Z",
                                    "updated_at": "2024-05-18T17:19:46.000000Z"
                                },
                                {
                                    "uuid": "e7bb83cb-54e6-4624-8ff4-c4a2325ad882",
                                    "name": "l_frozen",
                                    "label": "l_frozen",
                                    "is_active": 1,
                                    "created_at": "2024-05-18T17:19:46.000000Z",
                                    "updated_at": "2024-05-18T17:19:46.000000Z"
                                },
                                {
                                    "uuid": "dd5d4a19-b102-40b9-a390-a4e134dd4f9f",
                                    "name": "l_hot",
                                    "label": "l_hot",
                                    "is_active": 1,
                                    "created_at": "2024-05-18T17:19:46.000000Z",
                                    "updated_at": "2024-05-18T17:19:46.000000Z"
                                }
                            ]
                        },
                        {
                            "uuid": "b3d15e9f-1686-4d28-b8cc-930772d9f354",
                            "name": "Uchenna Charity 2*",
                            "countries_id": 2963597,
                            "provinces_id": 7521313,
                            "counties_id": 2962975,
                            "official_id": null,
                            "address_1": "1234, Xyz",
                            "address_2": "",
                            "city_town": "Here",
                            "post_code": "12345",
                            "phone": "+2347039892333",
                            "latitude": "1.00345300",
                            "longitude": "2.40345300",
                            "timezone": "Europe/Dublin",
                            "locale": "en_IE",
                            "is_active": 1,
                            "is_foodboard_allowed": 1,
                            "esign": 0,
                            "send_daily_donations_reminders": false,
                            "send_instant_donations_reminders": false,
                            "offers_token_counter": 0,
                            "prepare_donation_option": "l_product_and_category",
                            "default_categories_only": 0,
                            "approved_products_only": 0,
                            "geofilter_unit_of_distance": "l_kilometers",
                            "collection_delivery": null,
                            "created_at": "2024-06-12T13:42:52.000000Z",
                            "updated_at": "2024-06-12T13:44:49.000000Z",
                            "deleted_at": null,
                            "category_min": 0,
                            "category_max": 100,
                            "donation_window_cutoff": 12,
                            "transfer_window_cutoff": 24,
                            "max_collection_window": 1,
                            "organisation_logo": null,
                            "in_line_address": "1234, Xyz, Here 12345, Co. Leitrim, Connaught, Ireland",
                            "storage_types": [
                                {
                                    "uuid": "8618f912-ef5d-42ee-b3e7-259718a5ce63",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2024-05-18T17:19:46.000000Z",
                                    "updated_at": "2024-05-18T17:19:46.000000Z"
                                },
                                {
                                    "uuid": "da82e576-fbb0-4dd7-83e8-187e52c5aee2",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2024-05-18T17:19:46.000000Z",
                                    "updated_at": "2024-05-18T17:19:46.000000Z"
                                },
                                {
                                    "uuid": "e7bb83cb-54e6-4624-8ff4-c4a2325ad882",
                                    "name": "l_frozen",
                                    "label": "l_frozen",
                                    "is_active": 1,
                                    "created_at": "2024-05-18T17:19:46.000000Z",
                                    "updated_at": "2024-05-18T17:19:46.000000Z"
                                },
                                {
                                    "uuid": "dd5d4a19-b102-40b9-a390-a4e134dd4f9f",
                                    "name": "l_hot",
                                    "label": "l_hot",
                                    "is_active": 1,
                                    "created_at": "2024-05-18T17:19:46.000000Z",
                                    "updated_at": "2024-05-18T17:19:46.000000Z"
                                }
                            ]
                        }
                    ]
                },
                "charity_branches_uuid": {
                    "primary": "8afcb65a-8757-4efd-84d7-b20c13a058ce",
                    "waitlist": [
                        "94ed878e-8125-4fd8-8386-a29c98648bf7",
                        "b3d15e9f-1686-4d28-b8cc-930772d9f354"
                    ]
                }
            }
        ]
    },
    "frontendRedirect": false,
    "callTime": 1.1788749694824219
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

POST api/foodnet_admin/donations/{donation_uuid}/split

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

URL Parameters

donation_uuid   string  optional  

uuid required The UUID of the donation. Example: d9b49c91-0a23-4c50-acee-9636df6d8c94

Body Parameters

splits   string[]   

An array of splits, each containing a charity and its items.

*   object  optional  
charity_uuid   uuid   

The UUID of the charity. Example: 8afcb65a-8757-4efd-84d7-b20c13a058ce

items   string[]   

An array of items with their categories and quantities.

*   object  optional  
category_uuid   uuid   

The UUID of the category. Example: a9fcb65a-8757-4efd-84d7-b20c13a058ec

quantity   integer   

The quantity of the item. Example: 40

Get Food Board Offers

requires authentication

This endpoint retrieves food board offers associated with the current users branch based on whether Geofiltering is enabled or not For the field and search arrays multiple values can be defined according the backend requirements

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/foodboard/my_foodnets_donations?order%5Bfield%5D%5B%5D=donations.created_at&order%5Bdirection%5D%5B%5D=desc&parser=autocomplete&field%5B%5D=donor.county&search%5B%5D=2636561&max_distance=25&start=0&length=20&search%5Bvalue%5D=architecto&columns%5Bname%5D%5Bsearchable%5D=1&columns%5Bname%5D%5Bdata%5D=name&columns%5Bname%5D%5Bsearch%5D%5Bvalue%5D=%27%27&columns%5BminDate%5D%5Bsearchable%5D=1&columns%5BminDate%5D%5Bdata%5D=minDate&columns%5BminDate%5D%5Bsearch%5D%5Bvalue%5D=%27%27&columns%5BmaxDate%5D%5Bsearchable%5D=1&columns%5BmaxDate%5D%5Bdata%5D=maxDate&columns%5BmaxDate%5D%5Bsearch%5D%5Bvalue%5D=architecto" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodboard/my_foodnets_donations"
);

const params = {
    "order[field][]": "donations.created_at",
    "order[direction][]": "desc",
    "parser": "autocomplete",
    "field[]": "donor.county",
    "search[]": "2636561",
    "max_distance": "25",
    "start": "0",
    "length": "20",
    "search[value]": "architecto",
    "columns[name][searchable]": "1",
    "columns[name][data]": "name",
    "columns[name][search][value]": "''",
    "columns[minDate][searchable]": "1",
    "columns[minDate][data]": "minDate",
    "columns[minDate][search][value]": "''",
    "columns[maxDate][searchable]": "1",
    "columns[maxDate][data]": "maxDate",
    "columns[maxDate][search][value]": "architecto",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodboard/my_foodnets_donations';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
        'query' => [
            'order[field][]' => 'donations.created_at',
            'order[direction][]' => 'desc',
            'parser' => 'autocomplete',
            'field[]' => 'donor.county',
            'search[]' => '2636561',
            'max_distance' => '25',
            'start' => '0',
            'length' => '20',
            'search[value]' => 'architecto',
            'columns[name][searchable]' => '1',
            'columns[name][data]' => 'name',
            'columns[name][search][value]' => '''',
            'columns[minDate][searchable]' => '1',
            'columns[minDate][data]' => 'minDate',
            'columns[minDate][search][value]' => '''',
            'columns[maxDate][searchable]' => '1',
            'columns[maxDate][data]' => 'maxDate',
            'columns[maxDate][search][value]' => 'architecto',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodboard/my_foodnets_donations'
params = {
  'order[field][]': 'donations.created_at',
  'order[direction][]': 'desc',
  'parser': 'autocomplete',
  'field[]': 'donor.county',
  'search[]': '2636561',
  'max_distance': '25',
  'start': '0',
  'length': '20',
  'search[value]': 'architecto',
  'columns[name][searchable]': '1',
  'columns[name][data]': 'name',
  'columns[name][search][value]': '''',
  'columns[minDate][searchable]': '1',
  'columns[minDate][data]': 'minDate',
  'columns[minDate][search][value]': '''',
  'columns[maxDate][searchable]': '1',
  'columns[maxDate][data]': 'maxDate',
  'columns[maxDate][search][value]': 'architecto',
}
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "data": [
            {
                "uuid": "706e92e0-10c6-499c-bb17-890c8e9e5cfb",
                "networks_id": 65,
                "branches_id": 35375,
                "external_id": "9aae2923-ef86-4697-9362-1fc0b3aa2eb8",
                "organisations_id": 97,
                "is_max_collectors_reached": null,
                "received_at": "2023-11-23 08:27:32",
                "created_at": "2023-11-23 08:27:32",
                "updated_at": "2023-11-23 08:27:46",
                "deleted_at": null,
                "accepted_by": "2023-11-23 09:15:09",
                "collect_by": null,
                "primary_available_at": "2023-11-23 08:27:32",
                "waitlist_available_at": null,
                "foodboard_available_at": "2023-11-23 08:27:32",
                "donation_window_start_at": "2023-11-23 08:27:32",
                "donation_window_end_at": "2023-11-23 09:15:09",
                "tsm_current_state": "Offering",
                "require_friends": 0,
                "rag_status": 0,
                "all_items_taken": 0,
                "esign": 0,
                "donor_name": "Dev testing branch 1",
                "donor_logo": null,
                "ambient_total": 27,
                "chilled_total": 0.5,
                "frozen_total": 0,
                "hot_total": 0,
                "total": 27.5,
                "charity_uuid": "",
                "foodnet_name": "DEV TESTING FOODBANK",
                "foodnet_logo": null,
                "style": {
                    "color": "outline-green",
                    "icon": "fas fa-play"
                },
                "transitions": [],
                "tsm_current_state_label": "offering",
                "donor": {
                    "uuid": "06f5d981-f826-4798-8145-98c066f8f254",
                    "name": "Dev testing branch 1",
                    "countries_id": 2963597,
                    "provinces_id": 7521316,
                    "counties_id": 11353077,
                    "official_id": "DEV:1234",
                    "address_1": "4 Downshire Close",
                    "address_2": "Downshire Road",
                    "city_town": "Newry",
                    "post_code": "BT34 1FD",
                    "phone": "+442830252324",
                    "latitude": "54.18228360",
                    "longitude": "-6.33244040",
                    "timezone": "Europe/Dublin",
                    "locale": "en_IE",
                    "is_active": 1,
                    "is_foodboard_allowed": 1,
                    "esign": 0,
                    "send_daily_donations_reminders": false,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_product_and_category",
                    "default_categories_only": 0,
                    "approved_products_only": 0,
                    "geofilter_unit_of_distance": "l_kilometers",
                    "created_at": "2023-11-23T08:18:59.000000Z",
                    "updated_at": "2023-11-23T08:18:59.000000Z",
                    "deleted_at": null,
                    "in_line_address": "4 Downshire Close, Downshire Road, Newry BT34 1FD, Co. Down, Ulster, Ireland",
                    "local_admins": [
                        {
                            "uuid": "818d8070-6dbc-43d5-935f-22139728124f",
                            "first_name": "Org",
                            "surname": "Admin",
                            "language_code": "en_IE",
                            "mobile_number": "+353890487040",
                            "email": "[email protected]",
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2023-11-23T08:20:45.000000Z",
                            "updated_at": "2023-11-23T08:20:45.000000Z",
                            "full_name": "Org Admin",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "68ed35ac-cc4f-44d9-aa62-7eca66fef005",
                                "name": "DEV TESTING FOODBANK",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "phone": "+442830252324",
                                "address_1": "4 Downshire Close",
                                "address_2": "Downshire Road",
                                "city_town": "Newry",
                                "post_code": "BT34 1FD",
                                "latitude": "54.18228360",
                                "longitude": "-6.33244040",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2023-11-23T08:18:59.000000Z",
                                "updated_at": "2023-11-23T08:18:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "4 Downshire Close, Downshire Road, Newry BT34 1FD, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE"
                                }
                            }
                        },
                        {
                            "uuid": "0f2019dd-4d6a-45f5-857e-2aa884d5f7ce",
                            "first_name": "Lawrence",
                            "surname": "Kibirige",
                            "language_code": "en_IE",
                            "mobile_number": "+353890487049",
                            "email": "[email protected]",
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2023-11-23T08:20:46.000000Z",
                            "updated_at": "2023-11-23T08:22:08.000000Z",
                            "full_name": "Lawrence Kibirige",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "68ed35ac-cc4f-44d9-aa62-7eca66fef005",
                                "name": "DEV TESTING FOODBANK",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "phone": "+442830252324",
                                "address_1": "4 Downshire Close",
                                "address_2": "Downshire Road",
                                "city_town": "Newry",
                                "post_code": "BT34 1FD",
                                "latitude": "54.18228360",
                                "longitude": "-6.33244040",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2023-11-23T08:18:59.000000Z",
                                "updated_at": "2023-11-23T08:18:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "4 Downshire Close, Downshire Road, Newry BT34 1FD, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE"
                                }
                            }
                        },
                        {
                            "uuid": "74835ede-07e4-401d-891c-23d97563976c",
                            "first_name": "Dayo",
                            "surname": "Aderemi",
                            "language_code": "en_IE",
                            "mobile_number": "+353890487041",
                            "email": "[email protected]",
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2023-11-23T08:20:46.000000Z",
                            "updated_at": "2023-11-23T08:20:46.000000Z",
                            "full_name": "Dayo Aderemi",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "68ed35ac-cc4f-44d9-aa62-7eca66fef005",
                                "name": "DEV TESTING FOODBANK",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "phone": "+442830252324",
                                "address_1": "4 Downshire Close",
                                "address_2": "Downshire Road",
                                "city_town": "Newry",
                                "post_code": "BT34 1FD",
                                "latitude": "54.18228360",
                                "longitude": "-6.33244040",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2023-11-23T08:18:59.000000Z",
                                "updated_at": "2023-11-23T08:18:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "4 Downshire Close, Downshire Road, Newry BT34 1FD, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE"
                                }
                            }
                        },
                        {
                            "uuid": "5e42dbeb-b62c-405a-a3df-e5f8b1957284",
                            "first_name": "Rourke",
                            "surname": "Bradley",
                            "language_code": "en_IE",
                            "mobile_number": "+353890487043",
                            "email": "[email protected]",
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2023-11-23T08:20:46.000000Z",
                            "updated_at": "2023-11-23T08:20:46.000000Z",
                            "full_name": "Rourke Bradley",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "68ed35ac-cc4f-44d9-aa62-7eca66fef005",
                                "name": "DEV TESTING FOODBANK",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "phone": "+442830252324",
                                "address_1": "4 Downshire Close",
                                "address_2": "Downshire Road",
                                "city_town": "Newry",
                                "post_code": "BT34 1FD",
                                "latitude": "54.18228360",
                                "longitude": "-6.33244040",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2023-11-23T08:18:59.000000Z",
                                "updated_at": "2023-11-23T08:18:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "4 Downshire Close, Downshire Road, Newry BT34 1FD, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE"
                                }
                            }
                        },
                        {
                            "uuid": "5d5601bd-86fb-4b8d-8716-67f5dd26c1da",
                            "first_name": "James",
                            "surname": "Clifford",
                            "language_code": "en_IE",
                            "mobile_number": "+353890487042",
                            "email": "[email protected]",
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2023-11-23T08:20:46.000000Z",
                            "updated_at": "2023-11-23T08:20:46.000000Z",
                            "full_name": "James Clifford",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "68ed35ac-cc4f-44d9-aa62-7eca66fef005",
                                "name": "DEV TESTING FOODBANK",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "phone": "+442830252324",
                                "address_1": "4 Downshire Close",
                                "address_2": "Downshire Road",
                                "city_town": "Newry",
                                "post_code": "BT34 1FD",
                                "latitude": "54.18228360",
                                "longitude": "-6.33244040",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2023-11-23T08:18:59.000000Z",
                                "updated_at": "2023-11-23T08:18:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "4 Downshire Close, Downshire Road, Newry BT34 1FD, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE"
                                }
                            }
                        },
                        {
                            "uuid": "9e8bc106-de6e-4af7-b128-17633d5cd6e4",
                            "first_name": "Brice",
                            "surname": "Mehelo",
                            "language_code": "en_IE",
                            "mobile_number": "+353890487044",
                            "email": "[email protected]",
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2023-11-23T08:20:46.000000Z",
                            "updated_at": "2023-11-23T08:20:46.000000Z",
                            "full_name": "Brice Mehelo",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "68ed35ac-cc4f-44d9-aa62-7eca66fef005",
                                "name": "DEV TESTING FOODBANK",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "phone": "+442830252324",
                                "address_1": "4 Downshire Close",
                                "address_2": "Downshire Road",
                                "city_town": "Newry",
                                "post_code": "BT34 1FD",
                                "latitude": "54.18228360",
                                "longitude": "-6.33244040",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2023-11-23T08:18:59.000000Z",
                                "updated_at": "2023-11-23T08:18:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "4 Downshire Close, Downshire Road, Newry BT34 1FD, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE"
                                }
                            }
                        },
                        {
                            "uuid": "f56725c6-e712-4118-82f3-17d06546403d",
                            "first_name": "Uchenna",
                            "surname": "Ibekwe",
                            "language_code": "en_IE",
                            "mobile_number": "+353890487048",
                            "email": "[email protected]",
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2023-11-23T08:20:46.000000Z",
                            "updated_at": "2023-11-23T08:20:46.000000Z",
                            "full_name": "Uchenna Ibekwe",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "68ed35ac-cc4f-44d9-aa62-7eca66fef005",
                                "name": "DEV TESTING FOODBANK",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "phone": "+442830252324",
                                "address_1": "4 Downshire Close",
                                "address_2": "Downshire Road",
                                "city_town": "Newry",
                                "post_code": "BT34 1FD",
                                "latitude": "54.18228360",
                                "longitude": "-6.33244040",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2023-11-23T08:18:59.000000Z",
                                "updated_at": "2023-11-23T08:18:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "4 Downshire Close, Downshire Road, Newry BT34 1FD, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE"
                                }
                            }
                        },
                        {
                            "uuid": "266d8855-c6e2-4995-89e2-9394650df35d",
                            "first_name": "Devika",
                            "surname": "Kulkarni",
                            "language_code": "en_IE",
                            "mobile_number": "+353890487050",
                            "email": "[email protected]",
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2023-11-23T08:20:46.000000Z",
                            "updated_at": "2023-11-23T08:20:46.000000Z",
                            "full_name": "Devika Kulkarni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "68ed35ac-cc4f-44d9-aa62-7eca66fef005",
                                "name": "DEV TESTING FOODBANK",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "phone": "+442830252324",
                                "address_1": "4 Downshire Close",
                                "address_2": "Downshire Road",
                                "city_town": "Newry",
                                "post_code": "BT34 1FD",
                                "latitude": "54.18228360",
                                "longitude": "-6.33244040",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2023-11-23T08:18:59.000000Z",
                                "updated_at": "2023-11-23T08:18:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "4 Downshire Close, Downshire Road, Newry BT34 1FD, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE"
                                }
                            }
                        },
                        {
                            "uuid": "c9e11ef9-b222-4555-bbdd-ad1d816f91f8",
                            "first_name": "Suhail",
                            "surname": "Mirji",
                            "language_code": "en_IE",
                            "mobile_number": "+353890487047",
                            "email": "[email protected]",
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2023-11-23T08:20:47.000000Z",
                            "updated_at": "2023-11-23T08:20:47.000000Z",
                            "full_name": "Suhail Mirji",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "68ed35ac-cc4f-44d9-aa62-7eca66fef005",
                                "name": "DEV TESTING FOODBANK",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "phone": "+442830252324",
                                "address_1": "4 Downshire Close",
                                "address_2": "Downshire Road",
                                "city_town": "Newry",
                                "post_code": "BT34 1FD",
                                "latitude": "54.18228360",
                                "longitude": "-6.33244040",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2023-11-23T08:18:59.000000Z",
                                "updated_at": "2023-11-23T08:18:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "4 Downshire Close, Downshire Road, Newry BT34 1FD, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE"
                                }
                            }
                        },
                        {
                            "uuid": "5550a03c-7cbd-4126-aa77-8f3329025da5",
                            "first_name": "Keith",
                            "surname": "Phelan",
                            "language_code": "en_IE",
                            "mobile_number": "+353890487045",
                            "email": "[email protected]",
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2023-11-23T08:20:47.000000Z",
                            "updated_at": "2023-11-23T08:20:47.000000Z",
                            "full_name": "Keith Phelan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "68ed35ac-cc4f-44d9-aa62-7eca66fef005",
                                "name": "DEV TESTING FOODBANK",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "phone": "+442830252324",
                                "address_1": "4 Downshire Close",
                                "address_2": "Downshire Road",
                                "city_town": "Newry",
                                "post_code": "BT34 1FD",
                                "latitude": "54.18228360",
                                "longitude": "-6.33244040",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2023-11-23T08:18:59.000000Z",
                                "updated_at": "2023-11-23T08:18:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "4 Downshire Close, Downshire Road, Newry BT34 1FD, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE"
                                }
                            }
                        },
                        {
                            "uuid": "bea38170-c7f4-4519-8397-e3a5c3e34569",
                            "first_name": "Ji",
                            "surname": "Zhang",
                            "language_code": "en_IE",
                            "mobile_number": "+353890487046",
                            "email": "[email protected]",
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "created_at": "2023-11-23T08:20:47.000000Z",
                            "updated_at": "2023-11-23T08:20:47.000000Z",
                            "full_name": "Ji Zhang",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "68ed35ac-cc4f-44d9-aa62-7eca66fef005",
                                "name": "DEV TESTING FOODBANK",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7778677,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "phone": "+442830252324",
                                "address_1": "4 Downshire Close",
                                "address_2": "Downshire Road",
                                "city_town": "Newry",
                                "post_code": "BT34 1FD",
                                "latitude": "54.18228360",
                                "longitude": "-6.33244040",
                                "description": "This is a test org used for MRT",
                                "food_safety_info": "This is a test org used for MRT",
                                "is_active": true,
                                "is_featured": 0,
                                "is_friend_group": 0,
                                "receipt_sending_option": 1,
                                "created_at": "2023-11-23T08:18:59.000000Z",
                                "updated_at": "2023-11-23T08:18:59.000000Z",
                                "deleted_at": null,
                                "in_line_address": "4 Downshire Close, Downshire Road, Newry BT34 1FD, Dublin City, Leinster, Ireland",
                                "county": {
                                    "id": 7778677,
                                    "countries_id": 2963597,
                                    "provinces_id": 7521314,
                                    "name": "Dublin City",
                                    "latitude": 53.35512,
                                    "longitude": -6.24922
                                },
                                "province": {
                                    "id": 7521314,
                                    "countries_id": 2963597,
                                    "name": "Leinster",
                                    "latitude": 53.16667,
                                    "longitude": -7.02121
                                },
                                "country": {
                                    "id": 2963597,
                                    "name": "Ireland",
                                    "latitude": 53,
                                    "longitude": -8,
                                    "code": "IE"
                                }
                            }
                        }
                    ],
                    "county": {
                        "id": 11353077,
                        "countries_id": 2635167,
                        "provinces_id": 2641364,
                        "name": "Co. Down",
                        "latitude": 54.3277,
                        "longitude": -5.7158
                    },
                    "province": {
                        "id": 7521316,
                        "countries_id": 2963597,
                        "name": "Ulster",
                        "latitude": 54.92732,
                        "longitude": -7.9395
                    },
                    "country": {
                        "id": 2963597,
                        "name": "Ireland",
                        "latitude": 53,
                        "longitude": -8,
                        "code": "IE"
                    }
                },
                "network": {
                    "uuid": "0576c29f-4ca7-4af4-a972-ec7fc713fa66",
                    "activate_membership_required": 1,
                    "description": null,
                    "max_donation_volume_kg": null,
                    "donation_interval": 30,
                    "requirements": null,
                    "default_co2e": 3.2,
                    "default_meals_per_kg": 2.2,
                    "silence_collection_window_invitation_notifications": null,
                    "silence_network_membership_notifications": null,
                    "created_at": "2023-11-23T08:18:59.000000Z",
                    "updated_at": "2023-11-23T08:18:59.000000Z",
                    "deleted_at": null,
                    "is_public": false
                }
            }
        ],
        "recordsFiltered": 1,
        "recordsTotal": 1
    },
    "frontendRedirect": false,
    "callTime": 0.05941891670227051
}
 

Example response (401):


{
    "status": "error",
    "data": [
        "e_unauthorized"
    ],
    "frontendRedirect": false,
    "callTime": 0.03663492202758789,
    "debug_error_message": "Unauthenticated.",
    "debug_error_trace": [
        {
            "file": "/var/www/html/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php",
            "line": 68,
            "function": "unauthenticated",
            "class": "Illuminate\\Auth\\Middleware\\Authenticate",
            "type": "->"
        },
        {
            "file": "/var/www/html/vendor/laravel/framework/src/Illuminate/Auth/Middleware/Authenticate.php",
            "line": 42,
            "function": "authenticate",
            "class": "Illuminate\\Auth\\Middleware\\Authenticate",
            "type": "->"
        },
        {
            "file": "/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
            "line": 180,
            "function": "handle",
            "class": "Illuminate\\Auth\\Middleware\\Authenticate",
            "type": "->"
        },
        {
            "file": "/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php",
            "line": 126,
            "function": "Illuminate\\Pipeline\\{closure}",
            "class": "Illuminate\\Pipeline\\Pipeline",
            "type": "->"
        },
        {
            "file": "/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Middleware/ThrottleRequests.php",
            "line": 57,
            "function": "handleRequest",
            "class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
            "type": "->"
        },
        {
            "file": "/var/www/html/app/Http/Middleware/ApiRequestRateLimit.php",
            "line": 16,
            "function": "handle",
            "class": "Illuminate\\Routing\\Middleware\\ThrottleRequests",
            "type": "->"
        },
        {
            "file": "/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
            "line": 180,
            "function": "handle",
            "class": "App\\Http\\Middleware\\ApiRequestRateLimit",
            "type": "->"
        },
        {
            "file": "/var/www/html/vendor/laravel/framework/src/Illuminate/Pipeline/Pipeline.php",
            "line": 116,
            "function": "Illuminate\\Pipeline\\{closure}",
            "class": "Illuminate\\Pipeline\\Pipeline",
            "type": "->"
        },
        {
            "file": "/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php",
            "line": 797,
            "function": "then",
            "class": "Illuminate\\Pipeline\\Pipeline",
            "type": "->"
        },
        {
            "file": "/var/www/html/vendor/laravel/framework/src/Illuminate/Routing/Router.php",
            "line": 776,
            "function": "runRouteWithinStack",
            "class": "Illuminate\\Routing\\Router",
            "type": "->"
        }
    ]
}
 

Request      

GET api/foodboard/my_foodnets_donations

Headers

AuthorizationToken      

Example: Bearer {token}

Query Parameters

order[field][]   string  optional  

The field used to order the search. Example: donations.created_at

order[direction][]   string  optional  

The value used during query ordering. Example: desc

parser   string  optional  

The value used in parsing the query. Example: autocomplete

field[]   string  optional  

The field denoting the search column. Only used when geo-filtering is disabled. Example: donor.county

search[]   string  optional  

The value denoting the search parameter for the above field. Example: 2636561

max_distance   integer  optional  

The value used for the max distance around the branch for geo filtering. Required if geo-filtering is enabled. Example: 25

start   integer  optional  

The value used as the start of the paginator. Example: 0

length   integer  optional  

The value used as the total returned by the paginator. Example: 20

search[value]   string  optional  

The search value. Example: architecto

columns[name][searchable]   boolean  optional  

The column name to indicate whether it's searchable. Example: true

columns[name][data]   string  optional  

The column name indicated above. Example: name

columns[name][search][value]   string  optional  

The value used to search the above column: Example: ''

columns[minDate][searchable]   boolean  optional  

The field used to indicate the search ability of the minDate column. Example: true

columns[minDate][data]   string  optional  

The column name used with the search ability. Example: minDate

columns[minDate][search][value]   string  optional  

The value used to search the minDate. Example: ''

columns[maxDate][searchable]   boolean  optional  

The field used to indicate the search ability of the maxDate column. Example: true

columns[maxDate][data]   string  optional  

The column name used with the search ability. Example: maxDate

columns[maxDate][search][value]   string  optional  

The value used to search the maxDate. Example '' Example: architecto

Endpoints

POST api/donation_responses/{uuid}/delivery_notes

requires authentication

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/donation_responses/6ff8f7f6-1eb3-3525-be4a-3932c805afed/delivery_notes" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/donation_responses/6ff8f7f6-1eb3-3525-be4a-3932c805afed/delivery_notes"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/donation_responses/6ff8f7f6-1eb3-3525-be4a-3932c805afed/delivery_notes';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/donation_responses/6ff8f7f6-1eb3-3525-be4a-3932c805afed/delivery_notes'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/donation_responses/{uuid}/delivery_notes

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

uuid   string   

Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

Membership Schedule

Get Schedules

requires authentication

This endpoint retrieves max 250 schedules for a given member.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/schedules?page=16" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/schedules"
);

const params = {
    "page": "16",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/schedules';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
        'query' => [
            'page' => '16',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/schedules'
params = {
  'page': '16',
}
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "donation_windows": [
            [
                {
                    "uuid": "0f8111d6-caf9-42fc-950d-57ec5f439595",
                    "starts_at": "09:00:00",
                    "ends_at": "17:00:00",
                    "day_of_week": 1,
                    "is_active": 1,
                    "is_temporary_schedule": 0,
                    "temporary_scheduled_at": null,
                    "created_at": "2024-02-22 16:30:42",
                    "updated_at": "2024-02-22 16:30:42",
                    "day_of_week_label": "l_monday_full"
                }
            ],
            [
                {
                    "uuid": "8e285138-dc4c-4db0-88d7-fbab618ae10e",
                    "starts_at": "09:00:00",
                    "ends_at": "17:00:00",
                    "day_of_week": 2,
                    "is_active": 1,
                    "is_temporary_schedule": 0,
                    "temporary_scheduled_at": null,
                    "created_at": "2024-02-22 16:30:42",
                    "updated_at": "2024-02-22 16:30:42",
                    "day_of_week_label": "l_tuesday_full"
                }
            ],
            [
                {
                    "uuid": "da307f7d-b92f-4777-b782-6572e1f307fe",
                    "starts_at": "09:00:00",
                    "ends_at": "17:00:00",
                    "day_of_week": 3,
                    "is_active": 1,
                    "is_temporary_schedule": 0,
                    "temporary_scheduled_at": null,
                    "created_at": "2024-02-22 16:30:42",
                    "updated_at": "2024-02-22 16:30:42",
                    "day_of_week_label": "l_wednesday_full"
                }
            ],
            [
                {
                    "uuid": "cc833d54-95f4-4691-a626-2b4d198dffe3",
                    "starts_at": "09:00:00",
                    "ends_at": "17:00:00",
                    "day_of_week": 4,
                    "is_active": 1,
                    "is_temporary_schedule": 0,
                    "temporary_scheduled_at": null,
                    "created_at": "2024-02-22 16:30:43",
                    "updated_at": "2024-02-22 16:30:43",
                    "day_of_week_label": "l_thursday_full"
                }
            ],
            [
                {
                    "uuid": "c83c021a-f068-42df-9a1b-2e5dcd3579f1",
                    "starts_at": "09:00:00",
                    "ends_at": "17:00:00",
                    "day_of_week": 5,
                    "is_active": 1,
                    "is_temporary_schedule": 0,
                    "temporary_scheduled_at": null,
                    "created_at": "2024-02-22 16:30:43",
                    "updated_at": "2024-02-22 16:30:43",
                    "day_of_week_label": "l_friday_full"
                }
            ],
            [],
            []
        ],
        "collection_windows": [
            [
                {
                    "uuid": "a38ce123-5054-40bd-8aec-1d15617813dd",
                    "transfer_types_id": 1,
                    "starts_at": "18:00:00",
                    "ends_at": "19:30:00",
                    "day_of_week_start": 1,
                    "day_of_week_end": 1,
                    "is_temporary_schedule": 0,
                    "temporary_schedule_starts_at": null,
                    "temporary_schedule_ends_at": null,
                    "created_at": "2024-02-22 16:30:42",
                    "updated_at": "2024-02-22 16:30:42",
                    "max_collectors": 1,
                    "day_of_week_start_label": "l_monday_full",
                    "day_of_week_end_label": "l_monday_full",
                    "difference_in_days": 0,
                    "primary_charity_branch": {
                        "uuid": "ecda107b-e326-44c2-9563-b3dfbeae2dd8",
                        "expires_at": null,
                        "starts_at_x_days_from_acceptance": null,
                        "starts_at_date": null,
                        "created_at": "2024-02-22T16:30:42.000000Z",
                        "updated_at": "2024-02-22T16:30:42.000000Z",
                        "tsm_current_state": "Activated",
                        "scheduled_activation_date": null,
                        "tsm_current_state_label": "activated",
                        "charity_branch": {
                            "uuid": "0b266d66-edc3-422c-83c8-265ad9efb92e",
                            "name": "Green Planet Charity IOFN 1.5",
                            "countries_id": 2963597,
                            "provinces_id": 7521316,
                            "counties_id": 2962567,
                            "official_id": "GPC:2225",
                            "address_1": "16 Oriel Park",
                            "address_2": "Scarnageeragh",
                            "city_town": "Emyvale",
                            "post_code": "H18 VW65",
                            "phone": "+35316764758",
                            "latitude": "54.34100180",
                            "longitude": "-6.97874490",
                            "timezone": "Europe/Dublin",
                            "locale": "en_IE",
                            "is_active": 1,
                            "is_foodboard_allowed": 1,
                            "esign": 0,
                            "send_daily_donations_reminders": false,
                            "send_instant_donations_reminders": false,
                            "offers_token_counter": 0,
                            "prepare_donation_option": "l_product_and_category",
                            "default_categories_only": 0,
                            "approved_products_only": 0,
                            "geofilter_unit_of_distance": "l_kilometers",
                            "collection_delivery": null,
                            "created_at": "2024-02-22T16:29:01.000000Z",
                            "updated_at": "2024-02-22T16:29:01.000000Z",
                            "deleted_at": null,
                            "category_min": 0,
                            "category_max": 100,
                            "donation_window_cutoff": 12,
                            "transfer_window_cutoff": 24,
                            "max_collection_window": 1,
                            "organisation_logo": "666836f161a9bb05eb5eb.png",
                            "network_storage_types": [
                                {
                                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                },
                                {
                                    "uuid": "6b70c833-2794-4252-b095-fb58a330fbee",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                }
                            ],
                            "in_line_address": "16 Oriel Park, Scarnageeragh, Emyvale H18 VW65, Co. Monaghan, Ulster, Ireland",
                            "storage_types": [
                                {
                                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                },
                                {
                                    "uuid": "6b70c833-2794-4252-b095-fb58a330fbee",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                }
                            ]
                        }
                    },
                    "invited_branch": [],
                    "collection_window_waitlist": []
                }
            ],
            [
                {
                    "uuid": "fdaedad6-8ce1-4a49-9494-c0eea23d7f88",
                    "transfer_types_id": 1,
                    "starts_at": "18:00:00",
                    "ends_at": "19:30:00",
                    "day_of_week_start": 2,
                    "day_of_week_end": 2,
                    "is_temporary_schedule": 0,
                    "temporary_schedule_starts_at": null,
                    "temporary_schedule_ends_at": null,
                    "created_at": "2024-02-22 16:30:42",
                    "updated_at": "2024-02-22 16:30:42",
                    "max_collectors": 1,
                    "day_of_week_start_label": "l_tuesday_full",
                    "day_of_week_end_label": "l_tuesday_full",
                    "difference_in_days": 0,
                    "primary_charity_branch": {
                        "uuid": "30940b04-0ef2-4800-b754-d5ba9d046c42",
                        "expires_at": null,
                        "starts_at_x_days_from_acceptance": null,
                        "starts_at_date": null,
                        "created_at": "2024-02-22T16:30:42.000000Z",
                        "updated_at": "2024-02-22T16:30:42.000000Z",
                        "tsm_current_state": "Activated",
                        "scheduled_activation_date": null,
                        "tsm_current_state_label": "activated",
                        "charity_branch": {
                            "uuid": "0b266d66-edc3-422c-83c8-265ad9efb92e",
                            "name": "Green Planet Charity IOFN 1.5",
                            "countries_id": 2963597,
                            "provinces_id": 7521316,
                            "counties_id": 2962567,
                            "official_id": "GPC:2225",
                            "address_1": "16 Oriel Park",
                            "address_2": "Scarnageeragh",
                            "city_town": "Emyvale",
                            "post_code": "H18 VW65",
                            "phone": "+35316764758",
                            "latitude": "54.34100180",
                            "longitude": "-6.97874490",
                            "timezone": "Europe/Dublin",
                            "locale": "en_IE",
                            "is_active": 1,
                            "is_foodboard_allowed": 1,
                            "esign": 0,
                            "send_daily_donations_reminders": false,
                            "send_instant_donations_reminders": false,
                            "offers_token_counter": 0,
                            "prepare_donation_option": "l_product_and_category",
                            "default_categories_only": 0,
                            "approved_products_only": 0,
                            "geofilter_unit_of_distance": "l_kilometers",
                            "collection_delivery": null,
                            "created_at": "2024-02-22T16:29:01.000000Z",
                            "updated_at": "2024-02-22T16:29:01.000000Z",
                            "deleted_at": null,
                            "category_min": 0,
                            "category_max": 100,
                            "donation_window_cutoff": 12,
                            "transfer_window_cutoff": 24,
                            "max_collection_window": 1,
                            "organisation_logo": "666836f161a9bb05eb5eb.png",
                            "network_storage_types": [
                                {
                                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                },
                                {
                                    "uuid": "6b70c833-2794-4252-b095-fb58a330fbee",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                }
                            ],
                            "in_line_address": "16 Oriel Park, Scarnageeragh, Emyvale H18 VW65, Co. Monaghan, Ulster, Ireland",
                            "storage_types": [
                                {
                                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                },
                                {
                                    "uuid": "6b70c833-2794-4252-b095-fb58a330fbee",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                }
                            ]
                        }
                    },
                    "invited_branch": [],
                    "collection_window_waitlist": []
                }
            ],
            [
                {
                    "uuid": "e29846d1-7dd1-4b43-836b-1ceed4575bcc",
                    "transfer_types_id": 1,
                    "starts_at": "18:00:00",
                    "ends_at": "19:30:00",
                    "day_of_week_start": 3,
                    "day_of_week_end": 3,
                    "is_temporary_schedule": 0,
                    "temporary_schedule_starts_at": null,
                    "temporary_schedule_ends_at": null,
                    "created_at": "2024-02-22 16:30:42",
                    "updated_at": "2024-02-22 16:30:43",
                    "max_collectors": 1,
                    "day_of_week_start_label": "l_wednesday_full",
                    "day_of_week_end_label": "l_wednesday_full",
                    "difference_in_days": 0,
                    "primary_charity_branch": {
                        "uuid": "328c865c-d636-49ad-920e-19a990015951",
                        "expires_at": null,
                        "starts_at_x_days_from_acceptance": null,
                        "starts_at_date": null,
                        "created_at": "2024-02-22T16:30:43.000000Z",
                        "updated_at": "2024-02-22T16:30:43.000000Z",
                        "tsm_current_state": "Activated",
                        "scheduled_activation_date": null,
                        "tsm_current_state_label": "activated",
                        "charity_branch": {
                            "uuid": "0b266d66-edc3-422c-83c8-265ad9efb92e",
                            "name": "Green Planet Charity IOFN 1.5",
                            "countries_id": 2963597,
                            "provinces_id": 7521316,
                            "counties_id": 2962567,
                            "official_id": "GPC:2225",
                            "address_1": "16 Oriel Park",
                            "address_2": "Scarnageeragh",
                            "city_town": "Emyvale",
                            "post_code": "H18 VW65",
                            "phone": "+35316764758",
                            "latitude": "54.34100180",
                            "longitude": "-6.97874490",
                            "timezone": "Europe/Dublin",
                            "locale": "en_IE",
                            "is_active": 1,
                            "is_foodboard_allowed": 1,
                            "esign": 0,
                            "send_daily_donations_reminders": false,
                            "send_instant_donations_reminders": false,
                            "offers_token_counter": 0,
                            "prepare_donation_option": "l_product_and_category",
                            "default_categories_only": 0,
                            "approved_products_only": 0,
                            "geofilter_unit_of_distance": "l_kilometers",
                            "collection_delivery": null,
                            "created_at": "2024-02-22T16:29:01.000000Z",
                            "updated_at": "2024-02-22T16:29:01.000000Z",
                            "deleted_at": null,
                            "category_min": 0,
                            "category_max": 100,
                            "donation_window_cutoff": 12,
                            "transfer_window_cutoff": 24,
                            "max_collection_window": 1,
                            "organisation_logo": "666836f161a9bb05eb5eb.png",
                            "network_storage_types": [
                                {
                                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                },
                                {
                                    "uuid": "6b70c833-2794-4252-b095-fb58a330fbee",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                }
                            ],
                            "in_line_address": "16 Oriel Park, Scarnageeragh, Emyvale H18 VW65, Co. Monaghan, Ulster, Ireland",
                            "storage_types": [
                                {
                                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                },
                                {
                                    "uuid": "6b70c833-2794-4252-b095-fb58a330fbee",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                }
                            ]
                        }
                    },
                    "invited_branch": [],
                    "collection_window_waitlist": []
                }
            ],
            [
                {
                    "uuid": "0189f3ff-53ee-4e38-95e3-84ec7650bc0d",
                    "transfer_types_id": 1,
                    "starts_at": "18:00:00",
                    "ends_at": "19:30:00",
                    "day_of_week_start": 4,
                    "day_of_week_end": 4,
                    "is_temporary_schedule": 0,
                    "temporary_schedule_starts_at": null,
                    "temporary_schedule_ends_at": null,
                    "created_at": "2024-02-22 16:30:43",
                    "updated_at": "2024-02-22 16:30:43",
                    "max_collectors": 1,
                    "day_of_week_start_label": "l_thursday_full",
                    "day_of_week_end_label": "l_thursday_full",
                    "difference_in_days": 0,
                    "primary_charity_branch": {
                        "uuid": "e0100f80-30cc-4e47-b0cb-6c7ed5f0f35f",
                        "expires_at": null,
                        "starts_at_x_days_from_acceptance": null,
                        "starts_at_date": null,
                        "created_at": "2024-02-22T16:30:43.000000Z",
                        "updated_at": "2024-02-22T16:30:43.000000Z",
                        "tsm_current_state": "Activated",
                        "scheduled_activation_date": null,
                        "tsm_current_state_label": "activated",
                        "charity_branch": {
                            "uuid": "0b266d66-edc3-422c-83c8-265ad9efb92e",
                            "name": "Green Planet Charity IOFN 1.5",
                            "countries_id": 2963597,
                            "provinces_id": 7521316,
                            "counties_id": 2962567,
                            "official_id": "GPC:2225",
                            "address_1": "16 Oriel Park",
                            "address_2": "Scarnageeragh",
                            "city_town": "Emyvale",
                            "post_code": "H18 VW65",
                            "phone": "+35316764758",
                            "latitude": "54.34100180",
                            "longitude": "-6.97874490",
                            "timezone": "Europe/Dublin",
                            "locale": "en_IE",
                            "is_active": 1,
                            "is_foodboard_allowed": 1,
                            "esign": 0,
                            "send_daily_donations_reminders": false,
                            "send_instant_donations_reminders": false,
                            "offers_token_counter": 0,
                            "prepare_donation_option": "l_product_and_category",
                            "default_categories_only": 0,
                            "approved_products_only": 0,
                            "geofilter_unit_of_distance": "l_kilometers",
                            "collection_delivery": null,
                            "created_at": "2024-02-22T16:29:01.000000Z",
                            "updated_at": "2024-02-22T16:29:01.000000Z",
                            "deleted_at": null,
                            "category_min": 0,
                            "category_max": 100,
                            "donation_window_cutoff": 12,
                            "transfer_window_cutoff": 24,
                            "max_collection_window": 1,
                            "organisation_logo": "666836f161a9bb05eb5eb.png",
                            "network_storage_types": [
                                {
                                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                },
                                {
                                    "uuid": "6b70c833-2794-4252-b095-fb58a330fbee",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                }
                            ],
                            "in_line_address": "16 Oriel Park, Scarnageeragh, Emyvale H18 VW65, Co. Monaghan, Ulster, Ireland",
                            "storage_types": [
                                {
                                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                },
                                {
                                    "uuid": "6b70c833-2794-4252-b095-fb58a330fbee",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                }
                            ]
                        }
                    },
                    "invited_branch": [],
                    "collection_window_waitlist": []
                }
            ],
            [
                {
                    "uuid": "c833e1e3-2a31-4537-945d-55d06cea36ed",
                    "transfer_types_id": 1,
                    "starts_at": "18:00:00",
                    "ends_at": "19:30:00",
                    "day_of_week_start": 5,
                    "day_of_week_end": 5,
                    "is_temporary_schedule": 0,
                    "temporary_schedule_starts_at": null,
                    "temporary_schedule_ends_at": null,
                    "created_at": "2024-02-22 16:30:43",
                    "updated_at": "2024-02-22 16:30:43",
                    "max_collectors": 1,
                    "day_of_week_start_label": "l_friday_full",
                    "day_of_week_end_label": "l_friday_full",
                    "difference_in_days": 0,
                    "primary_charity_branch": {
                        "uuid": "34add23c-dda0-4991-b1a9-da1b027f1e18",
                        "expires_at": null,
                        "starts_at_x_days_from_acceptance": null,
                        "starts_at_date": null,
                        "created_at": "2024-02-22T16:30:43.000000Z",
                        "updated_at": "2024-02-22T16:30:43.000000Z",
                        "tsm_current_state": "Activated",
                        "scheduled_activation_date": null,
                        "tsm_current_state_label": "activated",
                        "charity_branch": {
                            "uuid": "0b266d66-edc3-422c-83c8-265ad9efb92e",
                            "name": "Green Planet Charity IOFN 1.5",
                            "countries_id": 2963597,
                            "provinces_id": 7521316,
                            "counties_id": 2962567,
                            "official_id": "GPC:2225",
                            "address_1": "16 Oriel Park",
                            "address_2": "Scarnageeragh",
                            "city_town": "Emyvale",
                            "post_code": "H18 VW65",
                            "phone": "+35316764758",
                            "latitude": "54.34100180",
                            "longitude": "-6.97874490",
                            "timezone": "Europe/Dublin",
                            "locale": "en_IE",
                            "is_active": 1,
                            "is_foodboard_allowed": 1,
                            "esign": 0,
                            "send_daily_donations_reminders": false,
                            "send_instant_donations_reminders": false,
                            "offers_token_counter": 0,
                            "prepare_donation_option": "l_product_and_category",
                            "default_categories_only": 0,
                            "approved_products_only": 0,
                            "geofilter_unit_of_distance": "l_kilometers",
                            "collection_delivery": null,
                            "created_at": "2024-02-22T16:29:01.000000Z",
                            "updated_at": "2024-02-22T16:29:01.000000Z",
                            "deleted_at": null,
                            "category_min": 0,
                            "category_max": 100,
                            "donation_window_cutoff": 12,
                            "transfer_window_cutoff": 24,
                            "max_collection_window": 1,
                            "organisation_logo": "666836f161a9bb05eb5eb.png",
                            "network_storage_types": [
                                {
                                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                },
                                {
                                    "uuid": "6b70c833-2794-4252-b095-fb58a330fbee",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                }
                            ],
                            "in_line_address": "16 Oriel Park, Scarnageeragh, Emyvale H18 VW65, Co. Monaghan, Ulster, Ireland",
                            "storage_types": [
                                {
                                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                },
                                {
                                    "uuid": "6b70c833-2794-4252-b095-fb58a330fbee",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                }
                            ]
                        }
                    },
                    "invited_branch": [],
                    "collection_window_waitlist": []
                }
            ],
            [],
            [
                {
                    "uuid": "1a84839c-99c9-4268-afec-6a179f4cc13d",
                    "transfer_types_id": 1,
                    "starts_at": "18:00:00",
                    "ends_at": "19:30:00",
                    "day_of_week_start": 7,
                    "day_of_week_end": 7,
                    "is_temporary_schedule": 0,
                    "temporary_schedule_starts_at": null,
                    "temporary_schedule_ends_at": null,
                    "created_at": "2024-02-22 16:30:43",
                    "updated_at": "2024-02-22 16:30:43",
                    "max_collectors": 1,
                    "day_of_week_start_label": "l_sunday_full",
                    "day_of_week_end_label": "l_sunday_full",
                    "difference_in_days": 0,
                    "primary_charity_branch": {
                        "uuid": "082386b2-d912-43e8-bccc-f6cb6b4fc539",
                        "expires_at": null,
                        "starts_at_x_days_from_acceptance": null,
                        "starts_at_date": null,
                        "created_at": "2024-02-22T16:30:43.000000Z",
                        "updated_at": "2024-02-22T16:30:43.000000Z",
                        "tsm_current_state": "Activated",
                        "scheduled_activation_date": null,
                        "tsm_current_state_label": "activated",
                        "charity_branch": {
                            "uuid": "0b266d66-edc3-422c-83c8-265ad9efb92e",
                            "name": "Green Planet Charity IOFN 1.5",
                            "countries_id": 2963597,
                            "provinces_id": 7521316,
                            "counties_id": 2962567,
                            "official_id": "GPC:2225",
                            "address_1": "16 Oriel Park",
                            "address_2": "Scarnageeragh",
                            "city_town": "Emyvale",
                            "post_code": "H18 VW65",
                            "phone": "+35316764758",
                            "latitude": "54.34100180",
                            "longitude": "-6.97874490",
                            "timezone": "Europe/Dublin",
                            "locale": "en_IE",
                            "is_active": 1,
                            "is_foodboard_allowed": 1,
                            "esign": 0,
                            "send_daily_donations_reminders": false,
                            "send_instant_donations_reminders": false,
                            "offers_token_counter": 0,
                            "prepare_donation_option": "l_product_and_category",
                            "default_categories_only": 0,
                            "approved_products_only": 0,
                            "geofilter_unit_of_distance": "l_kilometers",
                            "collection_delivery": null,
                            "created_at": "2024-02-22T16:29:01.000000Z",
                            "updated_at": "2024-02-22T16:29:01.000000Z",
                            "deleted_at": null,
                            "category_min": 0,
                            "category_max": 100,
                            "donation_window_cutoff": 12,
                            "transfer_window_cutoff": 24,
                            "max_collection_window": 1,
                            "organisation_logo": "666836f161a9bb05eb5eb.png",
                            "network_storage_types": [
                                {
                                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                },
                                {
                                    "uuid": "6b70c833-2794-4252-b095-fb58a330fbee",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                }
                            ],
                            "in_line_address": "16 Oriel Park, Scarnageeragh, Emyvale H18 VW65, Co. Monaghan, Ulster, Ireland",
                            "storage_types": [
                                {
                                    "uuid": "9df804bd-26c9-4b0b-8d33-5a88b58c8a9d",
                                    "name": "l_ambient",
                                    "label": "l_ambient",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                },
                                {
                                    "uuid": "6b70c833-2794-4252-b095-fb58a330fbee",
                                    "name": "l_chilled",
                                    "label": "l_chilled",
                                    "is_active": 1,
                                    "created_at": "2021-03-15T00:26:32.000000Z",
                                    "updated_at": "2021-03-15T00:26:32.000000Z"
                                }
                            ]
                        }
                    },
                    "invited_branch": [],
                    "collection_window_waitlist": []
                }
            ]
        ],
        "branch_closures": [
            [],
            [],
            [],
            [],
            [],
            [],
            []
        ]
    },
    "frontendRedirect": false,
    "callTime": 0.6122519969940186
}
 

Request      

GET api/foodnet/network_memberships/{network_membership_uuid}/schedules

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

network_membership_uuid   string   

The UUID of the network membership to get schedules for. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Query Parameters

page   integer  optional  

The page number to return Example: 16

Network Membership

responseFile 200 api_docs_responses/network_memberships/network_membership_index_200.json

Get All Network Memberships

requires authentication

This endpoint retrieves all of a user's network memberships.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/foodnet/network_memberships" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2500
 

{
    "status": "success",
    "data": {
        "data": [
            {
                "name": "FoodCloud branch 1",
                "collection_delivery": null,
                "tsm_current_state": "Paused",
                "uuid": "3ab0070b-f817-416a-b3ea-e06dc5c98e68",
                "created_at": "2021-03-15T00:26:32.000000Z",
                "updated_at": "2025-02-27T14:23:17.000000Z",
                "cancellation_requested": 0,
                "type": "FoodBank",
                "branch_uuid": "fbaf899a-c360-4dee-8618-a0bfefd8bace",
                "foodnet": "Deprecated",
                "is_removable": 0,
                "transitions": {
                    "unpause": {
                        "color": "green",
                        "icon": "far fa-play-circle",
                        "name": "Unpause",
                        "context": "foodnet_admin"
                    }
                },
                "status_style": {
                    "color": "yellow",
                    "icon": "fas fa-pause-circle"
                },
                "tsm_current_state_label": "paused",
                "network": {
                    "uuid": "75449cc2-e106-40f0-845e-fbd06408be7b",
                    "activate_membership_required": 1,
                    "description": "A World Where No Good Food Goes To Waste",
                    "max_donation_volume_kg": 30000,
                    "donation_interval": 30,
                    "requirements": "A World Where No Good Food Goes To Waste",
                    "default_co2e": 3.2,
                    "default_meals_per_kg": 2.2,
                    "silence_collection_window_invitation_notifications": 1,
                    "silence_network_membership_notifications": null,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-06-18T11:28:08.000000Z",
                    "deleted_at": null,
                    "is_public": false,
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    }
                },
                "branch": {
                    "uuid": "fbaf899a-c360-4dee-8618-a0bfefd8bace",
                    "name": "FoodCloud branch 1",
                    "countries_id": 2963597,
                    "provinces_id": 7521313,
                    "counties_id": 2960935,
                    "official_id": null,
                    "address_1": null,
                    "address_2": null,
                    "city_town": null,
                    "post_code": null,
                    "phone": null,
                    "latitude": "0.00000000",
                    "longitude": "0.00000000",
                    "timezone": "Europe/Dublin",
                    "locale": "en_IE",
                    "is_active": 1,
                    "is_foodboard_allowed": 1,
                    "esign": 0,
                    "send_daily_donations_reminders": false,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_product_and_category",
                    "default_categories_only": 0,
                    "approved_products_only": 0,
                    "geofilter_unit_of_distance": "l_kilometers",
                    "collection_delivery": null,
                    "collector_authentication": "l_none",
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2023-01-13T15:07:54.000000Z",
                    "deleted_at": null,
                    "category_min": 0,
                    "category_max": 100,
                    "donation_window_cutoff": 12,
                    "transfer_window_cutoff": 24,
                    "max_collection_window": 1,
                    "in_line_address": "Co. Wicklow, Connaught, Ireland",
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    },
                    "users": [
                        {
                            "uuid": "9e90e7f3-b68b-482d-9eea-1f00ebb4a762",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-03-15T00:26:30.000000Z",
                            "updated_at": "2025-02-04T22:22:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "edb50ba5-1d9e-4be1-bde6-cd4fcd81e855",
                            "first_name": "Copia",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:07.000000Z",
                            "updated_at": "2021-04-19T10:41:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Copia Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "54600b1e-8a0f-43a6-964d-65bcba13609a",
                            "first_name": "Uk",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:08.000000Z",
                            "updated_at": "2021-03-15T00:58:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Uk Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "be5c9e0b-2e78-4fe3-9082-eb400500aa4a",
                            "first_name": "Ie",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:08.000000Z",
                            "updated_at": "2021-03-15T00:58:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ie Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5fc9c994-46ce-4f87-a07b-25ecad5fbfb8",
                            "first_name": "Carla",
                            "surname": "McSorley ",
                            "language_code": "en_IE",
                            "mobile_number": "+353831306452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2022-08-09T11:35:57.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Carla McSorley ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "3557a7f9-bdf6-4d6a-9346-d4aa607b0380",
                            "first_name": "Iseult",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2021-03-15T00:58:10.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Iseult ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "96243d0e-67d4-4279-ad01-cea97b0e4da5",
                            "first_name": "Jamesclifford",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "0044444444443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-05-04T13:33:25.000000Z",
                            "updated_at": "2025-02-19T09:14:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jamesclifford ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "4debc6dc-1dba-4225-852c-4636e2ab3d17",
                            "first_name": "Fcs",
                            "surname": "Yvonne Fallon ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-10-26T09:15:55.000000Z",
                            "updated_at": "2024-02-26T15:17:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Yvonne Fallon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0259f40b-5c73-4be6-aaaf-f1a9a7a4c805",
                            "first_name": "Rory",
                            "surname": "Fallon ",
                            "language_code": "en_IE",
                            "mobile_number": "+353838901286",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-12-05T10:08:07.000000Z",
                            "updated_at": "2021-03-22T08:12:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rory Fallon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a6a75333-f972-461e-b31b-f414b9207dd3",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313400",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-01-23T10:53:34.000000Z",
                            "updated_at": "2025-06-17T08:42:59.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Catherine Delaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "644362f1-f165-4190-aa4d-9109a62fe9c4",
                            "first_name": "Fcs",
                            "surname": "RorySupport ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2017-02-01T12:41:29.000000Z",
                            "updated_at": "2021-03-15T00:59:49.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs RorySupport ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0bcd59cf-dbb7-4890-a316-857a4abcec1b",
                            "first_name": "Eimear",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+353868123957",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-04-25T13:30:12.000000Z",
                            "updated_at": "2025-02-06T09:45:58.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Eimear ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6b7554c1-3fde-4d71-b2cb-bdcbb54de0d9",
                            "first_name": "Karen",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+353879676494",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-04-25T13:32:30.000000Z",
                            "updated_at": "2021-04-01T09:38:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Karen ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "25fb084c-14a2-4965-9376-581509cea581",
                            "first_name": "Fcs",
                            "surname": "Muirne Mac Manamon ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-07-31T14:19:07.000000Z",
                            "updated_at": "2021-10-13T08:56:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Muirne Mac Manamon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "151cf991-42b4-4121-ace4-2135fdcc9cbb",
                            "first_name": "Rory",
                            "surname": "O'Connell",
                            "language_code": "en_IE",
                            "mobile_number": "+353874582363",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-08-14T08:20:54.000000Z",
                            "updated_at": "2025-03-20T12:33:00.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rory O'Connell",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "36b56997-7416-4337-91ff-f8ab28678559",
                            "first_name": "FoodCloud",
                            "surname": "Tech Demo ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-03-06T15:51:53.000000Z",
                            "updated_at": "2021-03-15T01:02:44.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "FoodCloud Tech Demo ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c4c48ae4-e743-42dd-a2d6-cc72d2f4b873",
                            "first_name": "Steven",
                            "surname": "Pettigrew",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2018-03-19T00:22:55.000000Z",
                            "updated_at": "2023-12-27T10:42:32.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steven Pettigrew",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5760a1cd-98af-4a03-bc15-b82c8fd22027",
                            "first_name": "Rosie",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-05-08T15:21:46.000000Z",
                            "updated_at": "2021-11-12T09:12:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rosie ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "76145941-e6ad-4277-bed1-19232d1cc10f",
                            "first_name": "Polish",
                            "surname": "Demo Admin ",
                            "language_code": "pl_IE",
                            "mobile_number": "+3481172478613",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-23T13:26:29.000000Z",
                            "updated_at": "2021-03-15T01:03:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Polish Demo Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "74bccb4f-cac6-4ec1-aa9f-be788a55860d",
                            "first_name": "Polish",
                            "surname": "Test Admin ",
                            "language_code": "pl_IE",
                            "mobile_number": "+3481172478613",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-21T10:26:29.000000Z",
                            "updated_at": "2021-03-15T01:03:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Polish Test Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1635b37f-8d56-4e34-9223-0fccbf8c2f8d",
                            "first_name": "Robyn",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-27T16:00:43.000000Z",
                            "updated_at": "2021-03-22T08:55:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Robyn ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "83bdc772-9f08-4d90-b29f-f6d92f5645ba",
                            "first_name": "Chill",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2018-08-29T09:44:15.000000Z",
                            "updated_at": "2025-03-18T18:41:29.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Chill ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "587fd580-e077-4fe4-a9df-a294e8aa32e4",
                            "first_name": "Ciara",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2018-11-02T14:45:40.000000Z",
                            "updated_at": "2025-06-04T11:40:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ciara ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2a287e42-7ffb-41ea-be1d-0548429b142f",
                            "first_name": "Fcs",
                            "surname": "Evan Meehan ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2019-04-26T11:49:50.000000Z",
                            "updated_at": "2025-01-17T16:15:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Evan Meehan ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "cee19fe1-5836-45b6-a74c-e6c0789c7c0f",
                            "first_name": "Steven",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2019-06-05T13:29:10.000000Z",
                            "updated_at": "2021-03-15T01:05:10.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steven Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "545a5a55-b86f-4359-9061-0cf9915737b6",
                            "first_name": "Threadable",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+1234567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 1,
                            "suppress_email": 1,
                            "created_at": "2019-08-26T12:47:10.000000Z",
                            "updated_at": "2021-03-15T01:05:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Threadable ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "38ffe00a-57b0-4ff1-a206-ddca067a7633",
                            "first_name": "Daniel",
                            "surname": " (Migration Orphaned User #1)",
                            "language_code": "en_IE",
                            "mobile_number": "+440000012001",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2019-11-13T13:01:49.000000Z",
                            "updated_at": "2021-03-15T01:05:56.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Daniel  (Migration Orphaned User #1)",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6fec8ae4-0c7e-42ad-a4ae-c6dd90e04e56",
                            "first_name": "Maudrag",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+447778114660",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2020-01-07T12:48:04.000000Z",
                            "updated_at": "2024-11-05T10:21:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maudrag ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8216d50a-5e47-44c0-89a9-935dd437cb96",
                            "first_name": "Dev",
                            "surname": "FD Dev Team",
                            "language_code": "en_IE",
                            "mobile_number": "+353863987977",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2020-02-05T16:13:45.000000Z",
                            "updated_at": "2022-08-30T14:42:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dev FD Dev Team",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2b08724d-5418-4229-a856-ddb21e5b0775",
                            "first_name": "Fcs",
                            "surname": "Eoin OF ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2020-09-30T14:35:28.000000Z",
                            "updated_at": "2024-08-07T13:51:08.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Eoin OF ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "3cba186e-c33c-45fc-ba83-16ae85c17e12",
                            "first_name": "Fcs",
                            "surname": "Vicki Byrne ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2020-09-30T14:37:12.000000Z",
                            "updated_at": "2021-03-23T11:08:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Vicki Byrne ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "47046ca1-9060-4224-95c6-ba08cbebe901",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 1,
                            "suppress_email": 1,
                            "created_at": "2020-11-16T14:25:49.000000Z",
                            "updated_at": "2024-09-30T19:00:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "597f934a-4e92-4faf-b049-b47b24d9ed10",
                            "first_name": "Jessica",
                            "surname": "Greene ",
                            "language_code": "en_IE",
                            "mobile_number": "+353872708024",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-02-10T17:43:30.000000Z",
                            "updated_at": "2021-03-15T01:07:02.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jessica Greene ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8bb70fc1-2665-4a1c-8b78-b697d757ec2c",
                            "first_name": "Fsc",
                            "surname": "Noreen ",
                            "language_code": "en_GB",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-02-25T16:36:48.000000Z",
                            "updated_at": "2024-12-17T17:24:08.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fsc Noreen ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "334574a2-babe-40f0-bfb6-12524bf55bb7",
                            "first_name": "Rourke",
                            "surname": "Bradley",
                            "language_code": "en_IE",
                            "mobile_number": "+353858432189",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-04-15T13:12:55.000000Z",
                            "updated_at": "2023-06-06T14:04:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rourke Bradley",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c78a23d1-3da8-43e1-be54-1e62a357f903",
                            "first_name": "Ebby",
                            "surname": "Stafford",
                            "language_code": "en_IE",
                            "mobile_number": "+353415313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-05-06T16:05:15.000000Z",
                            "updated_at": "2025-03-25T13:06:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ebby Stafford",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "aafbb4b0-929e-4ee4-abe1-49fd0d4c7ab6",
                            "first_name": "Aisling",
                            "surname": "Mulvaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-06-21T14:44:56.000000Z",
                            "updated_at": "2025-02-25T15:43:27.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aisling Mulvaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6c6fd975-2124-4cbc-8e03-13bae51e9fc2",
                            "first_name": "Paul",
                            "surname": "Deegan",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-08-18T16:17:08.000000Z",
                            "updated_at": "2021-08-18T17:20:52.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Paul Deegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5d2cdf37-6314-460e-8c73-f0be3f008252",
                            "first_name": "Grace",
                            "surname": "Maughan",
                            "language_code": "en_IE",
                            "mobile_number": "+353856783452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-09-03T13:36:12.000000Z",
                            "updated_at": "2021-09-03T13:45:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Grace Maughan",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "7c9b80a5-c277-4197-8075-7d51427cf375",
                            "first_name": "Community Development",
                            "surname": "Team",
                            "language_code": "en_IE",
                            "mobile_number": "+353871234576",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2022-07-20T08:16:11.000000Z",
                            "updated_at": "2024-09-02T15:10:05.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Community Development Team",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0e040982-147b-4011-a09f-ac5afc42688d",
                            "first_name": "Mary Ellen",
                            "surname": "Angland",
                            "language_code": "en_IE",
                            "mobile_number": "+353868006146",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2022-07-29T13:50:50.000000Z",
                            "updated_at": "2024-05-20T11:33:48.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Mary Ellen Angland",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "62e9ef7c-53f4-4e37-bc5b-8cb428891391",
                            "first_name": "Devika",
                            "surname": "Kulkarni",
                            "language_code": "en_IE",
                            "mobile_number": "+353837654531",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-02-13T12:08:32.000000Z",
                            "updated_at": "2025-01-24T10:49:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Devika Kulkarni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "9bf48363-a1f4-4926-a150-a9ebc49b455d",
                            "first_name": "Dayo",
                            "surname": "Aderemi",
                            "language_code": "en_IE",
                            "mobile_number": "+353879114567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-05-26T12:07:15.000000Z",
                            "updated_at": "2025-05-26T17:00:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dayo Aderemi",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0a6cffe8-6cc8-4a1e-ae4d-72e12e5a4103",
                            "first_name": "Fcs Adriana",
                            "surname": "Wiedeheft",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-06-08T10:54:18.000000Z",
                            "updated_at": "2023-08-03T11:00:37.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Adriana Wiedeheft",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "81d9f413-d87c-45d1-aaf4-49c36f5bcdb9",
                            "first_name": "Lorraine",
                            "surname": "Bourke",
                            "language_code": "en_IE",
                            "mobile_number": "+353897654989",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-07T15:58:21.000000Z",
                            "updated_at": "2023-11-01T10:57:28.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lorraine Bourke",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "994dc772-3d06-4347-9edb-e78dc311c044",
                            "first_name": "Joana",
                            "surname": "Guttler",
                            "language_code": "en_IE",
                            "mobile_number": "+353875896325",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-11T14:56:46.000000Z",
                            "updated_at": "2025-03-24T15:55:54.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Joana Guttler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c29c9db1-51dd-4a52-9eca-d3777587333c",
                            "first_name": "Eva",
                            "surname": "Soler",
                            "language_code": "en_GB",
                            "mobile_number": "+447763581443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-14T14:53:24.000000Z",
                            "updated_at": "2024-11-27T09:26:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Eva Soler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1636c930-c2e6-4fe8-9134-28152a44f565",
                            "first_name": "Prachi",
                            "surname": "Patkar",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-12-13T15:53:21.000000Z",
                            "updated_at": "2024-10-27T12:28:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Prachi Patkar",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e908a273-7428-4f56-b349-250420e78e03",
                            "first_name": "Yasmin",
                            "surname": "Hayes",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-10T09:52:35.000000Z",
                            "updated_at": "2024-05-14T08:09:47.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Yasmin Hayes",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "86d4c0bb-7910-463a-9f93-e46483fa6b50",
                            "first_name": "Silvia Touris",
                            "surname": "Santorum",
                            "language_code": "en_IE",
                            "mobile_number": "+353877998876",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-30T14:38:53.000000Z",
                            "updated_at": "2024-01-30T15:04:39.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Silvia Touris Santorum",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "574da0c0-beb7-49ec-82fc-5a25d79cf5b0",
                            "first_name": "Brian",
                            "surname": "Keogh",
                            "language_code": "en_IE",
                            "mobile_number": "+353857852147",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-02-09T11:50:19.000000Z",
                            "updated_at": "2024-03-06T14:45:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Brian Keogh",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "95d2903a-f8b4-4e14-9658-d3da76ed6dc4",
                            "first_name": "Janet",
                            "surname": "Oluniran",
                            "language_code": "en_IE",
                            "mobile_number": "+353111222111",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:11:53.000000Z",
                            "updated_at": "2024-04-03T09:06:17.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Janet Oluniran",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "effa0de3-701c-4afa-8112-24ac3d15d81c",
                            "first_name": "Fcs Joseph",
                            "surname": "Oginni",
                            "language_code": "en_IE",
                            "mobile_number": "+353856662222",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:17:18.000000Z",
                            "updated_at": "2024-10-02T10:32:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Joseph Oginni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "f4ac62d0-216a-4c51-9d95-e9c8337bc9d9",
                            "first_name": "John",
                            "surname": "Gleave",
                            "language_code": "en_IE",
                            "mobile_number": "+353833333333",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:18:24.000000Z",
                            "updated_at": "2025-02-27T14:23:17.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "John Gleave",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2524965c-cb04-4194-8a9e-46233152086a",
                            "first_name": "Anthony",
                            "surname": "Braddish",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-04-09T13:36:12.000000Z",
                            "updated_at": "2025-03-27T11:35:18.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Anthony Braddish",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "29593317-6e12-40e2-bff2-68d5b0268a32",
                            "first_name": "Killian",
                            "surname": "Waldron",
                            "language_code": "en_IE",
                            "mobile_number": "+353877999987",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-04-23T09:22:41.000000Z",
                            "updated_at": "2025-06-24T14:20:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Killian Waldron",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "74742750-6405-4b2a-a7dc-104a74cb88b5",
                            "first_name": "Chris",
                            "surname": "O'Kane",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-05-01T10:47:54.000000Z",
                            "updated_at": "2024-05-14T10:59:22.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Chris O'Kane",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0b2d62be-2df6-4f14-aac8-a8786f48a50c",
                            "first_name": "Maryfaith",
                            "surname": "Ngwueche",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-09-04T11:51:22.000000Z",
                            "updated_at": "2025-04-23T12:45:45.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maryfaith Ngwueche",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "7e2917f8-6041-477e-ae06-3dfc8bedf108",
                            "first_name": "Ana",
                            "surname": "Ryan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-23T13:32:35.000000Z",
                            "updated_at": "2025-03-06T15:44:56.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ana Ryan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c727dd4d-0646-4844-b1d1-9a96e3d29e27",
                            "first_name": "Aaron",
                            "surname": "Lawler",
                            "language_code": "en_IE",
                            "mobile_number": "+353830161522",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-29T15:55:14.000000Z",
                            "updated_at": "2025-03-12T11:56:52.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aaron Lawler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bfd9a45d-eccf-49d3-a1c6-26b60f81e169",
                            "first_name": "Dean",
                            "surname": "Heenan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-12-02T16:07:54.000000Z",
                            "updated_at": "2025-03-11T09:19:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dean Heenan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b798fe5a-20ad-40e7-8729-a4a4b2e8e3aa",
                            "first_name": "Aoife",
                            "surname": "Sullivan",
                            "language_code": "en_IE",
                            "mobile_number": "+353877779998",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T09:33:41.000000Z",
                            "updated_at": "2025-01-23T12:40:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aoife Sullivan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a8ebfb7f-00f7-4d6c-bba0-a154b8ac15c2",
                            "first_name": "Mo PROD",
                            "surname": "Zier",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T12:26:04.000000Z",
                            "updated_at": "2025-05-14T10:00:49.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Mo PROD Zier",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8ac642ed-d710-4041-8175-4d6dd5ce4262",
                            "first_name": "Lisa",
                            "surname": "Keegan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-13T11:39:06.000000Z",
                            "updated_at": "2025-02-13T11:40:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lisa Keegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "eb18ff56-9c82-429f-8d6f-c64fbbba912f",
                            "first_name": "Jackie",
                            "surname": "McKeown",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T11:19:19.000000Z",
                            "updated_at": "2025-02-20T11:21:15.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jackie McKeown",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c153f9b4-9bbc-4f22-825e-7d5ad45a8b51",
                            "first_name": "Pierce",
                            "surname": "Lowe",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T15:35:14.000000Z",
                            "updated_at": "2025-02-20T15:36:41.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Pierce Lowe",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "68f88f11-3a02-4083-bb44-bfd0a1109917",
                            "first_name": "Hazel",
                            "surname": "Grassie",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-26T15:03:55.000000Z",
                            "updated_at": "2025-02-26T15:05:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Hazel Grassie",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        }
                    ]
                }
            },
            {
                "name": "FoodCloud Dublin",
                "collection_delivery": "collection_delivery",
                "tsm_current_state": "Activated",
                "uuid": "9edad1ea-7a8f-4246-aeda-70db86f00fcd",
                "created_at": "2021-03-15T00:26:32.000000Z",
                "updated_at": "2025-05-12T15:42:05.000000Z",
                "cancellation_requested": 0,
                "type": "FoodBank",
                "branch_uuid": "366507f1-185d-4b5c-8dab-25c4db0fac2f",
                "foodnet": "Deprecated",
                "is_removable": 0,
                "transitions": {
                    "pause": {
                        "color": "yellow",
                        "icon": "fas fa-pause-circle",
                        "name": "Pause",
                        "context": "foodnet_admin"
                    },
                    "expel": {
                        "color": "red",
                        "icon": "fas fa-trash",
                        "name": "Expel",
                        "context": "foodnet_admin"
                    },
                    "suspend": {
                        "color": "black",
                        "icon": "fas fa-pause-circle",
                        "name": "Suspend",
                        "context": "foodnet_admin"
                    }
                },
                "status_style": {
                    "color": "green",
                    "icon": "far fa-play-circle"
                },
                "tsm_current_state_label": "activated",
                "network": {
                    "uuid": "75449cc2-e106-40f0-845e-fbd06408be7b",
                    "activate_membership_required": 1,
                    "description": "A World Where No Good Food Goes To Waste",
                    "max_donation_volume_kg": 30000,
                    "donation_interval": 30,
                    "requirements": "A World Where No Good Food Goes To Waste",
                    "default_co2e": 3.2,
                    "default_meals_per_kg": 2.2,
                    "silence_collection_window_invitation_notifications": 1,
                    "silence_network_membership_notifications": null,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-06-18T11:28:08.000000Z",
                    "deleted_at": null,
                    "is_public": false,
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    }
                },
                "branch": {
                    "uuid": "366507f1-185d-4b5c-8dab-25c4db0fac2f",
                    "name": "FoodCloud Dublin",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "address_1": "Unit 8 Broomhill Business Park, Broomhill Road",
                    "address_2": "Tallaght",
                    "city_town": "Dublin 24",
                    "post_code": "D24 CD32",
                    "phone": "+353879098933",
                    "latitude": "53.28800328",
                    "longitude": "-6.43549982",
                    "timezone": "Europe/London",
                    "locale": "en_GB",
                    "is_active": 1,
                    "is_foodboard_allowed": 1,
                    "esign": 1,
                    "send_daily_donations_reminders": true,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_product_and_category",
                    "default_categories_only": 0,
                    "approved_products_only": 0,
                    "geofilter_unit_of_distance": "l_kilometers",
                    "collection_delivery": "collection_delivery",
                    "collector_authentication": "l_esignature",
                    "created_at": "2021-03-15T00:26:32.000000Z",
                    "updated_at": "2025-05-12T15:42:05.000000Z",
                    "deleted_at": null,
                    "category_min": 0,
                    "category_max": 100,
                    "donation_window_cutoff": 12,
                    "transfer_window_cutoff": 24,
                    "max_collection_window": 1,
                    "in_line_address": "Unit 8 Broomhill Business Park, Broomhill Road, Tallaght, Dublin 24 D24 CD32, South Dublin, Leinster, Ireland",
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    },
                    "users": [
                        {
                            "uuid": "9e90e7f3-b68b-482d-9eea-1f00ebb4a762",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-03-15T00:26:30.000000Z",
                            "updated_at": "2025-02-04T22:22:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "edb50ba5-1d9e-4be1-bde6-cd4fcd81e855",
                            "first_name": "Copia",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:07.000000Z",
                            "updated_at": "2021-04-19T10:41:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Copia Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "54600b1e-8a0f-43a6-964d-65bcba13609a",
                            "first_name": "Uk",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:08.000000Z",
                            "updated_at": "2021-03-15T00:58:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Uk Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "be5c9e0b-2e78-4fe3-9082-eb400500aa4a",
                            "first_name": "Ie",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:08.000000Z",
                            "updated_at": "2021-03-15T00:58:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ie Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5fc9c994-46ce-4f87-a07b-25ecad5fbfb8",
                            "first_name": "Carla",
                            "surname": "McSorley ",
                            "language_code": "en_IE",
                            "mobile_number": "+353831306452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2022-08-09T11:35:57.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Carla McSorley ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "3557a7f9-bdf6-4d6a-9346-d4aa607b0380",
                            "first_name": "Iseult",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2021-03-15T00:58:10.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Iseult ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "96243d0e-67d4-4279-ad01-cea97b0e4da5",
                            "first_name": "Jamesclifford",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "0044444444443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-05-04T13:33:25.000000Z",
                            "updated_at": "2025-02-19T09:14:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jamesclifford ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "4debc6dc-1dba-4225-852c-4636e2ab3d17",
                            "first_name": "Fcs",
                            "surname": "Yvonne Fallon ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-10-26T09:15:55.000000Z",
                            "updated_at": "2024-02-26T15:17:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Yvonne Fallon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0259f40b-5c73-4be6-aaaf-f1a9a7a4c805",
                            "first_name": "Rory",
                            "surname": "Fallon ",
                            "language_code": "en_IE",
                            "mobile_number": "+353838901286",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-12-05T10:08:07.000000Z",
                            "updated_at": "2021-03-22T08:12:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rory Fallon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a6a75333-f972-461e-b31b-f414b9207dd3",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313400",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-01-23T10:53:34.000000Z",
                            "updated_at": "2025-06-17T08:42:59.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Catherine Delaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "644362f1-f165-4190-aa4d-9109a62fe9c4",
                            "first_name": "Fcs",
                            "surname": "RorySupport ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2017-02-01T12:41:29.000000Z",
                            "updated_at": "2021-03-15T00:59:49.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs RorySupport ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0bcd59cf-dbb7-4890-a316-857a4abcec1b",
                            "first_name": "Eimear",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+353868123957",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-04-25T13:30:12.000000Z",
                            "updated_at": "2025-02-06T09:45:58.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Eimear ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6b7554c1-3fde-4d71-b2cb-bdcbb54de0d9",
                            "first_name": "Karen",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+353879676494",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-04-25T13:32:30.000000Z",
                            "updated_at": "2021-04-01T09:38:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Karen ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "25fb084c-14a2-4965-9376-581509cea581",
                            "first_name": "Fcs",
                            "surname": "Muirne Mac Manamon ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-07-31T14:19:07.000000Z",
                            "updated_at": "2021-10-13T08:56:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Muirne Mac Manamon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "151cf991-42b4-4121-ace4-2135fdcc9cbb",
                            "first_name": "Rory",
                            "surname": "O'Connell",
                            "language_code": "en_IE",
                            "mobile_number": "+353874582363",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-08-14T08:20:54.000000Z",
                            "updated_at": "2025-03-20T12:33:00.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rory O'Connell",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "36b56997-7416-4337-91ff-f8ab28678559",
                            "first_name": "FoodCloud",
                            "surname": "Tech Demo ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-03-06T15:51:53.000000Z",
                            "updated_at": "2021-03-15T01:02:44.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "FoodCloud Tech Demo ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c4c48ae4-e743-42dd-a2d6-cc72d2f4b873",
                            "first_name": "Steven",
                            "surname": "Pettigrew",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2018-03-19T00:22:55.000000Z",
                            "updated_at": "2023-12-27T10:42:32.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steven Pettigrew",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5760a1cd-98af-4a03-bc15-b82c8fd22027",
                            "first_name": "Rosie",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-05-08T15:21:46.000000Z",
                            "updated_at": "2021-11-12T09:12:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rosie ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "76145941-e6ad-4277-bed1-19232d1cc10f",
                            "first_name": "Polish",
                            "surname": "Demo Admin ",
                            "language_code": "pl_IE",
                            "mobile_number": "+3481172478613",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-23T13:26:29.000000Z",
                            "updated_at": "2021-03-15T01:03:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Polish Demo Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "74bccb4f-cac6-4ec1-aa9f-be788a55860d",
                            "first_name": "Polish",
                            "surname": "Test Admin ",
                            "language_code": "pl_IE",
                            "mobile_number": "+3481172478613",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-21T10:26:29.000000Z",
                            "updated_at": "2021-03-15T01:03:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Polish Test Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1635b37f-8d56-4e34-9223-0fccbf8c2f8d",
                            "first_name": "Robyn",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-27T16:00:43.000000Z",
                            "updated_at": "2021-03-22T08:55:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Robyn ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "83bdc772-9f08-4d90-b29f-f6d92f5645ba",
                            "first_name": "Chill",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2018-08-29T09:44:15.000000Z",
                            "updated_at": "2025-03-18T18:41:29.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Chill ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "ad5f9c31-0f4b-48d1-b358-7d53ddc68460",
                            "first_name": "Australian",
                            "surname": "Test Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "+353481172478613",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-31T10:26:29.000000Z",
                            "updated_at": "2021-03-15T01:03:10.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Australian Test Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e916b8d9-2650-4ab1-9e58-7ef39f8a45db",
                            "first_name": "Czech",
                            "surname": "Test Admin ",
                            "language_code": "cz_IE",
                            "mobile_number": "+3481172478613",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-09-26T10:26:29.000000Z",
                            "updated_at": "2021-03-15T01:04:28.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Czech Test Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "587fd580-e077-4fe4-a9df-a294e8aa32e4",
                            "first_name": "Ciara",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2018-11-02T14:45:40.000000Z",
                            "updated_at": "2025-06-04T11:40:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ciara ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2a287e42-7ffb-41ea-be1d-0548429b142f",
                            "first_name": "Fcs",
                            "surname": "Evan Meehan ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2019-04-26T11:49:50.000000Z",
                            "updated_at": "2025-01-17T16:15:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Evan Meehan ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "cee19fe1-5836-45b6-a74c-e6c0789c7c0f",
                            "first_name": "Steven",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2019-06-05T13:29:10.000000Z",
                            "updated_at": "2021-03-15T01:05:10.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steven Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "545a5a55-b86f-4359-9061-0cf9915737b6",
                            "first_name": "Threadable",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+1234567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 1,
                            "suppress_email": 1,
                            "created_at": "2019-08-26T12:47:10.000000Z",
                            "updated_at": "2021-03-15T01:05:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Threadable ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "38ffe00a-57b0-4ff1-a206-ddca067a7633",
                            "first_name": "Daniel",
                            "surname": " (Migration Orphaned User #1)",
                            "language_code": "en_IE",
                            "mobile_number": "+440000012001",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2019-11-13T13:01:49.000000Z",
                            "updated_at": "2021-03-15T01:05:56.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Daniel  (Migration Orphaned User #1)",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6fec8ae4-0c7e-42ad-a4ae-c6dd90e04e56",
                            "first_name": "Maudrag",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+447778114660",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2020-01-07T12:48:04.000000Z",
                            "updated_at": "2024-11-05T10:21:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maudrag ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8216d50a-5e47-44c0-89a9-935dd437cb96",
                            "first_name": "Dev",
                            "surname": "FD Dev Team",
                            "language_code": "en_IE",
                            "mobile_number": "+353863987977",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2020-02-05T16:13:45.000000Z",
                            "updated_at": "2022-08-30T14:42:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dev FD Dev Team",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0786855f-4260-4862-95b3-cc0577d177ea",
                            "first_name": "Aditya",
                            "surname": "Arora ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2020-07-20T08:24:24.000000Z",
                            "updated_at": "2022-09-21T11:31:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aditya Arora ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2b08724d-5418-4229-a856-ddb21e5b0775",
                            "first_name": "Fcs",
                            "surname": "Eoin OF ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2020-09-30T14:35:28.000000Z",
                            "updated_at": "2024-08-07T13:51:08.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Eoin OF ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "3cba186e-c33c-45fc-ba83-16ae85c17e12",
                            "first_name": "Fcs",
                            "surname": "Vicki Byrne ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2020-09-30T14:37:12.000000Z",
                            "updated_at": "2021-03-23T11:08:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Vicki Byrne ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "47046ca1-9060-4224-95c6-ba08cbebe901",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 1,
                            "suppress_email": 1,
                            "created_at": "2020-11-16T14:25:49.000000Z",
                            "updated_at": "2024-09-30T19:00:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "597f934a-4e92-4faf-b049-b47b24d9ed10",
                            "first_name": "Jessica",
                            "surname": "Greene ",
                            "language_code": "en_IE",
                            "mobile_number": "+353872708024",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-02-10T17:43:30.000000Z",
                            "updated_at": "2021-03-15T01:07:02.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jessica Greene ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8bb70fc1-2665-4a1c-8b78-b697d757ec2c",
                            "first_name": "Fsc",
                            "surname": "Noreen ",
                            "language_code": "en_GB",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-02-25T16:36:48.000000Z",
                            "updated_at": "2024-12-17T17:24:08.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fsc Noreen ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "334574a2-babe-40f0-bfb6-12524bf55bb7",
                            "first_name": "Rourke",
                            "surname": "Bradley",
                            "language_code": "en_IE",
                            "mobile_number": "+353858432189",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-04-15T13:12:55.000000Z",
                            "updated_at": "2023-06-06T14:04:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rourke Bradley",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c78a23d1-3da8-43e1-be54-1e62a357f903",
                            "first_name": "Ebby",
                            "surname": "Stafford",
                            "language_code": "en_IE",
                            "mobile_number": "+353415313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-05-06T16:05:15.000000Z",
                            "updated_at": "2025-03-25T13:06:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ebby Stafford",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "aafbb4b0-929e-4ee4-abe1-49fd0d4c7ab6",
                            "first_name": "Aisling",
                            "surname": "Mulvaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-06-21T14:44:56.000000Z",
                            "updated_at": "2025-02-25T15:43:27.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aisling Mulvaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6c6fd975-2124-4cbc-8e03-13bae51e9fc2",
                            "first_name": "Paul",
                            "surname": "Deegan",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-08-18T16:17:08.000000Z",
                            "updated_at": "2021-08-18T17:20:52.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Paul Deegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5d2cdf37-6314-460e-8c73-f0be3f008252",
                            "first_name": "Grace",
                            "surname": "Maughan",
                            "language_code": "en_IE",
                            "mobile_number": "+353856783452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-09-03T13:36:12.000000Z",
                            "updated_at": "2021-09-03T13:45:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Grace Maughan",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "7c9b80a5-c277-4197-8075-7d51427cf375",
                            "first_name": "Community Development",
                            "surname": "Team",
                            "language_code": "en_IE",
                            "mobile_number": "+353871234576",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2022-07-20T08:16:11.000000Z",
                            "updated_at": "2024-09-02T15:10:05.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Community Development Team",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0e040982-147b-4011-a09f-ac5afc42688d",
                            "first_name": "Mary Ellen",
                            "surname": "Angland",
                            "language_code": "en_IE",
                            "mobile_number": "+353868006146",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2022-07-29T13:50:50.000000Z",
                            "updated_at": "2024-05-20T11:33:48.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Mary Ellen Angland",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "62e9ef7c-53f4-4e37-bc5b-8cb428891391",
                            "first_name": "Devika",
                            "surname": "Kulkarni",
                            "language_code": "en_IE",
                            "mobile_number": "+353837654531",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-02-13T12:08:32.000000Z",
                            "updated_at": "2025-01-24T10:49:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Devika Kulkarni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "9bf48363-a1f4-4926-a150-a9ebc49b455d",
                            "first_name": "Dayo",
                            "surname": "Aderemi",
                            "language_code": "en_IE",
                            "mobile_number": "+353879114567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-05-26T12:07:15.000000Z",
                            "updated_at": "2025-05-26T17:00:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dayo Aderemi",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0a6cffe8-6cc8-4a1e-ae4d-72e12e5a4103",
                            "first_name": "Fcs Adriana",
                            "surname": "Wiedeheft",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-06-08T10:54:18.000000Z",
                            "updated_at": "2023-08-03T11:00:37.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Adriana Wiedeheft",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bf41f16f-506c-4c22-a892-f2a542da66f3",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": "+353868819755",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2023-08-17T13:54:40.000000Z",
                            "updated_at": "2025-05-12T15:23:29.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Catherine Delaney",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "81d9f413-d87c-45d1-aaf4-49c36f5bcdb9",
                            "first_name": "Lorraine",
                            "surname": "Bourke",
                            "language_code": "en_IE",
                            "mobile_number": "+353897654989",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-07T15:58:21.000000Z",
                            "updated_at": "2023-11-01T10:57:28.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lorraine Bourke",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "994dc772-3d06-4347-9edb-e78dc311c044",
                            "first_name": "Joana",
                            "surname": "Guttler",
                            "language_code": "en_IE",
                            "mobile_number": "+353875896325",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-11T14:56:46.000000Z",
                            "updated_at": "2025-03-24T15:55:54.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Joana Guttler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c29c9db1-51dd-4a52-9eca-d3777587333c",
                            "first_name": "Eva",
                            "surname": "Soler",
                            "language_code": "en_GB",
                            "mobile_number": "+447763581443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-14T14:53:24.000000Z",
                            "updated_at": "2024-11-27T09:26:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Eva Soler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1636c930-c2e6-4fe8-9134-28152a44f565",
                            "first_name": "Prachi",
                            "surname": "Patkar",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-12-13T15:53:21.000000Z",
                            "updated_at": "2024-10-27T12:28:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Prachi Patkar",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e908a273-7428-4f56-b349-250420e78e03",
                            "first_name": "Yasmin",
                            "surname": "Hayes",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-10T09:52:35.000000Z",
                            "updated_at": "2024-05-14T08:09:47.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Yasmin Hayes",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "86d4c0bb-7910-463a-9f93-e46483fa6b50",
                            "first_name": "Silvia Touris",
                            "surname": "Santorum",
                            "language_code": "en_IE",
                            "mobile_number": "+353877998876",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-30T14:38:53.000000Z",
                            "updated_at": "2024-01-30T15:04:39.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Silvia Touris Santorum",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "574da0c0-beb7-49ec-82fc-5a25d79cf5b0",
                            "first_name": "Brian",
                            "surname": "Keogh",
                            "language_code": "en_IE",
                            "mobile_number": "+353857852147",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-02-09T11:50:19.000000Z",
                            "updated_at": "2024-03-06T14:45:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Brian Keogh",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "95d2903a-f8b4-4e14-9658-d3da76ed6dc4",
                            "first_name": "Janet",
                            "surname": "Oluniran",
                            "language_code": "en_IE",
                            "mobile_number": "+353111222111",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:11:53.000000Z",
                            "updated_at": "2024-04-03T09:06:17.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Janet Oluniran",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "effa0de3-701c-4afa-8112-24ac3d15d81c",
                            "first_name": "Fcs Joseph",
                            "surname": "Oginni",
                            "language_code": "en_IE",
                            "mobile_number": "+353856662222",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:17:18.000000Z",
                            "updated_at": "2024-10-02T10:32:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Joseph Oginni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "f4ac62d0-216a-4c51-9d95-e9c8337bc9d9",
                            "first_name": "John",
                            "surname": "Gleave",
                            "language_code": "en_IE",
                            "mobile_number": "+353833333333",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:18:24.000000Z",
                            "updated_at": "2025-02-27T14:23:17.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "John Gleave",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2524965c-cb04-4194-8a9e-46233152086a",
                            "first_name": "Anthony",
                            "surname": "Braddish",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-04-09T13:36:12.000000Z",
                            "updated_at": "2025-03-27T11:35:18.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Anthony Braddish",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "29593317-6e12-40e2-bff2-68d5b0268a32",
                            "first_name": "Killian",
                            "surname": "Waldron",
                            "language_code": "en_IE",
                            "mobile_number": "+353877999987",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-04-23T09:22:41.000000Z",
                            "updated_at": "2025-06-24T14:20:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Killian Waldron",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "74742750-6405-4b2a-a7dc-104a74cb88b5",
                            "first_name": "Chris",
                            "surname": "O'Kane",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-05-01T10:47:54.000000Z",
                            "updated_at": "2024-05-14T10:59:22.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Chris O'Kane",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0b2d62be-2df6-4f14-aac8-a8786f48a50c",
                            "first_name": "Maryfaith",
                            "surname": "Ngwueche",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-09-04T11:51:22.000000Z",
                            "updated_at": "2025-04-23T12:45:45.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maryfaith Ngwueche",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "7e2917f8-6041-477e-ae06-3dfc8bedf108",
                            "first_name": "Ana",
                            "surname": "Ryan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-23T13:32:35.000000Z",
                            "updated_at": "2025-03-06T15:44:56.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ana Ryan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c727dd4d-0646-4844-b1d1-9a96e3d29e27",
                            "first_name": "Aaron",
                            "surname": "Lawler",
                            "language_code": "en_IE",
                            "mobile_number": "+353830161522",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-29T15:55:14.000000Z",
                            "updated_at": "2025-03-12T11:56:52.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aaron Lawler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bfd9a45d-eccf-49d3-a1c6-26b60f81e169",
                            "first_name": "Dean",
                            "surname": "Heenan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-12-02T16:07:54.000000Z",
                            "updated_at": "2025-03-11T09:19:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dean Heenan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b798fe5a-20ad-40e7-8729-a4a4b2e8e3aa",
                            "first_name": "Aoife",
                            "surname": "Sullivan",
                            "language_code": "en_IE",
                            "mobile_number": "+353877779998",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T09:33:41.000000Z",
                            "updated_at": "2025-01-23T12:40:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aoife Sullivan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a8ebfb7f-00f7-4d6c-bba0-a154b8ac15c2",
                            "first_name": "Mo PROD",
                            "surname": "Zier",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T12:26:04.000000Z",
                            "updated_at": "2025-05-14T10:00:49.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Mo PROD Zier",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8ac642ed-d710-4041-8175-4d6dd5ce4262",
                            "first_name": "Lisa",
                            "surname": "Keegan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-13T11:39:06.000000Z",
                            "updated_at": "2025-02-13T11:40:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lisa Keegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "eb18ff56-9c82-429f-8d6f-c64fbbba912f",
                            "first_name": "Jackie",
                            "surname": "McKeown",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T11:19:19.000000Z",
                            "updated_at": "2025-02-20T11:21:15.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jackie McKeown",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c153f9b4-9bbc-4f22-825e-7d5ad45a8b51",
                            "first_name": "Pierce",
                            "surname": "Lowe",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T15:35:14.000000Z",
                            "updated_at": "2025-02-20T15:36:41.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Pierce Lowe",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "68f88f11-3a02-4083-bb44-bfd0a1109917",
                            "first_name": "Hazel",
                            "surname": "Grassie",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-26T15:03:55.000000Z",
                            "updated_at": "2025-02-26T15:05:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Hazel Grassie",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5d28c572-0923-4b5e-b56f-00fbcfdc9d69",
                            "first_name": "Kevin",
                            "surname": "Curley",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-03-11T12:56:56.000000Z",
                            "updated_at": "2025-06-17T10:43:48.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Kevin Curley",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e5f6b69e-1f85-4669-ab37-003112651413",
                            "first_name": "Test",
                            "surname": "Testing",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-05-08T12:05:13.000000Z",
                            "updated_at": "2025-05-08T12:10:42.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Test Testing",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b53dc86d-70ff-4567-a541-2f556958e146",
                            "first_name": "Steve",
                            "surname": "McQueen",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-05-21T09:36:46.000000Z",
                            "updated_at": "2025-05-21T10:02:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steve McQueen",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        }
                    ]
                }
            },
            {
                "name": "FoodCloud Cork",
                "collection_delivery": "collection_delivery",
                "tsm_current_state": "Activated",
                "uuid": "f75bb40c-3148-4873-ad65-866b91cae4fd",
                "created_at": "2021-03-15T00:26:32.000000Z",
                "updated_at": "2025-05-13T10:38:04.000000Z",
                "cancellation_requested": 0,
                "type": "FoodBank",
                "branch_uuid": "0081b9b4-0eba-449a-9248-40918e684635",
                "foodnet": "Deprecated",
                "is_removable": 0,
                "transitions": {
                    "pause": {
                        "color": "yellow",
                        "icon": "fas fa-pause-circle",
                        "name": "Pause",
                        "context": "foodnet_admin"
                    },
                    "expel": {
                        "color": "red",
                        "icon": "fas fa-trash",
                        "name": "Expel",
                        "context": "foodnet_admin"
                    },
                    "suspend": {
                        "color": "black",
                        "icon": "fas fa-pause-circle",
                        "name": "Suspend",
                        "context": "foodnet_admin"
                    }
                },
                "status_style": {
                    "color": "green",
                    "icon": "far fa-play-circle"
                },
                "tsm_current_state_label": "activated",
                "network": {
                    "uuid": "75449cc2-e106-40f0-845e-fbd06408be7b",
                    "activate_membership_required": 1,
                    "description": "A World Where No Good Food Goes To Waste",
                    "max_donation_volume_kg": 30000,
                    "donation_interval": 30,
                    "requirements": "A World Where No Good Food Goes To Waste",
                    "default_co2e": 3.2,
                    "default_meals_per_kg": 2.2,
                    "silence_collection_window_invitation_notifications": 1,
                    "silence_network_membership_notifications": null,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-06-18T11:28:08.000000Z",
                    "deleted_at": null,
                    "is_public": false,
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    }
                },
                "branch": {
                    "uuid": "0081b9b4-0eba-449a-9248-40918e684635",
                    "name": "FoodCloud Cork",
                    "countries_id": 2963597,
                    "provinces_id": 7521315,
                    "counties_id": 2965139,
                    "official_id": "FC:CORK01",
                    "address_1": "Unit 3",
                    "address_2": "O'Connell Commercial Park",
                    "city_town": "Little Island",
                    "post_code": "T45 YP40",
                    "phone": "+353891234253",
                    "latitude": "51.90001390",
                    "longitude": "-8.35212060",
                    "timezone": "Europe/Dublin",
                    "locale": "en_IE",
                    "is_active": 1,
                    "is_foodboard_allowed": 1,
                    "esign": 0,
                    "send_daily_donations_reminders": false,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_product_and_category",
                    "default_categories_only": 0,
                    "approved_products_only": 0,
                    "geofilter_unit_of_distance": "l_kilometers",
                    "collection_delivery": "collection_delivery",
                    "collector_authentication": "l_none",
                    "created_at": "2021-03-15T00:26:32.000000Z",
                    "updated_at": "2025-05-13T10:38:04.000000Z",
                    "deleted_at": null,
                    "category_min": 0,
                    "category_max": 100,
                    "donation_window_cutoff": 12,
                    "transfer_window_cutoff": 24,
                    "max_collection_window": 1,
                    "in_line_address": "Unit 3, O'Connell Commercial Park, Little Island T45 YP40, Cork, Munster, Ireland",
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    },
                    "users": [
                        {
                            "uuid": "9e90e7f3-b68b-482d-9eea-1f00ebb4a762",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-03-15T00:26:30.000000Z",
                            "updated_at": "2025-02-04T22:22:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "edb50ba5-1d9e-4be1-bde6-cd4fcd81e855",
                            "first_name": "Copia",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:07.000000Z",
                            "updated_at": "2021-04-19T10:41:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Copia Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "54600b1e-8a0f-43a6-964d-65bcba13609a",
                            "first_name": "Uk",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:08.000000Z",
                            "updated_at": "2021-03-15T00:58:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Uk Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "be5c9e0b-2e78-4fe3-9082-eb400500aa4a",
                            "first_name": "Ie",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:08.000000Z",
                            "updated_at": "2021-03-15T00:58:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ie Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5fc9c994-46ce-4f87-a07b-25ecad5fbfb8",
                            "first_name": "Carla",
                            "surname": "McSorley ",
                            "language_code": "en_IE",
                            "mobile_number": "+353831306452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2022-08-09T11:35:57.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Carla McSorley ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "3557a7f9-bdf6-4d6a-9346-d4aa607b0380",
                            "first_name": "Iseult",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2021-03-15T00:58:10.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Iseult ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "96243d0e-67d4-4279-ad01-cea97b0e4da5",
                            "first_name": "Jamesclifford",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "0044444444443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-05-04T13:33:25.000000Z",
                            "updated_at": "2025-02-19T09:14:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jamesclifford ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "4debc6dc-1dba-4225-852c-4636e2ab3d17",
                            "first_name": "Fcs",
                            "surname": "Yvonne Fallon ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-10-26T09:15:55.000000Z",
                            "updated_at": "2024-02-26T15:17:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Yvonne Fallon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0259f40b-5c73-4be6-aaaf-f1a9a7a4c805",
                            "first_name": "Rory",
                            "surname": "Fallon ",
                            "language_code": "en_IE",
                            "mobile_number": "+353838901286",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-12-05T10:08:07.000000Z",
                            "updated_at": "2021-03-22T08:12:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rory Fallon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a6a75333-f972-461e-b31b-f414b9207dd3",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313400",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-01-23T10:53:34.000000Z",
                            "updated_at": "2025-06-17T08:42:59.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Catherine Delaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "644362f1-f165-4190-aa4d-9109a62fe9c4",
                            "first_name": "Fcs",
                            "surname": "RorySupport ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2017-02-01T12:41:29.000000Z",
                            "updated_at": "2021-03-15T00:59:49.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs RorySupport ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0bcd59cf-dbb7-4890-a316-857a4abcec1b",
                            "first_name": "Eimear",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+353868123957",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-04-25T13:30:12.000000Z",
                            "updated_at": "2025-02-06T09:45:58.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Eimear ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6b7554c1-3fde-4d71-b2cb-bdcbb54de0d9",
                            "first_name": "Karen",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+353879676494",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-04-25T13:32:30.000000Z",
                            "updated_at": "2021-04-01T09:38:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Karen ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "25fb084c-14a2-4965-9376-581509cea581",
                            "first_name": "Fcs",
                            "surname": "Muirne Mac Manamon ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-07-31T14:19:07.000000Z",
                            "updated_at": "2021-10-13T08:56:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Muirne Mac Manamon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "151cf991-42b4-4121-ace4-2135fdcc9cbb",
                            "first_name": "Rory",
                            "surname": "O'Connell",
                            "language_code": "en_IE",
                            "mobile_number": "+353874582363",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-08-14T08:20:54.000000Z",
                            "updated_at": "2025-03-20T12:33:00.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rory O'Connell",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "36b56997-7416-4337-91ff-f8ab28678559",
                            "first_name": "FoodCloud",
                            "surname": "Tech Demo ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-03-06T15:51:53.000000Z",
                            "updated_at": "2021-03-15T01:02:44.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "FoodCloud Tech Demo ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c4c48ae4-e743-42dd-a2d6-cc72d2f4b873",
                            "first_name": "Steven",
                            "surname": "Pettigrew",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2018-03-19T00:22:55.000000Z",
                            "updated_at": "2023-12-27T10:42:32.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steven Pettigrew",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5760a1cd-98af-4a03-bc15-b82c8fd22027",
                            "first_name": "Rosie",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-05-08T15:21:46.000000Z",
                            "updated_at": "2021-11-12T09:12:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rosie ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "76145941-e6ad-4277-bed1-19232d1cc10f",
                            "first_name": "Polish",
                            "surname": "Demo Admin ",
                            "language_code": "pl_IE",
                            "mobile_number": "+3481172478613",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-23T13:26:29.000000Z",
                            "updated_at": "2021-03-15T01:03:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Polish Demo Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "74bccb4f-cac6-4ec1-aa9f-be788a55860d",
                            "first_name": "Polish",
                            "surname": "Test Admin ",
                            "language_code": "pl_IE",
                            "mobile_number": "+3481172478613",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-21T10:26:29.000000Z",
                            "updated_at": "2021-03-15T01:03:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Polish Test Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1635b37f-8d56-4e34-9223-0fccbf8c2f8d",
                            "first_name": "Robyn",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-27T16:00:43.000000Z",
                            "updated_at": "2021-03-22T08:55:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Robyn ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "83bdc772-9f08-4d90-b29f-f6d92f5645ba",
                            "first_name": "Chill",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2018-08-29T09:44:15.000000Z",
                            "updated_at": "2025-03-18T18:41:29.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Chill ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "587fd580-e077-4fe4-a9df-a294e8aa32e4",
                            "first_name": "Ciara",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2018-11-02T14:45:40.000000Z",
                            "updated_at": "2025-06-04T11:40:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ciara ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2a287e42-7ffb-41ea-be1d-0548429b142f",
                            "first_name": "Fcs",
                            "surname": "Evan Meehan ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2019-04-26T11:49:50.000000Z",
                            "updated_at": "2025-01-17T16:15:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Evan Meehan ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "cee19fe1-5836-45b6-a74c-e6c0789c7c0f",
                            "first_name": "Steven",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2019-06-05T13:29:10.000000Z",
                            "updated_at": "2021-03-15T01:05:10.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steven Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "545a5a55-b86f-4359-9061-0cf9915737b6",
                            "first_name": "Threadable",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+1234567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 1,
                            "suppress_email": 1,
                            "created_at": "2019-08-26T12:47:10.000000Z",
                            "updated_at": "2021-03-15T01:05:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Threadable ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "38ffe00a-57b0-4ff1-a206-ddca067a7633",
                            "first_name": "Daniel",
                            "surname": " (Migration Orphaned User #1)",
                            "language_code": "en_IE",
                            "mobile_number": "+440000012001",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2019-11-13T13:01:49.000000Z",
                            "updated_at": "2021-03-15T01:05:56.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Daniel  (Migration Orphaned User #1)",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6fec8ae4-0c7e-42ad-a4ae-c6dd90e04e56",
                            "first_name": "Maudrag",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+447778114660",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2020-01-07T12:48:04.000000Z",
                            "updated_at": "2024-11-05T10:21:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maudrag ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8216d50a-5e47-44c0-89a9-935dd437cb96",
                            "first_name": "Dev",
                            "surname": "FD Dev Team",
                            "language_code": "en_IE",
                            "mobile_number": "+353863987977",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2020-02-05T16:13:45.000000Z",
                            "updated_at": "2022-08-30T14:42:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dev FD Dev Team",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0786855f-4260-4862-95b3-cc0577d177ea",
                            "first_name": "Aditya",
                            "surname": "Arora ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2020-07-20T08:24:24.000000Z",
                            "updated_at": "2022-09-21T11:31:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aditya Arora ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2b08724d-5418-4229-a856-ddb21e5b0775",
                            "first_name": "Fcs",
                            "surname": "Eoin OF ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2020-09-30T14:35:28.000000Z",
                            "updated_at": "2024-08-07T13:51:08.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Eoin OF ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "3cba186e-c33c-45fc-ba83-16ae85c17e12",
                            "first_name": "Fcs",
                            "surname": "Vicki Byrne ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2020-09-30T14:37:12.000000Z",
                            "updated_at": "2021-03-23T11:08:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Vicki Byrne ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "47046ca1-9060-4224-95c6-ba08cbebe901",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 1,
                            "suppress_email": 1,
                            "created_at": "2020-11-16T14:25:49.000000Z",
                            "updated_at": "2024-09-30T19:00:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8bb70fc1-2665-4a1c-8b78-b697d757ec2c",
                            "first_name": "Fsc",
                            "surname": "Noreen ",
                            "language_code": "en_GB",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-02-25T16:36:48.000000Z",
                            "updated_at": "2024-12-17T17:24:08.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fsc Noreen ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "334574a2-babe-40f0-bfb6-12524bf55bb7",
                            "first_name": "Rourke",
                            "surname": "Bradley",
                            "language_code": "en_IE",
                            "mobile_number": "+353858432189",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-04-15T13:12:55.000000Z",
                            "updated_at": "2023-06-06T14:04:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rourke Bradley",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c78a23d1-3da8-43e1-be54-1e62a357f903",
                            "first_name": "Ebby",
                            "surname": "Stafford",
                            "language_code": "en_IE",
                            "mobile_number": "+353415313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-05-06T16:05:15.000000Z",
                            "updated_at": "2025-03-25T13:06:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ebby Stafford",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "aafbb4b0-929e-4ee4-abe1-49fd0d4c7ab6",
                            "first_name": "Aisling",
                            "surname": "Mulvaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-06-21T14:44:56.000000Z",
                            "updated_at": "2025-02-25T15:43:27.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aisling Mulvaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6c6fd975-2124-4cbc-8e03-13bae51e9fc2",
                            "first_name": "Paul",
                            "surname": "Deegan",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-08-18T16:17:08.000000Z",
                            "updated_at": "2021-08-18T17:20:52.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Paul Deegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5d2cdf37-6314-460e-8c73-f0be3f008252",
                            "first_name": "Grace",
                            "surname": "Maughan",
                            "language_code": "en_IE",
                            "mobile_number": "+353856783452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-09-03T13:36:12.000000Z",
                            "updated_at": "2021-09-03T13:45:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Grace Maughan",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "7c9b80a5-c277-4197-8075-7d51427cf375",
                            "first_name": "Community Development",
                            "surname": "Team",
                            "language_code": "en_IE",
                            "mobile_number": "+353871234576",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2022-07-20T08:16:11.000000Z",
                            "updated_at": "2024-09-02T15:10:05.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Community Development Team",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "62e9ef7c-53f4-4e37-bc5b-8cb428891391",
                            "first_name": "Devika",
                            "surname": "Kulkarni",
                            "language_code": "en_IE",
                            "mobile_number": "+353837654531",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-02-13T12:08:32.000000Z",
                            "updated_at": "2025-01-24T10:49:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Devika Kulkarni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "9bf48363-a1f4-4926-a150-a9ebc49b455d",
                            "first_name": "Dayo",
                            "surname": "Aderemi",
                            "language_code": "en_IE",
                            "mobile_number": "+353879114567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-05-26T12:07:15.000000Z",
                            "updated_at": "2025-05-26T17:00:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dayo Aderemi",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bf41f16f-506c-4c22-a892-f2a542da66f3",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": "+353868819755",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2023-08-17T13:54:40.000000Z",
                            "updated_at": "2025-05-12T15:23:29.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Catherine Delaney",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "81d9f413-d87c-45d1-aaf4-49c36f5bcdb9",
                            "first_name": "Lorraine",
                            "surname": "Bourke",
                            "language_code": "en_IE",
                            "mobile_number": "+353897654989",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-07T15:58:21.000000Z",
                            "updated_at": "2023-11-01T10:57:28.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lorraine Bourke",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1636c930-c2e6-4fe8-9134-28152a44f565",
                            "first_name": "Prachi",
                            "surname": "Patkar",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-12-13T15:53:21.000000Z",
                            "updated_at": "2024-10-27T12:28:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Prachi Patkar",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e908a273-7428-4f56-b349-250420e78e03",
                            "first_name": "Yasmin",
                            "surname": "Hayes",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-10T09:52:35.000000Z",
                            "updated_at": "2024-05-14T08:09:47.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Yasmin Hayes",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "86d4c0bb-7910-463a-9f93-e46483fa6b50",
                            "first_name": "Silvia Touris",
                            "surname": "Santorum",
                            "language_code": "en_IE",
                            "mobile_number": "+353877998876",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-30T14:38:53.000000Z",
                            "updated_at": "2024-01-30T15:04:39.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Silvia Touris Santorum",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "574da0c0-beb7-49ec-82fc-5a25d79cf5b0",
                            "first_name": "Brian",
                            "surname": "Keogh",
                            "language_code": "en_IE",
                            "mobile_number": "+353857852147",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-02-09T11:50:19.000000Z",
                            "updated_at": "2024-03-06T14:45:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Brian Keogh",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "95d2903a-f8b4-4e14-9658-d3da76ed6dc4",
                            "first_name": "Janet",
                            "surname": "Oluniran",
                            "language_code": "en_IE",
                            "mobile_number": "+353111222111",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:11:53.000000Z",
                            "updated_at": "2024-04-03T09:06:17.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Janet Oluniran",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "effa0de3-701c-4afa-8112-24ac3d15d81c",
                            "first_name": "Fcs Joseph",
                            "surname": "Oginni",
                            "language_code": "en_IE",
                            "mobile_number": "+353856662222",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:17:18.000000Z",
                            "updated_at": "2024-10-02T10:32:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Joseph Oginni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "f4ac62d0-216a-4c51-9d95-e9c8337bc9d9",
                            "first_name": "John",
                            "surname": "Gleave",
                            "language_code": "en_IE",
                            "mobile_number": "+353833333333",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:18:24.000000Z",
                            "updated_at": "2025-02-27T14:23:17.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "John Gleave",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2524965c-cb04-4194-8a9e-46233152086a",
                            "first_name": "Anthony",
                            "surname": "Braddish",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-04-09T13:36:12.000000Z",
                            "updated_at": "2025-03-27T11:35:18.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Anthony Braddish",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "29593317-6e12-40e2-bff2-68d5b0268a32",
                            "first_name": "Killian",
                            "surname": "Waldron",
                            "language_code": "en_IE",
                            "mobile_number": "+353877999987",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-04-23T09:22:41.000000Z",
                            "updated_at": "2025-06-24T14:20:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Killian Waldron",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "74742750-6405-4b2a-a7dc-104a74cb88b5",
                            "first_name": "Chris",
                            "surname": "O'Kane",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-05-01T10:47:54.000000Z",
                            "updated_at": "2024-05-14T10:59:22.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Chris O'Kane",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0b2d62be-2df6-4f14-aac8-a8786f48a50c",
                            "first_name": "Maryfaith",
                            "surname": "Ngwueche",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-09-04T11:51:22.000000Z",
                            "updated_at": "2025-04-23T12:45:45.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maryfaith Ngwueche",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "7e2917f8-6041-477e-ae06-3dfc8bedf108",
                            "first_name": "Ana",
                            "surname": "Ryan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-23T13:32:35.000000Z",
                            "updated_at": "2025-03-06T15:44:56.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ana Ryan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c727dd4d-0646-4844-b1d1-9a96e3d29e27",
                            "first_name": "Aaron",
                            "surname": "Lawler",
                            "language_code": "en_IE",
                            "mobile_number": "+353830161522",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-29T15:55:14.000000Z",
                            "updated_at": "2025-03-12T11:56:52.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aaron Lawler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bfd9a45d-eccf-49d3-a1c6-26b60f81e169",
                            "first_name": "Dean",
                            "surname": "Heenan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-12-02T16:07:54.000000Z",
                            "updated_at": "2025-03-11T09:19:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dean Heenan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b798fe5a-20ad-40e7-8729-a4a4b2e8e3aa",
                            "first_name": "Aoife",
                            "surname": "Sullivan",
                            "language_code": "en_IE",
                            "mobile_number": "+353877779998",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T09:33:41.000000Z",
                            "updated_at": "2025-01-23T12:40:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aoife Sullivan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a8ebfb7f-00f7-4d6c-bba0-a154b8ac15c2",
                            "first_name": "Mo PROD",
                            "surname": "Zier",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T12:26:04.000000Z",
                            "updated_at": "2025-05-14T10:00:49.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Mo PROD Zier",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8ac642ed-d710-4041-8175-4d6dd5ce4262",
                            "first_name": "Lisa",
                            "surname": "Keegan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-13T11:39:06.000000Z",
                            "updated_at": "2025-02-13T11:40:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lisa Keegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "eb18ff56-9c82-429f-8d6f-c64fbbba912f",
                            "first_name": "Jackie",
                            "surname": "McKeown",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T11:19:19.000000Z",
                            "updated_at": "2025-02-20T11:21:15.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jackie McKeown",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c153f9b4-9bbc-4f22-825e-7d5ad45a8b51",
                            "first_name": "Pierce",
                            "surname": "Lowe",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T15:35:14.000000Z",
                            "updated_at": "2025-02-20T15:36:41.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Pierce Lowe",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "68f88f11-3a02-4083-bb44-bfd0a1109917",
                            "first_name": "Hazel",
                            "surname": "Grassie",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-26T15:03:55.000000Z",
                            "updated_at": "2025-02-26T15:05:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Hazel Grassie",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e5f6b69e-1f85-4669-ab37-003112651413",
                            "first_name": "Test",
                            "surname": "Testing",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-05-08T12:05:13.000000Z",
                            "updated_at": "2025-05-08T12:10:42.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Test Testing",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b53dc86d-70ff-4567-a541-2f556958e146",
                            "first_name": "Steve",
                            "surname": "McQueen",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-05-21T09:36:46.000000Z",
                            "updated_at": "2025-05-21T10:02:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steve McQueen",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        }
                    ]
                }
            },
            {
                "name": "FoodCloud Cork",
                "collection_delivery": "collection_delivery",
                "tsm_current_state": "Rejected",
                "uuid": "ad7bf31a-d422-4ae6-81a2-226bf7742e5a",
                "created_at": "2025-05-13T10:38:50.000000Z",
                "updated_at": "2025-05-16T14:30:57.000000Z",
                "cancellation_requested": 0,
                "type": "FoodBank",
                "branch_uuid": "0081b9b4-0eba-449a-9248-40918e684635",
                "foodnet": "Deprecated",
                "is_removable": 0,
                "transitions": {
                    "restart": {
                        "color": "blue",
                        "icon": "fas fa-file-invoice",
                        "name": "Restart",
                        "context": "foodnets"
                    }
                },
                "status_style": {
                    "color": "red",
                    "icon": "fas fa-times-circle"
                },
                "tsm_current_state_label": "rejected",
                "network": {
                    "uuid": "bbe4d359-f22b-49e1-bcc8-c528ed067450",
                    "activate_membership_required": 1,
                    "description": "You must be a QA tester to use these accounts :)",
                    "max_donation_volume_kg": 500,
                    "donation_interval": 30,
                    "requirements": "You must be a QA tester to use these accounts :)",
                    "default_co2e": 3.2,
                    "default_meals_per_kg": 2.2,
                    "silence_collection_window_invitation_notifications": null,
                    "silence_network_membership_notifications": null,
                    "created_at": "2025-04-02T08:21:07.000000Z",
                    "updated_at": "2025-06-23T12:13:14.000000Z",
                    "deleted_at": null,
                    "is_public": false,
                    "organisation": {
                        "uuid": "dfcf38e2-ea40-41cb-946d-0c1c4b9b387e",
                        "name": "DEV TESTING FOODBANK",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7778677,
                        "official_id": null,
                        "accept_by_offset": 20,
                        "vip_window": 30,
                        "is_vip_window_active": 0,
                        "phone": "+442830252324",
                        "address_1": "5 Curragh Rd",
                        "address_2": "Turners Cross",
                        "city_town": "Cork",
                        "post_code": "T12 VR6V",
                        "latitude": "51.88411410",
                        "longitude": "-8.46749210",
                        "description": "This is a test org used for MRT",
                        "food_safety_info": "This is a test org used for MRT",
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 0,
                        "created_at": "2025-04-02T08:21:07.000000Z",
                        "updated_at": "2025-05-22T09:29:34.000000Z",
                        "deleted_at": null,
                        "in_line_address": "5 Curragh Rd, Turners Cross, Cork T12 VR6V, Dublin City, Leinster, Ireland"
                    }
                },
                "branch": {
                    "uuid": "0081b9b4-0eba-449a-9248-40918e684635",
                    "name": "FoodCloud Cork",
                    "countries_id": 2963597,
                    "provinces_id": 7521315,
                    "counties_id": 2965139,
                    "official_id": "FC:CORK01",
                    "address_1": "Unit 3",
                    "address_2": "O'Connell Commercial Park",
                    "city_town": "Little Island",
                    "post_code": "T45 YP40",
                    "phone": "+353891234253",
                    "latitude": "51.90001390",
                    "longitude": "-8.35212060",
                    "timezone": "Europe/Dublin",
                    "locale": "en_IE",
                    "is_active": 1,
                    "is_foodboard_allowed": 1,
                    "esign": 0,
                    "send_daily_donations_reminders": false,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_product_and_category",
                    "default_categories_only": 0,
                    "approved_products_only": 0,
                    "geofilter_unit_of_distance": "l_kilometers",
                    "collection_delivery": "collection_delivery",
                    "collector_authentication": "l_none",
                    "created_at": "2021-03-15T00:26:32.000000Z",
                    "updated_at": "2025-05-13T10:38:04.000000Z",
                    "deleted_at": null,
                    "category_min": 0,
                    "category_max": 100,
                    "donation_window_cutoff": 12,
                    "transfer_window_cutoff": 24,
                    "max_collection_window": 1,
                    "in_line_address": "Unit 3, O'Connell Commercial Park, Little Island T45 YP40, Cork, Munster, Ireland",
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    },
                    "users": [
                        {
                            "uuid": "9e90e7f3-b68b-482d-9eea-1f00ebb4a762",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-03-15T00:26:30.000000Z",
                            "updated_at": "2025-02-04T22:22:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "edb50ba5-1d9e-4be1-bde6-cd4fcd81e855",
                            "first_name": "Copia",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:07.000000Z",
                            "updated_at": "2021-04-19T10:41:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Copia Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "54600b1e-8a0f-43a6-964d-65bcba13609a",
                            "first_name": "Uk",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:08.000000Z",
                            "updated_at": "2021-03-15T00:58:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Uk Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "be5c9e0b-2e78-4fe3-9082-eb400500aa4a",
                            "first_name": "Ie",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:08.000000Z",
                            "updated_at": "2021-03-15T00:58:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ie Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5fc9c994-46ce-4f87-a07b-25ecad5fbfb8",
                            "first_name": "Carla",
                            "surname": "McSorley ",
                            "language_code": "en_IE",
                            "mobile_number": "+353831306452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2022-08-09T11:35:57.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Carla McSorley ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "3557a7f9-bdf6-4d6a-9346-d4aa607b0380",
                            "first_name": "Iseult",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2021-03-15T00:58:10.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Iseult ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "96243d0e-67d4-4279-ad01-cea97b0e4da5",
                            "first_name": "Jamesclifford",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "0044444444443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-05-04T13:33:25.000000Z",
                            "updated_at": "2025-02-19T09:14:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jamesclifford ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "4debc6dc-1dba-4225-852c-4636e2ab3d17",
                            "first_name": "Fcs",
                            "surname": "Yvonne Fallon ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-10-26T09:15:55.000000Z",
                            "updated_at": "2024-02-26T15:17:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Yvonne Fallon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0259f40b-5c73-4be6-aaaf-f1a9a7a4c805",
                            "first_name": "Rory",
                            "surname": "Fallon ",
                            "language_code": "en_IE",
                            "mobile_number": "+353838901286",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-12-05T10:08:07.000000Z",
                            "updated_at": "2021-03-22T08:12:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rory Fallon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a6a75333-f972-461e-b31b-f414b9207dd3",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313400",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-01-23T10:53:34.000000Z",
                            "updated_at": "2025-06-17T08:42:59.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Catherine Delaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "644362f1-f165-4190-aa4d-9109a62fe9c4",
                            "first_name": "Fcs",
                            "surname": "RorySupport ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2017-02-01T12:41:29.000000Z",
                            "updated_at": "2021-03-15T00:59:49.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs RorySupport ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0bcd59cf-dbb7-4890-a316-857a4abcec1b",
                            "first_name": "Eimear",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+353868123957",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-04-25T13:30:12.000000Z",
                            "updated_at": "2025-02-06T09:45:58.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Eimear ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6b7554c1-3fde-4d71-b2cb-bdcbb54de0d9",
                            "first_name": "Karen",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+353879676494",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-04-25T13:32:30.000000Z",
                            "updated_at": "2021-04-01T09:38:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Karen ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "25fb084c-14a2-4965-9376-581509cea581",
                            "first_name": "Fcs",
                            "surname": "Muirne Mac Manamon ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-07-31T14:19:07.000000Z",
                            "updated_at": "2021-10-13T08:56:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Muirne Mac Manamon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "151cf991-42b4-4121-ace4-2135fdcc9cbb",
                            "first_name": "Rory",
                            "surname": "O'Connell",
                            "language_code": "en_IE",
                            "mobile_number": "+353874582363",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-08-14T08:20:54.000000Z",
                            "updated_at": "2025-03-20T12:33:00.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rory O'Connell",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "36b56997-7416-4337-91ff-f8ab28678559",
                            "first_name": "FoodCloud",
                            "surname": "Tech Demo ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-03-06T15:51:53.000000Z",
                            "updated_at": "2021-03-15T01:02:44.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "FoodCloud Tech Demo ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c4c48ae4-e743-42dd-a2d6-cc72d2f4b873",
                            "first_name": "Steven",
                            "surname": "Pettigrew",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2018-03-19T00:22:55.000000Z",
                            "updated_at": "2023-12-27T10:42:32.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steven Pettigrew",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5760a1cd-98af-4a03-bc15-b82c8fd22027",
                            "first_name": "Rosie",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-05-08T15:21:46.000000Z",
                            "updated_at": "2021-11-12T09:12:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rosie ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "76145941-e6ad-4277-bed1-19232d1cc10f",
                            "first_name": "Polish",
                            "surname": "Demo Admin ",
                            "language_code": "pl_IE",
                            "mobile_number": "+3481172478613",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-23T13:26:29.000000Z",
                            "updated_at": "2021-03-15T01:03:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Polish Demo Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "74bccb4f-cac6-4ec1-aa9f-be788a55860d",
                            "first_name": "Polish",
                            "surname": "Test Admin ",
                            "language_code": "pl_IE",
                            "mobile_number": "+3481172478613",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-21T10:26:29.000000Z",
                            "updated_at": "2021-03-15T01:03:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Polish Test Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1635b37f-8d56-4e34-9223-0fccbf8c2f8d",
                            "first_name": "Robyn",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-08-27T16:00:43.000000Z",
                            "updated_at": "2021-03-22T08:55:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Robyn ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "83bdc772-9f08-4d90-b29f-f6d92f5645ba",
                            "first_name": "Chill",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2018-08-29T09:44:15.000000Z",
                            "updated_at": "2025-03-18T18:41:29.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Chill ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "587fd580-e077-4fe4-a9df-a294e8aa32e4",
                            "first_name": "Ciara",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2018-11-02T14:45:40.000000Z",
                            "updated_at": "2025-06-04T11:40:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ciara ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2a287e42-7ffb-41ea-be1d-0548429b142f",
                            "first_name": "Fcs",
                            "surname": "Evan Meehan ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2019-04-26T11:49:50.000000Z",
                            "updated_at": "2025-01-17T16:15:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Evan Meehan ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "cee19fe1-5836-45b6-a74c-e6c0789c7c0f",
                            "first_name": "Steven",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2019-06-05T13:29:10.000000Z",
                            "updated_at": "2021-03-15T01:05:10.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steven Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "545a5a55-b86f-4359-9061-0cf9915737b6",
                            "first_name": "Threadable",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+1234567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 1,
                            "suppress_email": 1,
                            "created_at": "2019-08-26T12:47:10.000000Z",
                            "updated_at": "2021-03-15T01:05:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Threadable ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "38ffe00a-57b0-4ff1-a206-ddca067a7633",
                            "first_name": "Daniel",
                            "surname": " (Migration Orphaned User #1)",
                            "language_code": "en_IE",
                            "mobile_number": "+440000012001",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2019-11-13T13:01:49.000000Z",
                            "updated_at": "2021-03-15T01:05:56.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Daniel  (Migration Orphaned User #1)",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6fec8ae4-0c7e-42ad-a4ae-c6dd90e04e56",
                            "first_name": "Maudrag",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+447778114660",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2020-01-07T12:48:04.000000Z",
                            "updated_at": "2024-11-05T10:21:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maudrag ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8216d50a-5e47-44c0-89a9-935dd437cb96",
                            "first_name": "Dev",
                            "surname": "FD Dev Team",
                            "language_code": "en_IE",
                            "mobile_number": "+353863987977",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2020-02-05T16:13:45.000000Z",
                            "updated_at": "2022-08-30T14:42:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dev FD Dev Team",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0786855f-4260-4862-95b3-cc0577d177ea",
                            "first_name": "Aditya",
                            "surname": "Arora ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2020-07-20T08:24:24.000000Z",
                            "updated_at": "2022-09-21T11:31:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aditya Arora ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2b08724d-5418-4229-a856-ddb21e5b0775",
                            "first_name": "Fcs",
                            "surname": "Eoin OF ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2020-09-30T14:35:28.000000Z",
                            "updated_at": "2024-08-07T13:51:08.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Eoin OF ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "3cba186e-c33c-45fc-ba83-16ae85c17e12",
                            "first_name": "Fcs",
                            "surname": "Vicki Byrne ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2020-09-30T14:37:12.000000Z",
                            "updated_at": "2021-03-23T11:08:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Vicki Byrne ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "47046ca1-9060-4224-95c6-ba08cbebe901",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 1,
                            "suppress_email": 1,
                            "created_at": "2020-11-16T14:25:49.000000Z",
                            "updated_at": "2024-09-30T19:00:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8bb70fc1-2665-4a1c-8b78-b697d757ec2c",
                            "first_name": "Fsc",
                            "surname": "Noreen ",
                            "language_code": "en_GB",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-02-25T16:36:48.000000Z",
                            "updated_at": "2024-12-17T17:24:08.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fsc Noreen ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "334574a2-babe-40f0-bfb6-12524bf55bb7",
                            "first_name": "Rourke",
                            "surname": "Bradley",
                            "language_code": "en_IE",
                            "mobile_number": "+353858432189",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-04-15T13:12:55.000000Z",
                            "updated_at": "2023-06-06T14:04:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rourke Bradley",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c78a23d1-3da8-43e1-be54-1e62a357f903",
                            "first_name": "Ebby",
                            "surname": "Stafford",
                            "language_code": "en_IE",
                            "mobile_number": "+353415313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-05-06T16:05:15.000000Z",
                            "updated_at": "2025-03-25T13:06:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ebby Stafford",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "aafbb4b0-929e-4ee4-abe1-49fd0d4c7ab6",
                            "first_name": "Aisling",
                            "surname": "Mulvaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-06-21T14:44:56.000000Z",
                            "updated_at": "2025-02-25T15:43:27.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aisling Mulvaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6c6fd975-2124-4cbc-8e03-13bae51e9fc2",
                            "first_name": "Paul",
                            "surname": "Deegan",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-08-18T16:17:08.000000Z",
                            "updated_at": "2021-08-18T17:20:52.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Paul Deegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5d2cdf37-6314-460e-8c73-f0be3f008252",
                            "first_name": "Grace",
                            "surname": "Maughan",
                            "language_code": "en_IE",
                            "mobile_number": "+353856783452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-09-03T13:36:12.000000Z",
                            "updated_at": "2021-09-03T13:45:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Grace Maughan",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "7c9b80a5-c277-4197-8075-7d51427cf375",
                            "first_name": "Community Development",
                            "surname": "Team",
                            "language_code": "en_IE",
                            "mobile_number": "+353871234576",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2022-07-20T08:16:11.000000Z",
                            "updated_at": "2024-09-02T15:10:05.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Community Development Team",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "62e9ef7c-53f4-4e37-bc5b-8cb428891391",
                            "first_name": "Devika",
                            "surname": "Kulkarni",
                            "language_code": "en_IE",
                            "mobile_number": "+353837654531",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-02-13T12:08:32.000000Z",
                            "updated_at": "2025-01-24T10:49:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Devika Kulkarni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "9bf48363-a1f4-4926-a150-a9ebc49b455d",
                            "first_name": "Dayo",
                            "surname": "Aderemi",
                            "language_code": "en_IE",
                            "mobile_number": "+353879114567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-05-26T12:07:15.000000Z",
                            "updated_at": "2025-05-26T17:00:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dayo Aderemi",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bf41f16f-506c-4c22-a892-f2a542da66f3",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": "+353868819755",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2023-08-17T13:54:40.000000Z",
                            "updated_at": "2025-05-12T15:23:29.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Catherine Delaney",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "81d9f413-d87c-45d1-aaf4-49c36f5bcdb9",
                            "first_name": "Lorraine",
                            "surname": "Bourke",
                            "language_code": "en_IE",
                            "mobile_number": "+353897654989",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-07T15:58:21.000000Z",
                            "updated_at": "2023-11-01T10:57:28.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lorraine Bourke",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1636c930-c2e6-4fe8-9134-28152a44f565",
                            "first_name": "Prachi",
                            "surname": "Patkar",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-12-13T15:53:21.000000Z",
                            "updated_at": "2024-10-27T12:28:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Prachi Patkar",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e908a273-7428-4f56-b349-250420e78e03",
                            "first_name": "Yasmin",
                            "surname": "Hayes",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-10T09:52:35.000000Z",
                            "updated_at": "2024-05-14T08:09:47.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Yasmin Hayes",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "86d4c0bb-7910-463a-9f93-e46483fa6b50",
                            "first_name": "Silvia Touris",
                            "surname": "Santorum",
                            "language_code": "en_IE",
                            "mobile_number": "+353877998876",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-30T14:38:53.000000Z",
                            "updated_at": "2024-01-30T15:04:39.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Silvia Touris Santorum",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "574da0c0-beb7-49ec-82fc-5a25d79cf5b0",
                            "first_name": "Brian",
                            "surname": "Keogh",
                            "language_code": "en_IE",
                            "mobile_number": "+353857852147",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-02-09T11:50:19.000000Z",
                            "updated_at": "2024-03-06T14:45:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Brian Keogh",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "95d2903a-f8b4-4e14-9658-d3da76ed6dc4",
                            "first_name": "Janet",
                            "surname": "Oluniran",
                            "language_code": "en_IE",
                            "mobile_number": "+353111222111",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:11:53.000000Z",
                            "updated_at": "2024-04-03T09:06:17.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Janet Oluniran",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "effa0de3-701c-4afa-8112-24ac3d15d81c",
                            "first_name": "Fcs Joseph",
                            "surname": "Oginni",
                            "language_code": "en_IE",
                            "mobile_number": "+353856662222",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:17:18.000000Z",
                            "updated_at": "2024-10-02T10:32:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Joseph Oginni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "f4ac62d0-216a-4c51-9d95-e9c8337bc9d9",
                            "first_name": "John",
                            "surname": "Gleave",
                            "language_code": "en_IE",
                            "mobile_number": "+353833333333",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:18:24.000000Z",
                            "updated_at": "2025-02-27T14:23:17.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "John Gleave",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2524965c-cb04-4194-8a9e-46233152086a",
                            "first_name": "Anthony",
                            "surname": "Braddish",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-04-09T13:36:12.000000Z",
                            "updated_at": "2025-03-27T11:35:18.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Anthony Braddish",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "29593317-6e12-40e2-bff2-68d5b0268a32",
                            "first_name": "Killian",
                            "surname": "Waldron",
                            "language_code": "en_IE",
                            "mobile_number": "+353877999987",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-04-23T09:22:41.000000Z",
                            "updated_at": "2025-06-24T14:20:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Killian Waldron",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "74742750-6405-4b2a-a7dc-104a74cb88b5",
                            "first_name": "Chris",
                            "surname": "O'Kane",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-05-01T10:47:54.000000Z",
                            "updated_at": "2024-05-14T10:59:22.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Chris O'Kane",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0b2d62be-2df6-4f14-aac8-a8786f48a50c",
                            "first_name": "Maryfaith",
                            "surname": "Ngwueche",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-09-04T11:51:22.000000Z",
                            "updated_at": "2025-04-23T12:45:45.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maryfaith Ngwueche",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "7e2917f8-6041-477e-ae06-3dfc8bedf108",
                            "first_name": "Ana",
                            "surname": "Ryan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-23T13:32:35.000000Z",
                            "updated_at": "2025-03-06T15:44:56.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ana Ryan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c727dd4d-0646-4844-b1d1-9a96e3d29e27",
                            "first_name": "Aaron",
                            "surname": "Lawler",
                            "language_code": "en_IE",
                            "mobile_number": "+353830161522",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-29T15:55:14.000000Z",
                            "updated_at": "2025-03-12T11:56:52.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aaron Lawler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bfd9a45d-eccf-49d3-a1c6-26b60f81e169",
                            "first_name": "Dean",
                            "surname": "Heenan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-12-02T16:07:54.000000Z",
                            "updated_at": "2025-03-11T09:19:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dean Heenan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b798fe5a-20ad-40e7-8729-a4a4b2e8e3aa",
                            "first_name": "Aoife",
                            "surname": "Sullivan",
                            "language_code": "en_IE",
                            "mobile_number": "+353877779998",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T09:33:41.000000Z",
                            "updated_at": "2025-01-23T12:40:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aoife Sullivan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a8ebfb7f-00f7-4d6c-bba0-a154b8ac15c2",
                            "first_name": "Mo PROD",
                            "surname": "Zier",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T12:26:04.000000Z",
                            "updated_at": "2025-05-14T10:00:49.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Mo PROD Zier",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8ac642ed-d710-4041-8175-4d6dd5ce4262",
                            "first_name": "Lisa",
                            "surname": "Keegan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-13T11:39:06.000000Z",
                            "updated_at": "2025-02-13T11:40:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lisa Keegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "eb18ff56-9c82-429f-8d6f-c64fbbba912f",
                            "first_name": "Jackie",
                            "surname": "McKeown",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T11:19:19.000000Z",
                            "updated_at": "2025-02-20T11:21:15.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jackie McKeown",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c153f9b4-9bbc-4f22-825e-7d5ad45a8b51",
                            "first_name": "Pierce",
                            "surname": "Lowe",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T15:35:14.000000Z",
                            "updated_at": "2025-02-20T15:36:41.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Pierce Lowe",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "68f88f11-3a02-4083-bb44-bfd0a1109917",
                            "first_name": "Hazel",
                            "surname": "Grassie",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-26T15:03:55.000000Z",
                            "updated_at": "2025-02-26T15:05:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Hazel Grassie",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e5f6b69e-1f85-4669-ab37-003112651413",
                            "first_name": "Test",
                            "surname": "Testing",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-05-08T12:05:13.000000Z",
                            "updated_at": "2025-05-08T12:10:42.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Test Testing",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b53dc86d-70ff-4567-a541-2f556958e146",
                            "first_name": "Steve",
                            "surname": "McQueen",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-05-21T09:36:46.000000Z",
                            "updated_at": "2025-05-21T10:02:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steve McQueen",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        }
                    ]
                }
            },
            {
                "name": "FoodCloud Galway City",
                "collection_delivery": "collection_delivery",
                "tsm_current_state": "Activated",
                "uuid": "4157cd46-d491-4661-bdea-d63ae011f544",
                "created_at": "2021-03-15T00:26:32.000000Z",
                "updated_at": "2025-04-23T10:38:39.000000Z",
                "cancellation_requested": 0,
                "type": "FoodBank",
                "branch_uuid": "00e5ae18-8e76-41eb-aee5-fa6b91f4d42b",
                "foodnet": "Deprecated",
                "is_removable": 0,
                "transitions": {
                    "pause": {
                        "color": "yellow",
                        "icon": "fas fa-pause-circle",
                        "name": "Pause",
                        "context": "foodnet_admin"
                    },
                    "expel": {
                        "color": "red",
                        "icon": "fas fa-trash",
                        "name": "Expel",
                        "context": "foodnet_admin"
                    },
                    "suspend": {
                        "color": "black",
                        "icon": "fas fa-pause-circle",
                        "name": "Suspend",
                        "context": "foodnet_admin"
                    }
                },
                "status_style": {
                    "color": "green",
                    "icon": "far fa-play-circle"
                },
                "tsm_current_state_label": "activated",
                "network": {
                    "uuid": "75449cc2-e106-40f0-845e-fbd06408be7b",
                    "activate_membership_required": 1,
                    "description": "A World Where No Good Food Goes To Waste",
                    "max_donation_volume_kg": 30000,
                    "donation_interval": 30,
                    "requirements": "A World Where No Good Food Goes To Waste",
                    "default_co2e": 3.2,
                    "default_meals_per_kg": 2.2,
                    "silence_collection_window_invitation_notifications": 1,
                    "silence_network_membership_notifications": null,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-06-18T11:28:08.000000Z",
                    "deleted_at": null,
                    "is_public": false,
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    }
                },
                "branch": {
                    "uuid": "00e5ae18-8e76-41eb-aee5-fa6b91f4d42b",
                    "name": "FoodCloud Galway City",
                    "countries_id": 2963597,
                    "provinces_id": 7521313,
                    "counties_id": 2964179,
                    "official_id": "FCGC:03",
                    "address_1": "Unit 9",
                    "address_2": "Glennascaul Manufacturing & Technology",
                    "city_town": "Oranmore",
                    "post_code": "H91 N96C",
                    "phone": "+353830000098",
                    "latitude": "53.28375640",
                    "longitude": "-8.92998510",
                    "timezone": "Europe/London",
                    "locale": "en_GB",
                    "is_active": 1,
                    "is_foodboard_allowed": 1,
                    "esign": 1,
                    "send_daily_donations_reminders": true,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_category",
                    "default_categories_only": 1,
                    "approved_products_only": 1,
                    "geofilter_unit_of_distance": "l_miles",
                    "collection_delivery": "collection_delivery",
                    "collector_authentication": "l_esignature",
                    "created_at": "2021-03-15T00:26:32.000000Z",
                    "updated_at": "2025-04-23T10:38:39.000000Z",
                    "deleted_at": null,
                    "category_min": 20,
                    "category_max": 120,
                    "donation_window_cutoff": 12,
                    "transfer_window_cutoff": 24,
                    "max_collection_window": 1,
                    "in_line_address": "Unit 9, Glennascaul Manufacturing & Technology, Oranmore H91 N96C, Galway, Connaught, Ireland",
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    },
                    "users": [
                        {
                            "uuid": "9e90e7f3-b68b-482d-9eea-1f00ebb4a762",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-03-15T00:26:30.000000Z",
                            "updated_at": "2025-02-04T22:22:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "edb50ba5-1d9e-4be1-bde6-cd4fcd81e855",
                            "first_name": "Copia",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:07.000000Z",
                            "updated_at": "2021-04-19T10:41:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Copia Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "54600b1e-8a0f-43a6-964d-65bcba13609a",
                            "first_name": "Uk",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:08.000000Z",
                            "updated_at": "2021-03-15T00:58:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Uk Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "be5c9e0b-2e78-4fe3-9082-eb400500aa4a",
                            "first_name": "Ie",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:08.000000Z",
                            "updated_at": "2021-03-15T00:58:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ie Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5fc9c994-46ce-4f87-a07b-25ecad5fbfb8",
                            "first_name": "Carla",
                            "surname": "McSorley ",
                            "language_code": "en_IE",
                            "mobile_number": "+353831306452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2022-08-09T11:35:57.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Carla McSorley ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "3557a7f9-bdf6-4d6a-9346-d4aa607b0380",
                            "first_name": "Iseult",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2021-03-15T00:58:10.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Iseult ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "96243d0e-67d4-4279-ad01-cea97b0e4da5",
                            "first_name": "Jamesclifford",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "0044444444443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-05-04T13:33:25.000000Z",
                            "updated_at": "2025-02-19T09:14:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jamesclifford ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "4debc6dc-1dba-4225-852c-4636e2ab3d17",
                            "first_name": "Fcs",
                            "surname": "Yvonne Fallon ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-10-26T09:15:55.000000Z",
                            "updated_at": "2024-02-26T15:17:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Yvonne Fallon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0259f40b-5c73-4be6-aaaf-f1a9a7a4c805",
                            "first_name": "Rory",
                            "surname": "Fallon ",
                            "language_code": "en_IE",
                            "mobile_number": "+353838901286",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-12-05T10:08:07.000000Z",
                            "updated_at": "2021-03-22T08:12:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rory Fallon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a6a75333-f972-461e-b31b-f414b9207dd3",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313400",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-01-23T10:53:34.000000Z",
                            "updated_at": "2025-06-17T08:42:59.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Catherine Delaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "644362f1-f165-4190-aa4d-9109a62fe9c4",
                            "first_name": "Fcs",
                            "surname": "RorySupport ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2017-02-01T12:41:29.000000Z",
                            "updated_at": "2021-03-15T00:59:49.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs RorySupport ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0bcd59cf-dbb7-4890-a316-857a4abcec1b",
                            "first_name": "Eimear",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+353868123957",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-04-25T13:30:12.000000Z",
                            "updated_at": "2025-02-06T09:45:58.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Eimear ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6b7554c1-3fde-4d71-b2cb-bdcbb54de0d9",
                            "first_name": "Karen",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+353879676494",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-04-25T13:32:30.000000Z",
                            "updated_at": "2021-04-01T09:38:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Karen ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "25fb084c-14a2-4965-9376-581509cea581",
                            "first_name": "Fcs",
                            "surname": "Muirne Mac Manamon ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-07-31T14:19:07.000000Z",
                            "updated_at": "2021-10-13T08:56:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Muirne Mac Manamon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "36b56997-7416-4337-91ff-f8ab28678559",
                            "first_name": "FoodCloud",
                            "surname": "Tech Demo ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-03-06T15:51:53.000000Z",
                            "updated_at": "2021-03-15T01:02:44.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "FoodCloud Tech Demo ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "47046ca1-9060-4224-95c6-ba08cbebe901",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 1,
                            "suppress_email": 1,
                            "created_at": "2020-11-16T14:25:49.000000Z",
                            "updated_at": "2024-09-30T19:00:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "597f934a-4e92-4faf-b049-b47b24d9ed10",
                            "first_name": "Jessica",
                            "surname": "Greene ",
                            "language_code": "en_IE",
                            "mobile_number": "+353872708024",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-02-10T17:43:30.000000Z",
                            "updated_at": "2021-03-15T01:07:02.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jessica Greene ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8bb70fc1-2665-4a1c-8b78-b697d757ec2c",
                            "first_name": "Fsc",
                            "surname": "Noreen ",
                            "language_code": "en_GB",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-02-25T16:36:48.000000Z",
                            "updated_at": "2024-12-17T17:24:08.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fsc Noreen ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "334574a2-babe-40f0-bfb6-12524bf55bb7",
                            "first_name": "Rourke",
                            "surname": "Bradley",
                            "language_code": "en_IE",
                            "mobile_number": "+353858432189",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-04-15T13:12:55.000000Z",
                            "updated_at": "2023-06-06T14:04:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rourke Bradley",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "9bf48363-a1f4-4926-a150-a9ebc49b455d",
                            "first_name": "Dayo",
                            "surname": "Aderemi",
                            "language_code": "en_IE",
                            "mobile_number": "+353879114567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-05-26T12:07:15.000000Z",
                            "updated_at": "2025-05-26T17:00:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dayo Aderemi",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bf41f16f-506c-4c22-a892-f2a542da66f3",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": "+353868819755",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2023-08-17T13:54:40.000000Z",
                            "updated_at": "2025-05-12T15:23:29.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Catherine Delaney",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1636c930-c2e6-4fe8-9134-28152a44f565",
                            "first_name": "Prachi",
                            "surname": "Patkar",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-12-13T15:53:21.000000Z",
                            "updated_at": "2024-10-27T12:28:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Prachi Patkar",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e908a273-7428-4f56-b349-250420e78e03",
                            "first_name": "Yasmin",
                            "surname": "Hayes",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-10T09:52:35.000000Z",
                            "updated_at": "2024-05-14T08:09:47.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Yasmin Hayes",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "86d4c0bb-7910-463a-9f93-e46483fa6b50",
                            "first_name": "Silvia Touris",
                            "surname": "Santorum",
                            "language_code": "en_IE",
                            "mobile_number": "+353877998876",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-30T14:38:53.000000Z",
                            "updated_at": "2024-01-30T15:04:39.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Silvia Touris Santorum",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "574da0c0-beb7-49ec-82fc-5a25d79cf5b0",
                            "first_name": "Brian",
                            "surname": "Keogh",
                            "language_code": "en_IE",
                            "mobile_number": "+353857852147",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-02-09T11:50:19.000000Z",
                            "updated_at": "2024-03-06T14:45:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Brian Keogh",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bfd9a45d-eccf-49d3-a1c6-26b60f81e169",
                            "first_name": "Dean",
                            "surname": "Heenan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-12-02T16:07:54.000000Z",
                            "updated_at": "2025-03-11T09:19:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dean Heenan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b798fe5a-20ad-40e7-8729-a4a4b2e8e3aa",
                            "first_name": "Aoife",
                            "surname": "Sullivan",
                            "language_code": "en_IE",
                            "mobile_number": "+353877779998",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T09:33:41.000000Z",
                            "updated_at": "2025-01-23T12:40:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aoife Sullivan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a8ebfb7f-00f7-4d6c-bba0-a154b8ac15c2",
                            "first_name": "Mo PROD",
                            "surname": "Zier",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T12:26:04.000000Z",
                            "updated_at": "2025-05-14T10:00:49.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Mo PROD Zier",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8ac642ed-d710-4041-8175-4d6dd5ce4262",
                            "first_name": "Lisa",
                            "surname": "Keegan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-13T11:39:06.000000Z",
                            "updated_at": "2025-02-13T11:40:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lisa Keegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e5f6b69e-1f85-4669-ab37-003112651413",
                            "first_name": "Test",
                            "surname": "Testing",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-05-08T12:05:13.000000Z",
                            "updated_at": "2025-05-08T12:10:42.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Test Testing",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b53dc86d-70ff-4567-a541-2f556958e146",
                            "first_name": "Steve",
                            "surname": "McQueen",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-05-21T09:36:46.000000Z",
                            "updated_at": "2025-05-21T10:02:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steve McQueen",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        }
                    ]
                }
            },
            {
                "name": "FoodCloud Galway City",
                "collection_delivery": "collection_delivery",
                "tsm_current_state": "Pending Membership Approval",
                "uuid": "8a599c36-7d52-4cd8-b68e-a6379cc080b2",
                "created_at": "2025-04-23T10:34:52.000000Z",
                "updated_at": "2025-04-23T10:38:39.000000Z",
                "cancellation_requested": 0,
                "type": "FoodBank",
                "branch_uuid": "00e5ae18-8e76-41eb-aee5-fa6b91f4d42b",
                "foodnet": "Deprecated",
                "is_removable": 0,
                "transitions": {
                    "withdraw": {
                        "color": "black",
                        "icon": "fas fa-eraser",
                        "name": "Withdraw",
                        "context": "foodnets"
                    }
                },
                "status_style": {
                    "color": "yellow",
                    "icon": "fas fa-thumbs-up"
                },
                "tsm_current_state_label": "pending_membership_approval",
                "network": {
                    "uuid": "7a6d523b-22e7-4856-b4ad-2da72a478a69",
                    "activate_membership_required": 0,
                    "description": "FareShare | Fighting hunger, tackling food waste in the UK",
                    "max_donation_volume_kg": 30000,
                    "donation_interval": 30,
                    "requirements": "FareShare | Fighting hunger, tackling food waste in the UK",
                    "default_co2e": null,
                    "default_meals_per_kg": null,
                    "silence_collection_window_invitation_notifications": 1,
                    "silence_network_membership_notifications": null,
                    "created_at": "2021-03-15T01:07:38.000000Z",
                    "updated_at": "2024-06-26T09:11:32.000000Z",
                    "deleted_at": null,
                    "is_public": false,
                    "organisation": {
                        "uuid": "fbfe1124-ac4e-4fcb-bd43-ed6b3035506c",
                        "name": "FareShare UK",
                        "countries_id": 2635167,
                        "provinces_id": 6269131,
                        "counties_id": 2648110,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 30,
                        "is_vip_window_active": 1,
                        "phone": "+441316080967",
                        "address_1": "19th Floor Millbank Tower",
                        "address_2": "",
                        "city_town": "London",
                        "post_code": "SW1P 4QP",
                        "latitude": "51.49231680",
                        "longitude": "-0.12593150",
                        "description": "FareShare is the UK's largest food redistribution charity, fighting hunger and food waste. We redistribute good food that would otherwise go to waste, to frontline charities and community groups that support vulnerable people in over 1,500 towns and cities, providing food for over 36.7 million meals a year and supporting 772,000 people every week.\n\nFor nearly 25 years, FareShare has been working with the food industry to identify in date, surplus food that can be redistributed to charities to feed people in need. By ensuring good food is not wasted, we turn an environmental problem into a social solution.\n\nFareShare redistributes food to more than 9,653 charities and community groups including homeless shelters, children’s breakfast clubs and domestic violence refuges, so they can provide nutritious meals alongside life-changing support.",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 1,
                        "created_at": "2019-07-17T13:42:10.000000Z",
                        "updated_at": "2023-02-09T11:52:38.000000Z",
                        "deleted_at": null,
                        "in_line_address": "19th Floor Millbank Tower, London SW1P 4QP, Greater London, England, United Kingdom"
                    }
                },
                "branch": {
                    "uuid": "00e5ae18-8e76-41eb-aee5-fa6b91f4d42b",
                    "name": "FoodCloud Galway City",
                    "countries_id": 2963597,
                    "provinces_id": 7521313,
                    "counties_id": 2964179,
                    "official_id": "FCGC:03",
                    "address_1": "Unit 9",
                    "address_2": "Glennascaul Manufacturing & Technology",
                    "city_town": "Oranmore",
                    "post_code": "H91 N96C",
                    "phone": "+353830000098",
                    "latitude": "53.28375640",
                    "longitude": "-8.92998510",
                    "timezone": "Europe/London",
                    "locale": "en_GB",
                    "is_active": 1,
                    "is_foodboard_allowed": 1,
                    "esign": 1,
                    "send_daily_donations_reminders": true,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_category",
                    "default_categories_only": 1,
                    "approved_products_only": 1,
                    "geofilter_unit_of_distance": "l_miles",
                    "collection_delivery": "collection_delivery",
                    "collector_authentication": "l_esignature",
                    "created_at": "2021-03-15T00:26:32.000000Z",
                    "updated_at": "2025-04-23T10:38:39.000000Z",
                    "deleted_at": null,
                    "category_min": 20,
                    "category_max": 120,
                    "donation_window_cutoff": 12,
                    "transfer_window_cutoff": 24,
                    "max_collection_window": 1,
                    "in_line_address": "Unit 9, Glennascaul Manufacturing & Technology, Oranmore H91 N96C, Galway, Connaught, Ireland",
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    },
                    "users": [
                        {
                            "uuid": "9e90e7f3-b68b-482d-9eea-1f00ebb4a762",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-03-15T00:26:30.000000Z",
                            "updated_at": "2025-02-04T22:22:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "edb50ba5-1d9e-4be1-bde6-cd4fcd81e855",
                            "first_name": "Copia",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:07.000000Z",
                            "updated_at": "2021-04-19T10:41:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Copia Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "54600b1e-8a0f-43a6-964d-65bcba13609a",
                            "first_name": "Uk",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:08.000000Z",
                            "updated_at": "2021-03-15T00:58:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Uk Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "be5c9e0b-2e78-4fe3-9082-eb400500aa4a",
                            "first_name": "Ie",
                            "surname": "Admin ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2016-02-11T15:12:08.000000Z",
                            "updated_at": "2021-03-15T00:58:09.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ie Admin ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5fc9c994-46ce-4f87-a07b-25ecad5fbfb8",
                            "first_name": "Carla",
                            "surname": "McSorley ",
                            "language_code": "en_IE",
                            "mobile_number": "+353831306452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2022-08-09T11:35:57.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Carla McSorley ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "3557a7f9-bdf6-4d6a-9346-d4aa607b0380",
                            "first_name": "Iseult",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2021-03-15T00:58:10.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Iseult ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "96243d0e-67d4-4279-ad01-cea97b0e4da5",
                            "first_name": "Jamesclifford",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "0044444444443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-05-04T13:33:25.000000Z",
                            "updated_at": "2025-02-19T09:14:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jamesclifford ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "4debc6dc-1dba-4225-852c-4636e2ab3d17",
                            "first_name": "Fcs",
                            "surname": "Yvonne Fallon ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-10-26T09:15:55.000000Z",
                            "updated_at": "2024-02-26T15:17:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Yvonne Fallon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0259f40b-5c73-4be6-aaaf-f1a9a7a4c805",
                            "first_name": "Rory",
                            "surname": "Fallon ",
                            "language_code": "en_IE",
                            "mobile_number": "+353838901286",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-12-05T10:08:07.000000Z",
                            "updated_at": "2021-03-22T08:12:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rory Fallon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a6a75333-f972-461e-b31b-f414b9207dd3",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313400",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-01-23T10:53:34.000000Z",
                            "updated_at": "2025-06-17T08:42:59.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Catherine Delaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "644362f1-f165-4190-aa4d-9109a62fe9c4",
                            "first_name": "Fcs",
                            "surname": "RorySupport ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2017-02-01T12:41:29.000000Z",
                            "updated_at": "2021-03-15T00:59:49.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs RorySupport ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0bcd59cf-dbb7-4890-a316-857a4abcec1b",
                            "first_name": "Eimear",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+353868123957",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-04-25T13:30:12.000000Z",
                            "updated_at": "2025-02-06T09:45:58.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Eimear ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6b7554c1-3fde-4d71-b2cb-bdcbb54de0d9",
                            "first_name": "Karen",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+353879676494",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-04-25T13:32:30.000000Z",
                            "updated_at": "2021-04-01T09:38:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Karen ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "25fb084c-14a2-4965-9376-581509cea581",
                            "first_name": "Fcs",
                            "surname": "Muirne Mac Manamon ",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-07-31T14:19:07.000000Z",
                            "updated_at": "2021-10-13T08:56:13.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Muirne Mac Manamon ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "36b56997-7416-4337-91ff-f8ab28678559",
                            "first_name": "FoodCloud",
                            "surname": "Tech Demo ",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-03-06T15:51:53.000000Z",
                            "updated_at": "2021-03-15T01:02:44.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "FoodCloud Tech Demo ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "47046ca1-9060-4224-95c6-ba08cbebe901",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 1,
                            "suppress_email": 1,
                            "created_at": "2020-11-16T14:25:49.000000Z",
                            "updated_at": "2024-09-30T19:00:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "597f934a-4e92-4faf-b049-b47b24d9ed10",
                            "first_name": "Jessica",
                            "surname": "Greene ",
                            "language_code": "en_IE",
                            "mobile_number": "+353872708024",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-02-10T17:43:30.000000Z",
                            "updated_at": "2021-03-15T01:07:02.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jessica Greene ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8bb70fc1-2665-4a1c-8b78-b697d757ec2c",
                            "first_name": "Fsc",
                            "surname": "Noreen ",
                            "language_code": "en_GB",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-02-25T16:36:48.000000Z",
                            "updated_at": "2024-12-17T17:24:08.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fsc Noreen ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "334574a2-babe-40f0-bfb6-12524bf55bb7",
                            "first_name": "Rourke",
                            "surname": "Bradley",
                            "language_code": "en_IE",
                            "mobile_number": "+353858432189",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-04-15T13:12:55.000000Z",
                            "updated_at": "2023-06-06T14:04:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rourke Bradley",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "9bf48363-a1f4-4926-a150-a9ebc49b455d",
                            "first_name": "Dayo",
                            "surname": "Aderemi",
                            "language_code": "en_IE",
                            "mobile_number": "+353879114567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-05-26T12:07:15.000000Z",
                            "updated_at": "2025-05-26T17:00:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dayo Aderemi",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bf41f16f-506c-4c22-a892-f2a542da66f3",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": "+353868819755",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2023-08-17T13:54:40.000000Z",
                            "updated_at": "2025-05-12T15:23:29.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Catherine Delaney",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1636c930-c2e6-4fe8-9134-28152a44f565",
                            "first_name": "Prachi",
                            "surname": "Patkar",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-12-13T15:53:21.000000Z",
                            "updated_at": "2024-10-27T12:28:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Prachi Patkar",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e908a273-7428-4f56-b349-250420e78e03",
                            "first_name": "Yasmin",
                            "surname": "Hayes",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-10T09:52:35.000000Z",
                            "updated_at": "2024-05-14T08:09:47.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Yasmin Hayes",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "86d4c0bb-7910-463a-9f93-e46483fa6b50",
                            "first_name": "Silvia Touris",
                            "surname": "Santorum",
                            "language_code": "en_IE",
                            "mobile_number": "+353877998876",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-30T14:38:53.000000Z",
                            "updated_at": "2024-01-30T15:04:39.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Silvia Touris Santorum",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "574da0c0-beb7-49ec-82fc-5a25d79cf5b0",
                            "first_name": "Brian",
                            "surname": "Keogh",
                            "language_code": "en_IE",
                            "mobile_number": "+353857852147",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-02-09T11:50:19.000000Z",
                            "updated_at": "2024-03-06T14:45:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Brian Keogh",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bfd9a45d-eccf-49d3-a1c6-26b60f81e169",
                            "first_name": "Dean",
                            "surname": "Heenan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-12-02T16:07:54.000000Z",
                            "updated_at": "2025-03-11T09:19:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dean Heenan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b798fe5a-20ad-40e7-8729-a4a4b2e8e3aa",
                            "first_name": "Aoife",
                            "surname": "Sullivan",
                            "language_code": "en_IE",
                            "mobile_number": "+353877779998",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T09:33:41.000000Z",
                            "updated_at": "2025-01-23T12:40:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aoife Sullivan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a8ebfb7f-00f7-4d6c-bba0-a154b8ac15c2",
                            "first_name": "Mo PROD",
                            "surname": "Zier",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T12:26:04.000000Z",
                            "updated_at": "2025-05-14T10:00:49.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Mo PROD Zier",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8ac642ed-d710-4041-8175-4d6dd5ce4262",
                            "first_name": "Lisa",
                            "surname": "Keegan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-13T11:39:06.000000Z",
                            "updated_at": "2025-02-13T11:40:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lisa Keegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e5f6b69e-1f85-4669-ab37-003112651413",
                            "first_name": "Test",
                            "surname": "Testing",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-05-08T12:05:13.000000Z",
                            "updated_at": "2025-05-08T12:10:42.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Test Testing",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b53dc86d-70ff-4567-a541-2f556958e146",
                            "first_name": "Steve",
                            "surname": "McQueen",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-05-21T09:36:46.000000Z",
                            "updated_at": "2025-05-21T10:02:07.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Steve McQueen",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        }
                    ]
                }
            },
            {
                "name": "#demo Admin Michael",
                "collection_delivery": "collection_delivery",
                "tsm_current_state": "Activated",
                "uuid": "11fe5850-52e1-411d-ab68-03c0af75bb9c",
                "created_at": "2021-03-15T01:07:57.000000Z",
                "updated_at": "2025-02-26T15:05:23.000000Z",
                "cancellation_requested": 0,
                "type": "FoodBank",
                "branch_uuid": "b4ad7860-7df7-470a-809c-13b5a87e2b7f",
                "foodnet": "Deprecated",
                "is_removable": 0,
                "transitions": {
                    "pause": {
                        "color": "yellow",
                        "icon": "fas fa-pause-circle",
                        "name": "Pause",
                        "context": "foodnet_admin"
                    },
                    "expel": {
                        "color": "red",
                        "icon": "fas fa-trash",
                        "name": "Expel",
                        "context": "foodnet_admin"
                    },
                    "suspend": {
                        "color": "black",
                        "icon": "fas fa-pause-circle",
                        "name": "Suspend",
                        "context": "foodnet_admin"
                    }
                },
                "status_style": {
                    "color": "green",
                    "icon": "far fa-play-circle"
                },
                "tsm_current_state_label": "activated",
                "network": {
                    "uuid": "75449cc2-e106-40f0-845e-fbd06408be7b",
                    "activate_membership_required": 1,
                    "description": "A World Where No Good Food Goes To Waste",
                    "max_donation_volume_kg": 30000,
                    "donation_interval": 30,
                    "requirements": "A World Where No Good Food Goes To Waste",
                    "default_co2e": 3.2,
                    "default_meals_per_kg": 2.2,
                    "silence_collection_window_invitation_notifications": 1,
                    "silence_network_membership_notifications": null,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-06-18T11:28:08.000000Z",
                    "deleted_at": null,
                    "is_public": false,
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    }
                },
                "branch": {
                    "uuid": "b4ad7860-7df7-470a-809c-13b5a87e2b7f",
                    "name": "#demo Admin Michael",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7778677,
                    "official_id": "demomike:1234",
                    "address_1": "5090 Explorer Dr 203, Mississauga",
                    "address_2": "",
                    "city_town": "Leinster",
                    "post_code": "ON L4W 4T9",
                    "phone": "+353858774632",
                    "latitude": "43.66121500",
                    "longitude": "-79.59680700",
                    "timezone": "Europe/Dublin",
                    "locale": "en_IE",
                    "is_active": 0,
                    "is_foodboard_allowed": 1,
                    "esign": 0,
                    "send_daily_donations_reminders": false,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_product_and_category",
                    "default_categories_only": 0,
                    "approved_products_only": 0,
                    "geofilter_unit_of_distance": "l_kilometers",
                    "collection_delivery": "collection_delivery",
                    "collector_authentication": "l_none",
                    "created_at": "2019-04-08T09:25:54.000000Z",
                    "updated_at": "2025-01-29T14:01:14.000000Z",
                    "deleted_at": null,
                    "category_min": 0,
                    "category_max": 100,
                    "donation_window_cutoff": 12,
                    "transfer_window_cutoff": 24,
                    "max_collection_window": 1,
                    "in_line_address": "5090 Explorer Dr 203, Mississauga, Leinster ON L4W 4T9, Dublin City, Leinster, Ireland",
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    },
                    "users": [
                        {
                            "uuid": "9e90e7f3-b68b-482d-9eea-1f00ebb4a762",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-03-15T00:26:30.000000Z",
                            "updated_at": "2025-02-04T22:22:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5fc9c994-46ce-4f87-a07b-25ecad5fbfb8",
                            "first_name": "Carla",
                            "surname": "McSorley ",
                            "language_code": "en_IE",
                            "mobile_number": "+353831306452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2022-08-09T11:35:57.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Carla McSorley ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6fec8ae4-0c7e-42ad-a4ae-c6dd90e04e56",
                            "first_name": "Maudrag",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+447778114660",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2020-01-07T12:48:04.000000Z",
                            "updated_at": "2024-11-05T10:21:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maudrag ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "334574a2-babe-40f0-bfb6-12524bf55bb7",
                            "first_name": "Rourke",
                            "surname": "Bradley",
                            "language_code": "en_IE",
                            "mobile_number": "+353858432189",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-04-15T13:12:55.000000Z",
                            "updated_at": "2023-06-06T14:04:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rourke Bradley",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c78a23d1-3da8-43e1-be54-1e62a357f903",
                            "first_name": "Ebby",
                            "surname": "Stafford",
                            "language_code": "en_IE",
                            "mobile_number": "+353415313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-05-06T16:05:15.000000Z",
                            "updated_at": "2025-03-25T13:06:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ebby Stafford",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "aafbb4b0-929e-4ee4-abe1-49fd0d4c7ab6",
                            "first_name": "Aisling",
                            "surname": "Mulvaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-06-21T14:44:56.000000Z",
                            "updated_at": "2025-02-25T15:43:27.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aisling Mulvaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "62e9ef7c-53f4-4e37-bc5b-8cb428891391",
                            "first_name": "Devika",
                            "surname": "Kulkarni",
                            "language_code": "en_IE",
                            "mobile_number": "+353837654531",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-02-13T12:08:32.000000Z",
                            "updated_at": "2025-01-24T10:49:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Devika Kulkarni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "9bf48363-a1f4-4926-a150-a9ebc49b455d",
                            "first_name": "Dayo",
                            "surname": "Aderemi",
                            "language_code": "en_IE",
                            "mobile_number": "+353879114567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-05-26T12:07:15.000000Z",
                            "updated_at": "2025-05-26T17:00:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dayo Aderemi",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0a6cffe8-6cc8-4a1e-ae4d-72e12e5a4103",
                            "first_name": "Fcs Adriana",
                            "surname": "Wiedeheft",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-06-08T10:54:18.000000Z",
                            "updated_at": "2023-08-03T11:00:37.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Adriana Wiedeheft",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "81d9f413-d87c-45d1-aaf4-49c36f5bcdb9",
                            "first_name": "Lorraine",
                            "surname": "Bourke",
                            "language_code": "en_IE",
                            "mobile_number": "+353897654989",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-07T15:58:21.000000Z",
                            "updated_at": "2023-11-01T10:57:28.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lorraine Bourke",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "994dc772-3d06-4347-9edb-e78dc311c044",
                            "first_name": "Joana",
                            "surname": "Guttler",
                            "language_code": "en_IE",
                            "mobile_number": "+353875896325",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-11T14:56:46.000000Z",
                            "updated_at": "2025-03-24T15:55:54.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Joana Guttler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c29c9db1-51dd-4a52-9eca-d3777587333c",
                            "first_name": "Eva",
                            "surname": "Soler",
                            "language_code": "en_GB",
                            "mobile_number": "+447763581443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-14T14:53:24.000000Z",
                            "updated_at": "2024-11-27T09:26:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Eva Soler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1636c930-c2e6-4fe8-9134-28152a44f565",
                            "first_name": "Prachi",
                            "surname": "Patkar",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-12-13T15:53:21.000000Z",
                            "updated_at": "2024-10-27T12:28:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Prachi Patkar",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e908a273-7428-4f56-b349-250420e78e03",
                            "first_name": "Yasmin",
                            "surname": "Hayes",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-10T09:52:35.000000Z",
                            "updated_at": "2024-05-14T08:09:47.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Yasmin Hayes",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "86d4c0bb-7910-463a-9f93-e46483fa6b50",
                            "first_name": "Silvia Touris",
                            "surname": "Santorum",
                            "language_code": "en_IE",
                            "mobile_number": "+353877998876",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-30T14:38:53.000000Z",
                            "updated_at": "2024-01-30T15:04:39.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Silvia Touris Santorum",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "574da0c0-beb7-49ec-82fc-5a25d79cf5b0",
                            "first_name": "Brian",
                            "surname": "Keogh",
                            "language_code": "en_IE",
                            "mobile_number": "+353857852147",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-02-09T11:50:19.000000Z",
                            "updated_at": "2024-03-06T14:45:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Brian Keogh",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "95d2903a-f8b4-4e14-9658-d3da76ed6dc4",
                            "first_name": "Janet",
                            "surname": "Oluniran",
                            "language_code": "en_IE",
                            "mobile_number": "+353111222111",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:11:53.000000Z",
                            "updated_at": "2024-04-03T09:06:17.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Janet Oluniran",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2524965c-cb04-4194-8a9e-46233152086a",
                            "first_name": "Anthony",
                            "surname": "Braddish",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-04-09T13:36:12.000000Z",
                            "updated_at": "2025-03-27T11:35:18.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Anthony Braddish",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "29593317-6e12-40e2-bff2-68d5b0268a32",
                            "first_name": "Killian",
                            "surname": "Waldron",
                            "language_code": "en_IE",
                            "mobile_number": "+353877999987",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-04-23T09:22:41.000000Z",
                            "updated_at": "2025-06-24T14:20:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Killian Waldron",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "74742750-6405-4b2a-a7dc-104a74cb88b5",
                            "first_name": "Chris",
                            "surname": "O'Kane",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-05-01T10:47:54.000000Z",
                            "updated_at": "2024-05-14T10:59:22.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Chris O'Kane",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0b2d62be-2df6-4f14-aac8-a8786f48a50c",
                            "first_name": "Maryfaith",
                            "surname": "Ngwueche",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-09-04T11:51:22.000000Z",
                            "updated_at": "2025-04-23T12:45:45.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maryfaith Ngwueche",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "7e2917f8-6041-477e-ae06-3dfc8bedf108",
                            "first_name": "Ana",
                            "surname": "Ryan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-23T13:32:35.000000Z",
                            "updated_at": "2025-03-06T15:44:56.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ana Ryan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c727dd4d-0646-4844-b1d1-9a96e3d29e27",
                            "first_name": "Aaron",
                            "surname": "Lawler",
                            "language_code": "en_IE",
                            "mobile_number": "+353830161522",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-29T15:55:14.000000Z",
                            "updated_at": "2025-03-12T11:56:52.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aaron Lawler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bfd9a45d-eccf-49d3-a1c6-26b60f81e169",
                            "first_name": "Dean",
                            "surname": "Heenan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-12-02T16:07:54.000000Z",
                            "updated_at": "2025-03-11T09:19:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dean Heenan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b798fe5a-20ad-40e7-8729-a4a4b2e8e3aa",
                            "first_name": "Aoife",
                            "surname": "Sullivan",
                            "language_code": "en_IE",
                            "mobile_number": "+353877779998",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T09:33:41.000000Z",
                            "updated_at": "2025-01-23T12:40:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aoife Sullivan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8ac642ed-d710-4041-8175-4d6dd5ce4262",
                            "first_name": "Lisa",
                            "surname": "Keegan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-13T11:39:06.000000Z",
                            "updated_at": "2025-02-13T11:40:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lisa Keegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "eb18ff56-9c82-429f-8d6f-c64fbbba912f",
                            "first_name": "Jackie",
                            "surname": "McKeown",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T11:19:19.000000Z",
                            "updated_at": "2025-02-20T11:21:15.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jackie McKeown",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c153f9b4-9bbc-4f22-825e-7d5ad45a8b51",
                            "first_name": "Pierce",
                            "surname": "Lowe",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T15:35:14.000000Z",
                            "updated_at": "2025-02-20T15:36:41.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Pierce Lowe",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "68f88f11-3a02-4083-bb44-bfd0a1109917",
                            "first_name": "Hazel",
                            "surname": "Grassie",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-26T15:03:55.000000Z",
                            "updated_at": "2025-02-26T15:05:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Hazel Grassie",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        }
                    ]
                }
            },
            {
                "name": "Robs Test charity 143",
                "collection_delivery": null,
                "tsm_current_state": "Activated",
                "uuid": "61cc3452-7013-41f3-afc6-c1f53256236d",
                "created_at": "2021-03-22T03:47:48.000000Z",
                "updated_at": "2025-02-26T15:05:23.000000Z",
                "cancellation_requested": 0,
                "type": "FoodBank",
                "branch_uuid": "a839d89b-720b-401d-87f0-b94598d6f128",
                "foodnet": "Deprecated",
                "is_removable": 0,
                "transitions": {
                    "pause": {
                        "color": "yellow",
                        "icon": "fas fa-pause-circle",
                        "name": "Pause",
                        "context": "foodnet_admin"
                    },
                    "expel": {
                        "color": "red",
                        "icon": "fas fa-trash",
                        "name": "Expel",
                        "context": "foodnet_admin"
                    },
                    "suspend": {
                        "color": "black",
                        "icon": "fas fa-pause-circle",
                        "name": "Suspend",
                        "context": "foodnet_admin"
                    }
                },
                "status_style": {
                    "color": "green",
                    "icon": "far fa-play-circle"
                },
                "tsm_current_state_label": "activated",
                "network": {
                    "uuid": "75449cc2-e106-40f0-845e-fbd06408be7b",
                    "activate_membership_required": 1,
                    "description": "A World Where No Good Food Goes To Waste",
                    "max_donation_volume_kg": 30000,
                    "donation_interval": 30,
                    "requirements": "A World Where No Good Food Goes To Waste",
                    "default_co2e": 3.2,
                    "default_meals_per_kg": 2.2,
                    "silence_collection_window_invitation_notifications": 1,
                    "silence_network_membership_notifications": null,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-06-18T11:28:08.000000Z",
                    "deleted_at": null,
                    "is_public": false,
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    }
                },
                "branch": {
                    "uuid": "a839d89b-720b-401d-87f0-b94598d6f128",
                    "name": "Robs Test charity 143",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7778677,
                    "official_id": null,
                    "address_1": "Parnell Street",
                    "address_2": "Rotunda Hospital Rotunda",
                    "city_town": "Douglas",
                    "post_code": "XX XXXX",
                    "phone": "+353899991083",
                    "latitude": "53.35302710",
                    "longitude": "-6.26355480",
                    "timezone": "Europe/Dublin",
                    "locale": "en_IE",
                    "is_active": 0,
                    "is_foodboard_allowed": 1,
                    "esign": 0,
                    "send_daily_donations_reminders": true,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_product_and_category",
                    "default_categories_only": 0,
                    "approved_products_only": 0,
                    "geofilter_unit_of_distance": "l_kilometers",
                    "collection_delivery": null,
                    "collector_authentication": "l_none",
                    "created_at": "2021-03-22T03:47:48.000000Z",
                    "updated_at": "2021-06-14T20:37:02.000000Z",
                    "deleted_at": null,
                    "category_min": 0,
                    "category_max": 100,
                    "donation_window_cutoff": 12,
                    "transfer_window_cutoff": 24,
                    "max_collection_window": 1,
                    "in_line_address": "Parnell Street, Rotunda Hospital Rotunda, Douglas XX XXXX, Dublin City, Leinster, Ireland",
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    },
                    "users": [
                        {
                            "uuid": "9e90e7f3-b68b-482d-9eea-1f00ebb4a762",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-03-15T00:26:30.000000Z",
                            "updated_at": "2025-02-04T22:22:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5fc9c994-46ce-4f87-a07b-25ecad5fbfb8",
                            "first_name": "Carla",
                            "surname": "McSorley ",
                            "language_code": "en_IE",
                            "mobile_number": "+353831306452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2022-08-09T11:35:57.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Carla McSorley ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "96243d0e-67d4-4279-ad01-cea97b0e4da5",
                            "first_name": "Jamesclifford",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "0044444444443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-05-04T13:33:25.000000Z",
                            "updated_at": "2025-02-19T09:14:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jamesclifford ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5760a1cd-98af-4a03-bc15-b82c8fd22027",
                            "first_name": "Rosie",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-05-08T15:21:46.000000Z",
                            "updated_at": "2021-11-12T09:12:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rosie ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6fec8ae4-0c7e-42ad-a4ae-c6dd90e04e56",
                            "first_name": "Maudrag",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+447778114660",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2020-01-07T12:48:04.000000Z",
                            "updated_at": "2024-11-05T10:21:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maudrag ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "334574a2-babe-40f0-bfb6-12524bf55bb7",
                            "first_name": "Rourke",
                            "surname": "Bradley",
                            "language_code": "en_IE",
                            "mobile_number": "+353858432189",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-04-15T13:12:55.000000Z",
                            "updated_at": "2023-06-06T14:04:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rourke Bradley",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c78a23d1-3da8-43e1-be54-1e62a357f903",
                            "first_name": "Ebby",
                            "surname": "Stafford",
                            "language_code": "en_IE",
                            "mobile_number": "+353415313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-05-06T16:05:15.000000Z",
                            "updated_at": "2025-03-25T13:06:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ebby Stafford",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "aafbb4b0-929e-4ee4-abe1-49fd0d4c7ab6",
                            "first_name": "Aisling",
                            "surname": "Mulvaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-06-21T14:44:56.000000Z",
                            "updated_at": "2025-02-25T15:43:27.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aisling Mulvaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "62e9ef7c-53f4-4e37-bc5b-8cb428891391",
                            "first_name": "Devika",
                            "surname": "Kulkarni",
                            "language_code": "en_IE",
                            "mobile_number": "+353837654531",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-02-13T12:08:32.000000Z",
                            "updated_at": "2025-01-24T10:49:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Devika Kulkarni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "9bf48363-a1f4-4926-a150-a9ebc49b455d",
                            "first_name": "Dayo",
                            "surname": "Aderemi",
                            "language_code": "en_IE",
                            "mobile_number": "+353879114567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-05-26T12:07:15.000000Z",
                            "updated_at": "2025-05-26T17:00:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dayo Aderemi",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0a6cffe8-6cc8-4a1e-ae4d-72e12e5a4103",
                            "first_name": "Fcs Adriana",
                            "surname": "Wiedeheft",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-06-08T10:54:18.000000Z",
                            "updated_at": "2023-08-03T11:00:37.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Adriana Wiedeheft",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "81d9f413-d87c-45d1-aaf4-49c36f5bcdb9",
                            "first_name": "Lorraine",
                            "surname": "Bourke",
                            "language_code": "en_IE",
                            "mobile_number": "+353897654989",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-07T15:58:21.000000Z",
                            "updated_at": "2023-11-01T10:57:28.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lorraine Bourke",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "994dc772-3d06-4347-9edb-e78dc311c044",
                            "first_name": "Joana",
                            "surname": "Guttler",
                            "language_code": "en_IE",
                            "mobile_number": "+353875896325",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-11T14:56:46.000000Z",
                            "updated_at": "2025-03-24T15:55:54.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Joana Guttler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c29c9db1-51dd-4a52-9eca-d3777587333c",
                            "first_name": "Eva",
                            "surname": "Soler",
                            "language_code": "en_GB",
                            "mobile_number": "+447763581443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-14T14:53:24.000000Z",
                            "updated_at": "2024-11-27T09:26:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Eva Soler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1636c930-c2e6-4fe8-9134-28152a44f565",
                            "first_name": "Prachi",
                            "surname": "Patkar",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-12-13T15:53:21.000000Z",
                            "updated_at": "2024-10-27T12:28:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Prachi Patkar",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e908a273-7428-4f56-b349-250420e78e03",
                            "first_name": "Yasmin",
                            "surname": "Hayes",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-10T09:52:35.000000Z",
                            "updated_at": "2024-05-14T08:09:47.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Yasmin Hayes",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "86d4c0bb-7910-463a-9f93-e46483fa6b50",
                            "first_name": "Silvia Touris",
                            "surname": "Santorum",
                            "language_code": "en_IE",
                            "mobile_number": "+353877998876",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-30T14:38:53.000000Z",
                            "updated_at": "2024-01-30T15:04:39.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Silvia Touris Santorum",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "574da0c0-beb7-49ec-82fc-5a25d79cf5b0",
                            "first_name": "Brian",
                            "surname": "Keogh",
                            "language_code": "en_IE",
                            "mobile_number": "+353857852147",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-02-09T11:50:19.000000Z",
                            "updated_at": "2024-03-06T14:45:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Brian Keogh",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "95d2903a-f8b4-4e14-9658-d3da76ed6dc4",
                            "first_name": "Janet",
                            "surname": "Oluniran",
                            "language_code": "en_IE",
                            "mobile_number": "+353111222111",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:11:53.000000Z",
                            "updated_at": "2024-04-03T09:06:17.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Janet Oluniran",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2524965c-cb04-4194-8a9e-46233152086a",
                            "first_name": "Anthony",
                            "surname": "Braddish",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-04-09T13:36:12.000000Z",
                            "updated_at": "2025-03-27T11:35:18.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Anthony Braddish",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "29593317-6e12-40e2-bff2-68d5b0268a32",
                            "first_name": "Killian",
                            "surname": "Waldron",
                            "language_code": "en_IE",
                            "mobile_number": "+353877999987",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-04-23T09:22:41.000000Z",
                            "updated_at": "2025-06-24T14:20:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Killian Waldron",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "74742750-6405-4b2a-a7dc-104a74cb88b5",
                            "first_name": "Chris",
                            "surname": "O'Kane",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-05-01T10:47:54.000000Z",
                            "updated_at": "2024-05-14T10:59:22.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Chris O'Kane",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0b2d62be-2df6-4f14-aac8-a8786f48a50c",
                            "first_name": "Maryfaith",
                            "surname": "Ngwueche",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-09-04T11:51:22.000000Z",
                            "updated_at": "2025-04-23T12:45:45.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maryfaith Ngwueche",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "7e2917f8-6041-477e-ae06-3dfc8bedf108",
                            "first_name": "Ana",
                            "surname": "Ryan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-23T13:32:35.000000Z",
                            "updated_at": "2025-03-06T15:44:56.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ana Ryan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c727dd4d-0646-4844-b1d1-9a96e3d29e27",
                            "first_name": "Aaron",
                            "surname": "Lawler",
                            "language_code": "en_IE",
                            "mobile_number": "+353830161522",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-29T15:55:14.000000Z",
                            "updated_at": "2025-03-12T11:56:52.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aaron Lawler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bfd9a45d-eccf-49d3-a1c6-26b60f81e169",
                            "first_name": "Dean",
                            "surname": "Heenan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-12-02T16:07:54.000000Z",
                            "updated_at": "2025-03-11T09:19:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dean Heenan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b798fe5a-20ad-40e7-8729-a4a4b2e8e3aa",
                            "first_name": "Aoife",
                            "surname": "Sullivan",
                            "language_code": "en_IE",
                            "mobile_number": "+353877779998",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T09:33:41.000000Z",
                            "updated_at": "2025-01-23T12:40:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aoife Sullivan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8ac642ed-d710-4041-8175-4d6dd5ce4262",
                            "first_name": "Lisa",
                            "surname": "Keegan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-13T11:39:06.000000Z",
                            "updated_at": "2025-02-13T11:40:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lisa Keegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "eb18ff56-9c82-429f-8d6f-c64fbbba912f",
                            "first_name": "Jackie",
                            "surname": "McKeown",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T11:19:19.000000Z",
                            "updated_at": "2025-02-20T11:21:15.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jackie McKeown",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c153f9b4-9bbc-4f22-825e-7d5ad45a8b51",
                            "first_name": "Pierce",
                            "surname": "Lowe",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T15:35:14.000000Z",
                            "updated_at": "2025-02-20T15:36:41.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Pierce Lowe",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "68f88f11-3a02-4083-bb44-bfd0a1109917",
                            "first_name": "Hazel",
                            "surname": "Grassie",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-26T15:03:55.000000Z",
                            "updated_at": "2025-02-26T15:05:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Hazel Grassie",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        }
                    ]
                }
            },
            {
                "name": "James test user branch",
                "collection_delivery": null,
                "tsm_current_state": "Activated",
                "uuid": "2c422e15-48b5-41d1-affc-317f4f7c40a9",
                "created_at": "2021-03-22T07:44:26.000000Z",
                "updated_at": "2025-02-27T14:23:17.000000Z",
                "cancellation_requested": 0,
                "type": "FoodBank",
                "branch_uuid": "af453971-177c-4528-9db3-e8e3226fe09e",
                "foodnet": "Deprecated",
                "is_removable": 0,
                "transitions": {
                    "pause": {
                        "color": "yellow",
                        "icon": "fas fa-pause-circle",
                        "name": "Pause",
                        "context": "foodnet_admin"
                    },
                    "expel": {
                        "color": "red",
                        "icon": "fas fa-trash",
                        "name": "Expel",
                        "context": "foodnet_admin"
                    },
                    "suspend": {
                        "color": "black",
                        "icon": "fas fa-pause-circle",
                        "name": "Suspend",
                        "context": "foodnet_admin"
                    }
                },
                "status_style": {
                    "color": "green",
                    "icon": "far fa-play-circle"
                },
                "tsm_current_state_label": "activated",
                "network": {
                    "uuid": "75449cc2-e106-40f0-845e-fbd06408be7b",
                    "activate_membership_required": 1,
                    "description": "A World Where No Good Food Goes To Waste",
                    "max_donation_volume_kg": 30000,
                    "donation_interval": 30,
                    "requirements": "A World Where No Good Food Goes To Waste",
                    "default_co2e": 3.2,
                    "default_meals_per_kg": 2.2,
                    "silence_collection_window_invitation_notifications": 1,
                    "silence_network_membership_notifications": null,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-06-18T11:28:08.000000Z",
                    "deleted_at": null,
                    "is_public": false,
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    }
                },
                "branch": {
                    "uuid": "af453971-177c-4528-9db3-e8e3226fe09e",
                    "name": "James test user branch",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 2960935,
                    "official_id": null,
                    "address_1": "The Only Street In",
                    "address_2": "Newtowndrangan",
                    "city_town": "Drangan",
                    "post_code": "XXX XXX",
                    "phone": "+353879114749",
                    "latitude": "53.36824999",
                    "longitude": "-6.31641667",
                    "timezone": "Europe/Dublin",
                    "locale": "en_IE",
                    "is_active": 1,
                    "is_foodboard_allowed": 1,
                    "esign": 0,
                    "send_daily_donations_reminders": false,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_product_and_category",
                    "default_categories_only": 0,
                    "approved_products_only": 0,
                    "geofilter_unit_of_distance": "l_kilometers",
                    "collection_delivery": null,
                    "collector_authentication": "l_none",
                    "created_at": "2021-03-22T07:44:26.000000Z",
                    "updated_at": "2024-02-08T13:18:56.000000Z",
                    "deleted_at": null,
                    "category_min": 0,
                    "category_max": 100,
                    "donation_window_cutoff": 12,
                    "transfer_window_cutoff": 24,
                    "max_collection_window": 1,
                    "in_line_address": "The Only Street In, Newtowndrangan, Drangan XXX XXX, Co. Wicklow, Leinster, Ireland",
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    },
                    "users": [
                        {
                            "uuid": "9e90e7f3-b68b-482d-9eea-1f00ebb4a762",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-03-15T00:26:30.000000Z",
                            "updated_at": "2025-02-04T22:22:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5fc9c994-46ce-4f87-a07b-25ecad5fbfb8",
                            "first_name": "Carla",
                            "surname": "McSorley ",
                            "language_code": "en_IE",
                            "mobile_number": "+353831306452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2022-08-09T11:35:57.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Carla McSorley ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "96243d0e-67d4-4279-ad01-cea97b0e4da5",
                            "first_name": "Jamesclifford",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "0044444444443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-05-04T13:33:25.000000Z",
                            "updated_at": "2025-02-19T09:14:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jamesclifford ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5760a1cd-98af-4a03-bc15-b82c8fd22027",
                            "first_name": "Rosie",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2018-05-08T15:21:46.000000Z",
                            "updated_at": "2021-11-12T09:12:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rosie ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6fec8ae4-0c7e-42ad-a4ae-c6dd90e04e56",
                            "first_name": "Maudrag",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+447778114660",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2020-01-07T12:48:04.000000Z",
                            "updated_at": "2024-11-05T10:21:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maudrag ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "334574a2-babe-40f0-bfb6-12524bf55bb7",
                            "first_name": "Rourke",
                            "surname": "Bradley",
                            "language_code": "en_IE",
                            "mobile_number": "+353858432189",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-04-15T13:12:55.000000Z",
                            "updated_at": "2023-06-06T14:04:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rourke Bradley",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c78a23d1-3da8-43e1-be54-1e62a357f903",
                            "first_name": "Ebby",
                            "surname": "Stafford",
                            "language_code": "en_IE",
                            "mobile_number": "+353415313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-05-06T16:05:15.000000Z",
                            "updated_at": "2025-03-25T13:06:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ebby Stafford",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "aafbb4b0-929e-4ee4-abe1-49fd0d4c7ab6",
                            "first_name": "Aisling",
                            "surname": "Mulvaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-06-21T14:44:56.000000Z",
                            "updated_at": "2025-02-25T15:43:27.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aisling Mulvaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "62e9ef7c-53f4-4e37-bc5b-8cb428891391",
                            "first_name": "Devika",
                            "surname": "Kulkarni",
                            "language_code": "en_IE",
                            "mobile_number": "+353837654531",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-02-13T12:08:32.000000Z",
                            "updated_at": "2025-01-24T10:49:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Devika Kulkarni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "9bf48363-a1f4-4926-a150-a9ebc49b455d",
                            "first_name": "Dayo",
                            "surname": "Aderemi",
                            "language_code": "en_IE",
                            "mobile_number": "+353879114567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-05-26T12:07:15.000000Z",
                            "updated_at": "2025-05-26T17:00:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dayo Aderemi",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0a6cffe8-6cc8-4a1e-ae4d-72e12e5a4103",
                            "first_name": "Fcs Adriana",
                            "surname": "Wiedeheft",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-06-08T10:54:18.000000Z",
                            "updated_at": "2023-08-03T11:00:37.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Adriana Wiedeheft",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "81d9f413-d87c-45d1-aaf4-49c36f5bcdb9",
                            "first_name": "Lorraine",
                            "surname": "Bourke",
                            "language_code": "en_IE",
                            "mobile_number": "+353897654989",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-07T15:58:21.000000Z",
                            "updated_at": "2023-11-01T10:57:28.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lorraine Bourke",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "994dc772-3d06-4347-9edb-e78dc311c044",
                            "first_name": "Joana",
                            "surname": "Guttler",
                            "language_code": "en_IE",
                            "mobile_number": "+353875896325",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-11T14:56:46.000000Z",
                            "updated_at": "2025-03-24T15:55:54.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Joana Guttler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c29c9db1-51dd-4a52-9eca-d3777587333c",
                            "first_name": "Eva",
                            "surname": "Soler",
                            "language_code": "en_GB",
                            "mobile_number": "+447763581443",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-14T14:53:24.000000Z",
                            "updated_at": "2024-11-27T09:26:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Eva Soler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1636c930-c2e6-4fe8-9134-28152a44f565",
                            "first_name": "Prachi",
                            "surname": "Patkar",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-12-13T15:53:21.000000Z",
                            "updated_at": "2024-10-27T12:28:14.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Prachi Patkar",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "e908a273-7428-4f56-b349-250420e78e03",
                            "first_name": "Yasmin",
                            "surname": "Hayes",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-10T09:52:35.000000Z",
                            "updated_at": "2024-05-14T08:09:47.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Yasmin Hayes",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "86d4c0bb-7910-463a-9f93-e46483fa6b50",
                            "first_name": "Silvia Touris",
                            "surname": "Santorum",
                            "language_code": "en_IE",
                            "mobile_number": "+353877998876",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-01-30T14:38:53.000000Z",
                            "updated_at": "2024-01-30T15:04:39.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Silvia Touris Santorum",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "574da0c0-beb7-49ec-82fc-5a25d79cf5b0",
                            "first_name": "Brian",
                            "surname": "Keogh",
                            "language_code": "en_IE",
                            "mobile_number": "+353857852147",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-02-09T11:50:19.000000Z",
                            "updated_at": "2024-03-06T14:45:40.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Brian Keogh",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "95d2903a-f8b4-4e14-9658-d3da76ed6dc4",
                            "first_name": "Janet",
                            "surname": "Oluniran",
                            "language_code": "en_IE",
                            "mobile_number": "+353111222111",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:11:53.000000Z",
                            "updated_at": "2024-04-03T09:06:17.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Janet Oluniran",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "effa0de3-701c-4afa-8112-24ac3d15d81c",
                            "first_name": "Fcs Joseph",
                            "surname": "Oginni",
                            "language_code": "en_IE",
                            "mobile_number": "+353856662222",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:17:18.000000Z",
                            "updated_at": "2024-10-02T10:32:43.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Fcs Joseph Oginni",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "f4ac62d0-216a-4c51-9d95-e9c8337bc9d9",
                            "first_name": "John",
                            "surname": "Gleave",
                            "language_code": "en_IE",
                            "mobile_number": "+353833333333",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-03-07T14:18:24.000000Z",
                            "updated_at": "2025-02-27T14:23:17.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "John Gleave",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "2524965c-cb04-4194-8a9e-46233152086a",
                            "first_name": "Anthony",
                            "surname": "Braddish",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-04-09T13:36:12.000000Z",
                            "updated_at": "2025-03-27T11:35:18.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Anthony Braddish",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "29593317-6e12-40e2-bff2-68d5b0268a32",
                            "first_name": "Killian",
                            "surname": "Waldron",
                            "language_code": "en_IE",
                            "mobile_number": "+353877999987",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-04-23T09:22:41.000000Z",
                            "updated_at": "2025-06-24T14:20:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Killian Waldron",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "74742750-6405-4b2a-a7dc-104a74cb88b5",
                            "first_name": "Chris",
                            "surname": "O'Kane",
                            "language_code": "en_IE",
                            "mobile_number": "",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-05-01T10:47:54.000000Z",
                            "updated_at": "2024-05-14T10:59:22.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Chris O'Kane",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "0b2d62be-2df6-4f14-aac8-a8786f48a50c",
                            "first_name": "Maryfaith",
                            "surname": "Ngwueche",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-09-04T11:51:22.000000Z",
                            "updated_at": "2025-04-23T12:45:45.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maryfaith Ngwueche",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "7e2917f8-6041-477e-ae06-3dfc8bedf108",
                            "first_name": "Ana",
                            "surname": "Ryan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-23T13:32:35.000000Z",
                            "updated_at": "2025-03-06T15:44:56.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ana Ryan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c727dd4d-0646-4844-b1d1-9a96e3d29e27",
                            "first_name": "Aaron",
                            "surname": "Lawler",
                            "language_code": "en_IE",
                            "mobile_number": "+353830161522",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-29T15:55:14.000000Z",
                            "updated_at": "2025-03-12T11:56:52.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aaron Lawler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "bfd9a45d-eccf-49d3-a1c6-26b60f81e169",
                            "first_name": "Dean",
                            "surname": "Heenan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-12-02T16:07:54.000000Z",
                            "updated_at": "2025-03-11T09:19:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dean Heenan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "b798fe5a-20ad-40e7-8729-a4a4b2e8e3aa",
                            "first_name": "Aoife",
                            "surname": "Sullivan",
                            "language_code": "en_IE",
                            "mobile_number": "+353877779998",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-01-23T09:33:41.000000Z",
                            "updated_at": "2025-01-23T12:40:36.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aoife Sullivan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8ac642ed-d710-4041-8175-4d6dd5ce4262",
                            "first_name": "Lisa",
                            "surname": "Keegan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-13T11:39:06.000000Z",
                            "updated_at": "2025-02-13T11:40:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lisa Keegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "eb18ff56-9c82-429f-8d6f-c64fbbba912f",
                            "first_name": "Jackie",
                            "surname": "McKeown",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T11:19:19.000000Z",
                            "updated_at": "2025-02-20T11:21:15.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jackie McKeown",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c153f9b4-9bbc-4f22-825e-7d5ad45a8b51",
                            "first_name": "Pierce",
                            "surname": "Lowe",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T15:35:14.000000Z",
                            "updated_at": "2025-02-20T15:36:41.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Pierce Lowe",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "68f88f11-3a02-4083-bb44-bfd0a1109917",
                            "first_name": "Hazel",
                            "surname": "Grassie",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-26T15:03:55.000000Z",
                            "updated_at": "2025-02-26T15:05:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Hazel Grassie",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        }
                    ]
                }
            },
            {
                "name": "Community Volunteers (FoodCloud)",
                "collection_delivery": "third_party_collector",
                "tsm_current_state": "Activated",
                "uuid": "f4f41e49-8b3f-4700-9207-9a55a093821d",
                "created_at": "2025-02-13T11:45:28.000000Z",
                "updated_at": "2025-04-23T10:30:35.000000Z",
                "cancellation_requested": 0,
                "type": "FoodBank",
                "branch_uuid": "b8e0f4d4-8d98-439d-8b71-31dceb4ffa7a",
                "foodnet": "Deprecated",
                "is_removable": 0,
                "transitions": {
                    "pause": {
                        "color": "yellow",
                        "icon": "fas fa-pause-circle",
                        "name": "Pause",
                        "context": "foodnet_admin"
                    },
                    "expel": {
                        "color": "red",
                        "icon": "fas fa-trash",
                        "name": "Expel",
                        "context": "foodnet_admin"
                    },
                    "suspend": {
                        "color": "black",
                        "icon": "fas fa-pause-circle",
                        "name": "Suspend",
                        "context": "foodnet_admin"
                    }
                },
                "status_style": {
                    "color": "green",
                    "icon": "far fa-play-circle"
                },
                "tsm_current_state_label": "activated",
                "network": {
                    "uuid": "75449cc2-e106-40f0-845e-fbd06408be7b",
                    "activate_membership_required": 1,
                    "description": "A World Where No Good Food Goes To Waste",
                    "max_donation_volume_kg": 30000,
                    "donation_interval": 30,
                    "requirements": "A World Where No Good Food Goes To Waste",
                    "default_co2e": 3.2,
                    "default_meals_per_kg": 2.2,
                    "silence_collection_window_invitation_notifications": 1,
                    "silence_network_membership_notifications": null,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-06-18T11:28:08.000000Z",
                    "deleted_at": null,
                    "is_public": false,
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    }
                },
                "branch": {
                    "uuid": "b8e0f4d4-8d98-439d-8b71-31dceb4ffa7a",
                    "name": "Community Volunteers (FoodCloud)",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7778677,
                    "official_id": "FC:002",
                    "address_1": "Broomhill Road",
                    "address_2": "Broomhill Business Park Tallaght",
                    "city_town": "Dublin",
                    "post_code": "D24CD32",
                    "phone": "+353867778842",
                    "latitude": "53.29791000",
                    "longitude": "-6.35901030",
                    "timezone": "Europe/Dublin",
                    "locale": "en_IE",
                    "is_active": 1,
                    "is_foodboard_allowed": 1,
                    "esign": 0,
                    "send_daily_donations_reminders": false,
                    "send_instant_donations_reminders": false,
                    "offers_token_counter": 0,
                    "prepare_donation_option": "l_product",
                    "default_categories_only": 1,
                    "approved_products_only": 1,
                    "geofilter_unit_of_distance": "l_miles",
                    "collection_delivery": "third_party_collector",
                    "collector_authentication": "l_four_digit_code",
                    "created_at": "2025-02-13T11:45:28.000000Z",
                    "updated_at": "2025-04-23T10:30:35.000000Z",
                    "deleted_at": null,
                    "category_min": 50,
                    "category_max": 102,
                    "donation_window_cutoff": 12,
                    "transfer_window_cutoff": 24,
                    "max_collection_window": 1,
                    "in_line_address": "Broomhill Road, Broomhill Business Park Tallaght, Dublin D24CD32, Dublin City, Leinster, Ireland",
                    "organisation": {
                        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": 7521314,
                        "counties_id": 7288565,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "vip_window": 10,
                        "is_vip_window_active": 1,
                        "phone": "+353 1 531 3478",
                        "address_1": "Unit 8 Broomhill Road",
                        "address_2": "",
                        "city_town": "South Dublin",
                        "post_code": "D24 CD32",
                        "latitude": "53.29663490",
                        "longitude": "-6.35527110",
                        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                        "food_safety_info": null,
                        "is_active": true,
                        "is_featured": 1,
                        "is_friend_group": 0,
                        "receipt_sending_option": 2,
                        "created_at": "2021-03-15T00:26:30.000000Z",
                        "updated_at": "2025-05-12T15:39:32.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                    },
                    "users": [
                        {
                            "uuid": "9e90e7f3-b68b-482d-9eea-1f00ebb4a762",
                            "first_name": "Integration User",
                            "surname": "DO NOT EDIT",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2021-03-15T00:26:30.000000Z",
                            "updated_at": "2025-02-04T22:22:50.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Integration User DO NOT EDIT",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "5fc9c994-46ce-4f87-a07b-25ecad5fbfb8",
                            "first_name": "Carla",
                            "surname": "McSorley ",
                            "language_code": "en_IE",
                            "mobile_number": "+353831306452",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2016-02-11T15:12:21.000000Z",
                            "updated_at": "2022-08-09T11:35:57.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Carla McSorley ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "a6a75333-f972-461e-b31b-f414b9207dd3",
                            "first_name": "Catherine",
                            "surname": "Delaney",
                            "language_code": "en_IE",
                            "mobile_number": "+35315313400",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2017-01-23T10:53:34.000000Z",
                            "updated_at": "2025-06-17T08:42:59.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Catherine Delaney",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "6fec8ae4-0c7e-42ad-a4ae-c6dd90e04e56",
                            "first_name": "Maudrag",
                            "surname": "",
                            "language_code": "en_IE",
                            "mobile_number": "+447778114660",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2020-01-07T12:48:04.000000Z",
                            "updated_at": "2024-11-05T10:21:01.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Maudrag ",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "334574a2-babe-40f0-bfb6-12524bf55bb7",
                            "first_name": "Rourke",
                            "surname": "Bradley",
                            "language_code": "en_IE",
                            "mobile_number": "+353858432189",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-04-15T13:12:55.000000Z",
                            "updated_at": "2023-06-06T14:04:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Rourke Bradley",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c78a23d1-3da8-43e1-be54-1e62a357f903",
                            "first_name": "Ebby",
                            "surname": "Stafford",
                            "language_code": "en_IE",
                            "mobile_number": "+353415313478",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2021-05-06T16:05:15.000000Z",
                            "updated_at": "2025-03-25T13:06:35.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Ebby Stafford",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "9bf48363-a1f4-4926-a150-a9ebc49b455d",
                            "first_name": "Dayo",
                            "surname": "Aderemi",
                            "language_code": "en_IE",
                            "mobile_number": "+353879114567",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-05-26T12:07:15.000000Z",
                            "updated_at": "2025-05-26T17:00:38.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Dayo Aderemi",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "994dc772-3d06-4347-9edb-e78dc311c044",
                            "first_name": "Joana",
                            "surname": "Guttler",
                            "language_code": "en_IE",
                            "mobile_number": "+353875896325",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2023-09-11T14:56:46.000000Z",
                            "updated_at": "2025-03-24T15:55:54.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Joana Guttler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "29593317-6e12-40e2-bff2-68d5b0268a32",
                            "first_name": "Killian",
                            "surname": "Waldron",
                            "language_code": "en_IE",
                            "mobile_number": "+353877999987",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2024-04-23T09:22:41.000000Z",
                            "updated_at": "2025-06-24T14:20:34.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Killian Waldron",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c727dd4d-0646-4844-b1d1-9a96e3d29e27",
                            "first_name": "Aaron",
                            "surname": "Lawler",
                            "language_code": "en_IE",
                            "mobile_number": "+353830161522",
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 1,
                            "created_at": "2024-10-29T15:55:14.000000Z",
                            "updated_at": "2025-03-12T11:56:52.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Aaron Lawler",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "8ac642ed-d710-4041-8175-4d6dd5ce4262",
                            "first_name": "Lisa",
                            "surname": "Keegan",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-13T11:39:06.000000Z",
                            "updated_at": "2025-02-13T11:40:30.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lisa Keegan",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "1cc4a712-5dc6-4b78-b7eb-38df072cd0fe",
                            "first_name": "Lisa",
                            "surname": "Keegan (Volunteer Test)",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 0,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-13T11:41:46.000000Z",
                            "updated_at": "2025-02-13T11:47:10.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Lisa Keegan (Volunteer Test)",
                            "role": "user",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "eb18ff56-9c82-429f-8d6f-c64fbbba912f",
                            "first_name": "Jackie",
                            "surname": "McKeown",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T11:19:19.000000Z",
                            "updated_at": "2025-02-20T11:21:15.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Jackie McKeown",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "c153f9b4-9bbc-4f22-825e-7d5ad45a8b51",
                            "first_name": "Pierce",
                            "surname": "Lowe",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-20T15:35:14.000000Z",
                            "updated_at": "2025-02-20T15:36:41.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Pierce Lowe",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        },
                        {
                            "uuid": "68f88f11-3a02-4083-bb44-bfd0a1109917",
                            "first_name": "Hazel",
                            "surname": "Grassie",
                            "language_code": "en_IE",
                            "mobile_number": null,
                            "email": "[email protected]",
                            "availability": null,
                            "is_active": 1,
                            "is_organisation_admin": 1,
                            "suppress_notifications": 0,
                            "suppress_email": 0,
                            "created_at": "2025-02-26T15:03:55.000000Z",
                            "updated_at": "2025-02-26T15:05:23.000000Z",
                            "pickup_locations": null,
                            "mode_of_transport": null,
                            "full_name": "Hazel Grassie",
                            "role": "foodnet_administrator",
                            "organisation": {
                                "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                                "name": "FoodCloud",
                                "countries_id": 2963597,
                                "provinces_id": 7521314,
                                "counties_id": 7288565,
                                "official_id": null,
                                "accept_by_offset": 30,
                                "vip_window": 10,
                                "is_vip_window_active": 1,
                                "phone": "+353 1 531 3478",
                                "address_1": "Unit 8 Broomhill Road",
                                "address_2": "",
                                "city_town": "South Dublin",
                                "post_code": "D24 CD32",
                                "latitude": "53.29663490",
                                "longitude": "-6.35527110",
                                "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                                "food_safety_info": null,
                                "is_active": true,
                                "is_featured": 1,
                                "is_friend_group": 0,
                                "receipt_sending_option": 2,
                                "created_at": "2021-03-15T00:26:30.000000Z",
                                "updated_at": "2025-05-12T15:39:32.000000Z",
                                "deleted_at": null,
                                "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                            }
                        }
                    ]
                }
            }
        ],
        "recordsFiltered": 10,
        "recordsTotal": 10
    },
    "frontendRedirect": false,
    "callTime": 0.04270577430725098
}
 

Request      

GET api/foodnet/network_memberships

Headers

AuthorizationToken      

Example: Bearer {token}

Get Network Membership

requires authentication

This endpoint retrieve details of the specified Network Membership.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/foodnet/network_memberships/1" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/1"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/1';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/1'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "uuid": "89eb6d21-5725-4ab9-9073-53299b050d09",
        "tsm_current_state": "Activated",
        "created_at": "2022-07-27T13:30:59.000000Z",
        "updated_at": "2022-08-05T14:16:13.000000Z",
        "cancellation_requested": 0,
        "transitions": [],
        "status_style": {
            "color": "green",
            "icon": "far fa-play-circle"
        },
        "tsm_current_state_label": "activated",
        "network": {
            "uuid": "dcf25829-b101-4d07-b108-399989c8e87f",
            "description": null,
            "max_donation_volume_kg": null,
            "donation_interval": 30,
            "requirements": null,
            "default_co2e": 3.2,
            "default_meals_per_kg": 2.2,
            "silence_collection_window_invitation_notifications": null,
            "silence_network_membership_notifications": null,
            "created_at": "2022-07-27T13:30:58.000000Z",
            "updated_at": "2022-07-27T13:30:58.000000Z",
            "deleted_at": null,
            "is_public": false,
            "organisation": {
                "uuid": "c42c9046-3af9-4c16-bca3-768e0b7c1a5a",
                "name": "FoodCloud",
                "countries_id": 2963597,
                "provinces_id": null,
                "counties_id": null,
                "official_id": null,
                "accept_by_offset": 30,
                "phone": null,
                "address_1": null,
                "address_2": null,
                "city_town": null,
                "post_code": null,
                "latitude": "0.00000000",
                "longitude": "0.00000000",
                "description": null,
                "food_safety_info": null,
                "is_active": true,
                "is_friend_group": 0,
                "created_at": "2022-07-27T13:30:58.000000Z",
                "updated_at": "2022-07-27T13:30:58.000000Z",
                "deleted_at": null,
                "in_line_address": "Ireland",
                "county": null,
                "province": null,
                "country": {
                    "id": 2963597,
                    "name": "Ireland",
                    "latitude": 53,
                    "longitude": -8,
                    "code": "IE",
                    "created_at": "2022-07-27T13:30:57.000000Z",
                    "updated_at": "2022-07-27T13:30:57.000000Z",
                    "deleted_at": null
                }
            }
        },
        "branch": {
            "uuid": "108ea35b-0795-4db3-ac00-155a872e66d7",
            "name": "FoodCloud branch 1",
            "countries_id": 2963597,
            "provinces_id": null,
            "counties_id": 0,
            "official_id": null,
            "address_1": null,
            "address_2": null,
            "city_town": null,
            "post_code": null,
            "phone": null,
            "latitude": "0.00000000",
            "longitude": "0.00000000",
            "timezone": "Europe/Dublin",
            "locale": "en_IE",
            "is_active": 1,
            "is_foodboard_allowed": 1,
            "esign": 0,
            "send_daily_donations_reminders": false,
            "send_instant_donations_reminders": false,
            "offers_token_counter": 0,
            "created_at": "2022-07-27T13:30:58.000000Z",
            "updated_at": "2022-07-27T13:30:58.000000Z",
            "deleted_at": null,
            "in_line_address": "Ireland",
            "organisation": {
                "uuid": "c42c9046-3af9-4c16-bca3-768e0b7c1a5a",
                "name": "FoodCloud",
                "countries_id": 2963597,
                "provinces_id": null,
                "counties_id": null,
                "official_id": null,
                "accept_by_offset": 30,
                "phone": null,
                "address_1": null,
                "address_2": null,
                "city_town": null,
                "post_code": null,
                "latitude": "0.00000000",
                "longitude": "0.00000000",
                "description": null,
                "food_safety_info": null,
                "is_active": true,
                "is_friend_group": 0,
                "created_at": "2022-07-27T13:30:58.000000Z",
                "updated_at": "2022-07-27T13:30:58.000000Z",
                "deleted_at": null,
                "in_line_address": "Ireland",
                "organisation_type": {
                    "uuid": "12ff994e-46fe-40fe-8cb2-cec6ebf1a244",
                    "name": "FoodBank",
                    "created_at": "2022-07-27T13:30:58.000000Z",
                    "updated_at": "2022-07-27T13:30:58.000000Z"
                },
                "county": null,
                "province": null,
                "country": {
                    "id": 2963597,
                    "name": "Ireland",
                    "latitude": 53,
                    "longitude": -8,
                    "code": "IE",
                    "created_at": "2022-07-27T13:30:57.000000Z",
                    "updated_at": "2022-07-27T13:30:57.000000Z",
                    "deleted_at": null
                }
            },
            "country": {
                "id": 2963597,
                "name": "Ireland",
                "latitude": 53,
                "longitude": -8,
                "code": "IE",
                "created_at": "2022-07-27T13:30:57.000000Z",
                "updated_at": "2022-07-27T13:30:57.000000Z",
                "deleted_at": null
            },
            "province": null,
            "county": null,
            "local_users": [
                {
                    "uuid": "5261f93d-2412-45b2-9602-0e4318254e08",
                    "first_name": "First",
                    "surname": "Last",
                    "language_code": "en_IE",
                    "mobile_number": null,
                    "email": "[email protected]",
                    "email_verified_at": "2022-07-27T13:30:58.000000Z",
                    "activation_key": null,
                    "restoration_key": null,
                    "is_active": 1,
                    "failed_logins": 0,
                    "is_organisation_admin": 1,
                    "one_signal_id": null,
                    "created_at": "2022-07-27T13:30:58.000000Z",
                    "updated_at": "2022-08-05T14:16:13.000000Z",
                    "deleted_at": null,
                    "full_name": "First Last",
                    "role": "foodnet_administrator",
                    "organisation": {
                        "uuid": "c42c9046-3af9-4c16-bca3-768e0b7c1a5a",
                        "name": "FoodCloud",
                        "countries_id": 2963597,
                        "provinces_id": null,
                        "counties_id": null,
                        "official_id": null,
                        "accept_by_offset": 30,
                        "phone": null,
                        "address_1": null,
                        "address_2": null,
                        "city_town": null,
                        "post_code": null,
                        "latitude": "0.00000000",
                        "longitude": "0.00000000",
                        "description": null,
                        "food_safety_info": null,
                        "is_active": true,
                        "is_friend_group": 0,
                        "created_at": "2022-07-27T13:30:58.000000Z",
                        "updated_at": "2022-07-27T13:30:58.000000Z",
                        "deleted_at": null,
                        "in_line_address": "Ireland",
                        "county": null,
                        "province": null,
                        "country": {
                            "id": 2963597,
                            "name": "Ireland",
                            "latitude": 53,
                            "longitude": -8,
                            "code": "IE",
                            "created_at": "2022-07-27T13:30:57.000000Z",
                            "updated_at": "2022-07-27T13:30:57.000000Z",
                            "deleted_at": null
                        }
                    }
                }
            ],
            "delegated_admins": []
        },
        "delegated_admins": [
            {
                "uuid": "5261f93d-2412-45b2-9602-0e4318254e08",
                "first_name": "First",
                "surname": "Last",
                "language_code": "en_IE",
                "mobile_number": null,
                "email": "[email protected]",
                "email_verified_at": "2022-07-27T13:30:58.000000Z",
                "activation_key": null,
                "restoration_key": null,
                "is_active": 1,
                "failed_logins": 0,
                "is_organisation_admin": 1,
                "one_signal_id": null,
                "created_at": "2022-07-27T13:30:58.000000Z",
                "updated_at": "2022-08-05T14:16:13.000000Z",
                "deleted_at": null,
                "full_name": "First Last",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "c42c9046-3af9-4c16-bca3-768e0b7c1a5a",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": null,
                    "counties_id": null,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "phone": null,
                    "address_1": null,
                    "address_2": null,
                    "city_town": null,
                    "post_code": null,
                    "latitude": "0.00000000",
                    "longitude": "0.00000000",
                    "description": null,
                    "food_safety_info": null,
                    "is_active": true,
                    "is_friend_group": 0,
                    "created_at": "2022-07-27T13:30:58.000000Z",
                    "updated_at": "2022-07-27T13:30:58.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Ireland",
                    "county": null,
                    "province": null,
                    "country": {
                        "id": 2963597,
                        "name": "Ireland",
                        "latitude": 53,
                        "longitude": -8,
                        "code": "IE",
                        "created_at": "2022-07-27T13:30:57.000000Z",
                        "updated_at": "2022-07-27T13:30:57.000000Z",
                        "deleted_at": null
                    }
                }
            }
        ]
    },
    "frontendRedirect": false,
    "callTime": 0.02353215217590332
}
 

Example response (403):


{
    "status": "error",
    "data": [
        "e_forbidden"
    ],
    "frontendRedirect": false,
    "callTime": 0.004044055938720703
}
 

Request      

GET api/foodnet/network_memberships/{id}

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

id   integer   

The ID of the network membership. Example: 1

network_membership   string   

The UUID of the Network Membership to get. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Update Network Membership

requires authentication

This endpoint updates the specified Network Membership.

Example request:
curl --request PUT \
    "api-qa.foodiverse.net/api/foodnet/network_memberships/1" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/1"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "PUT",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/1';
$response = $client->put(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/1'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('PUT', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        true
    ],
    "frontendRedirect": false,
    "callTime": 0.003061056137084961
}
 

Request      

PUT api/foodnet/network_memberships/{id}

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

id   integer   

The ID of the network membership. Example: 1

network_membership   string   

The UUID of the Network Membership to update. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Apply for Network Membership

requires authentication

This endpoint enables branches to apply for membership of a network.

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/apply" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"branches\": [
        \"e1adf699-172b-491f-922a-9e036aea94be\",
        \"c4d42056-680f-4747-9de9-8188c017a868\"
    ]
}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/apply"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "branches": [
        "e1adf699-172b-491f-922a-9e036aea94be",
        "c4d42056-680f-4747-9de9-8188c017a868"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/apply';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'branches' => [
                'e1adf699-172b-491f-922a-9e036aea94be',
                'c4d42056-680f-4747-9de9-8188c017a868',
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/apply'
payload = {
    "branches": [
        "e1adf699-172b-491f-922a-9e036aea94be",
        "c4d42056-680f-4747-9de9-8188c017a868"
    ]
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/foodnet/network_memberships/{network_uuid}/apply

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

URL Parameters

network_uuid   string   

The UUID of the network to apply for membership. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Body Parameters

branches   string[]   

The UUIDS of the Branches to apply for network membership.

Get statuses for Network Membership

requires authentication

This endpoint returns the membership statuses of branches for a given network.

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/statuses" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"branches\": [
        \"e1adf699-172b-491f-922a-9e036aea94be\",
        \"c4d42056-680f-4747-9de9-8188c017a868\"
    ]
}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/statuses"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "branches": [
        "e1adf699-172b-491f-922a-9e036aea94be",
        "c4d42056-680f-4747-9de9-8188c017a868"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/statuses';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'branches' => [
                'e1adf699-172b-491f-922a-9e036aea94be',
                'c4d42056-680f-4747-9de9-8188c017a868',
            ],
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/statuses'
payload = {
    "branches": [
        "e1adf699-172b-491f-922a-9e036aea94be",
        "c4d42056-680f-4747-9de9-8188c017a868"
    ]
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "1de15fbc-76fe-4ac4-adff-53a077927950": {
            "uuid": "c4e4b1a1-3b33-437f-b063-4775fc92db06",
            "tsm_current_state": "Withdrawn",
            "created_at": "2024-02-22T16:28:24.000000Z",
            "updated_at": "2024-06-20T13:24:38.000000Z",
            "cancellation_requested": 0,
            "tsm_current_state_label": "withdrawn",
            "network": {
                "uuid": "d143b1aa-1db8-47e2-9e1a-a4f37a26aec2",
                "activate_membership_required": 1,
                "description": "You can not activate new members in your Food Net on their behalf c",
                "max_donation_volume_kg": 500,
                "donation_interval": 30,
                "requirements": "You can not activate new members in your Food Net on their behalf",
                "default_co2e": 3.2,
                "default_meals_per_kg": 2.2,
                "silence_collection_window_invitation_notifications": null,
                "silence_network_membership_notifications": null,
                "created_at": "2024-02-22T16:28:23.000000Z",
                "updated_at": "2024-06-20T13:25:18.000000Z",
                "deleted_at": null,
                "is_public": false
            }
        },
        "7ac12895-6ee2-4362-836d-3bd96566ede0": {
            "uuid": "6b4bef0a-8bab-403e-8e78-28365a458c76",
            "tsm_current_state": "Activated",
            "created_at": "2024-02-22T16:28:24.000000Z",
            "updated_at": "2024-06-20T13:24:38.000000Z",
            "cancellation_requested": 0,
            "tsm_current_state_label": "activated",
            "network": {
                "uuid": "d143b1aa-1db8-47e2-9e1a-a4f37a26aec2",
                "activate_membership_required": 1,
                "description": "You can not activate new members in your Food Net on their behalf c",
                "max_donation_volume_kg": 500,
                "donation_interval": 30,
                "requirements": "You can not activate new members in your Food Net on their behalf",
                "default_co2e": 3.2,
                "default_meals_per_kg": 2.2,
                "silence_collection_window_invitation_notifications": null,
                "silence_network_membership_notifications": null,
                "created_at": "2024-02-22T16:28:23.000000Z",
                "updated_at": "2024-06-20T13:25:18.000000Z",
                "deleted_at": null,
                "is_public": false
            }
        }
    },
    "frontendRedirect": false,
    "callTime": 0.024251937866210938
}
 

Request      

POST api/foodnet/network_memberships/{network_uuid}/statuses

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

URL Parameters

network_uuid   string   

The UUID of the network. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Body Parameters

branches   string[]   

The UUIDS of the Branches to get membership status for.

Get a collection of branches with various filters.

requires authentication

This endpoint retrieves a collection of branches based on multiple filtering options, including exclusions and donor branch UUID. The results can be customized using parameters like not_in, donor_branch_uuid, exclude3pc, and exclude3pl.

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/foodnet_admin/branches/affiliated_charity_branches" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"not_in\": [
        \"60ee675d-2c8f-42a6-bc21-572042e913ad\"
    ],
    \"donor_branch_uuid\": \"60ee675d-2c8f-42a6-bc21-572042e913ad\",
    \"exclude3pc\": true,
    \"exclude3pl\": true
}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet_admin/branches/affiliated_charity_branches"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "not_in": [
        "60ee675d-2c8f-42a6-bc21-572042e913ad"
    ],
    "donor_branch_uuid": "60ee675d-2c8f-42a6-bc21-572042e913ad",
    "exclude3pc": true,
    "exclude3pl": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet_admin/branches/affiliated_charity_branches';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'not_in' => [
                '60ee675d-2c8f-42a6-bc21-572042e913ad',
            ],
            'donor_branch_uuid' => '60ee675d-2c8f-42a6-bc21-572042e913ad',
            'exclude3pc' => true,
            'exclude3pl' => true,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet_admin/branches/affiliated_charity_branches'
payload = {
    "not_in": [
        "60ee675d-2c8f-42a6-bc21-572042e913ad"
    ],
    "donor_branch_uuid": "60ee675d-2c8f-42a6-bc21-572042e913ad",
    "exclude3pc": true,
    "exclude3pl": true
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/foodnet_admin/branches/affiliated_charity_branches

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

not_in   string[]  optional  

The UUIDs to exclude from the results.

donor_branch_uuid   uuid  optional  

The UUID of the donor branch to filter the results by. Example: 60ee675d-2c8f-42a6-bc21-572042e913ad

exclude3pc   boolean  optional  

Whether to exclude third-party collectors in the results. Example: true

exclude3pl   boolean  optional  

Whether to exclude third-party logistics in the results. Example: true

Get 3PL Collectors

requires authentication

This endpoint returns 3PL collectors based on specific criteria such as search fields, exclusions, and donor branch UUID. It retrieves and filters data related to third-party collectors from the database.

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/foodnet_admin/branches/affiliated_charity_branches/third_party_collectors" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"parser\": \"autocomplete\",
    \"not_in\": [
        \"60ee675d-2c8f-42a6-bc21-572042e913ad\"
    ],
    \"donor_branch_uuid\": \"60ee675d-2c8f-42a6-bc21-572042e913ad\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet_admin/branches/affiliated_charity_branches/third_party_collectors"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "parser": "autocomplete",
    "not_in": [
        "60ee675d-2c8f-42a6-bc21-572042e913ad"
    ],
    "donor_branch_uuid": "60ee675d-2c8f-42a6-bc21-572042e913ad"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet_admin/branches/affiliated_charity_branches/third_party_collectors';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'parser' => 'autocomplete',
            'not_in' => [
                '60ee675d-2c8f-42a6-bc21-572042e913ad',
            ],
            'donor_branch_uuid' => '60ee675d-2c8f-42a6-bc21-572042e913ad',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet_admin/branches/affiliated_charity_branches/third_party_collectors'
payload = {
    "parser": "autocomplete",
    "not_in": [
        "60ee675d-2c8f-42a6-bc21-572042e913ad"
    ],
    "donor_branch_uuid": "60ee675d-2c8f-42a6-bc21-572042e913ad"
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/foodnet_admin/branches/affiliated_charity_branches/third_party_collectors

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

parser   string   

The parser to use in the db query. Example: autocomplete

not_in   string[]   

The UUIDs to exclude in the response.

donor_branch_uuid   uuid   

The donor UUID to find the membership. Example: 60ee675d-2c8f-42a6-bc21-572042e913ad

Get 3PL Branches

requires authentication

This endpoint returns 3PL branches in relation to a certain criteria

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/foodnet_admin/branches/affiliated_charity_branches/third_party_logistics" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"parser\": \"autocomplete\",
    \"field\": \"name\",
    \"search\": \"3p\",
    \"not_in\": [
        \"60ee675d-2c8f-42a6-bc21-572042e913ad\"
    ],
    \"donor_branch_uuid\": \"60ee675d-2c8f-42a6-bc21-572042e913ad\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet_admin/branches/affiliated_charity_branches/third_party_logistics"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "parser": "autocomplete",
    "field": "name",
    "search": "3p",
    "not_in": [
        "60ee675d-2c8f-42a6-bc21-572042e913ad"
    ],
    "donor_branch_uuid": "60ee675d-2c8f-42a6-bc21-572042e913ad"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet_admin/branches/affiliated_charity_branches/third_party_logistics';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'parser' => 'autocomplete',
            'field' => 'name',
            'search' => '3p',
            'not_in' => [
                '60ee675d-2c8f-42a6-bc21-572042e913ad',
            ],
            'donor_branch_uuid' => '60ee675d-2c8f-42a6-bc21-572042e913ad',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet_admin/branches/affiliated_charity_branches/third_party_logistics'
payload = {
    "parser": "autocomplete",
    "field": "name",
    "search": "3p",
    "not_in": [
        "60ee675d-2c8f-42a6-bc21-572042e913ad"
    ],
    "donor_branch_uuid": "60ee675d-2c8f-42a6-bc21-572042e913ad"
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "data": [
            {
                "branch_name": "3PL test branch",
                "uuid": "d51557f5-c2f5-4a55-84db-994faaba3e9c",
                "org_name": "Green Planet Charity Group",
                "collection_delivery": "third_party_logistics",
                "org_branch_name": "Green Planet Charity Group 3PL test branch",
                "reversed_org_branch_name": "3PL test branch Green Planet Charity Group",
                "max_capacity": null,
                "in_line_address": "",
                "storage_types": [
                    {
                        "name": "l_ambient",
                        "label": "l_ambient"
                    },
                    {
                        "name": "l_chilled",
                        "label": "l_chilled"
                    }
                ]
            },
            {
                "branch_name": "Test 3PL Branch",
                "uuid": "ed7ee641-7f4f-44fe-b660-458633933d67",
                "org_name": "Green Planet Charity Group",
                "collection_delivery": "third_party_logistics",
                "org_branch_name": "Green Planet Charity Group Test 3PL Branch",
                "reversed_org_branch_name": "Test 3PL Branch Green Planet Charity Group",
                "max_capacity": null,
                "in_line_address": "",
                "storage_types": [
                    {
                        "name": "l_ambient",
                        "label": "l_ambient"
                    },
                    {
                        "name": "l_chilled",
                        "label": "l_chilled"
                    },
                    {
                        "name": "l_frozen",
                        "label": "l_frozen"
                    }
                ]
            }
        ],
        "recordsFiltered": 2,
        "recordsTotal": 2
    },
    "frontendRedirect": false,
    "callTime": 0.018414974212646484
}
 

Example response (401):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

POST api/foodnet_admin/branches/affiliated_charity_branches/third_party_logistics

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

parser   string   

The parser to use in the db query. Example: autocomplete

field   string   

The field to search through. Example: name

search   string   

The search query. Example: 3p

not_in   string[]   

The UUIDs to exclude in the response.

donor_branch_uuid   uuid   

The donor uuid to find the membership. Example: 60ee675d-2c8f-42a6-bc21-572042e913ad

Networking

Get Network Organisations

requires authentication

This endpoint retrieves all Network Organisations for a user

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/network_organisation?organisation_type=DONOR" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/network_organisation"
);

const params = {
    "organisation_type": "DONOR",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/network_organisation';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
        'query' => [
            'organisation_type' => 'DONOR',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/network_organisation'
params = {
  'organisation_type': 'DONOR',
}
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers, params=params)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2474
 

{
    "status": "success",
    "data": [
        {
            "name": "FoodCloud",
            "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
            "in_line_address": ""
        }
    ],
    "frontendRedirect": false,
    "callTime": 0.00900888442993164
}
 

Request      

GET api/user/network_organisation

Headers

AuthorizationToken      

Example: Bearer {token}

Query Parameters

organisation_type   string  optional  

String The type of organisation to return. Example: DONOR

Offers

Get offers for Network Membership

requires authentication

This endpoint retrieves offers associated with a Network Membership.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/offers" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/offers"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/offers';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/offers'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "data": [],
        "recordsFiltered": 0,
        "recordsTotal": 0
    },
    "frontendRedirect": false,
    "callTime": 0.006829977035522461
}
 

Request      

GET api/foodnet/network_memberships/{network_membership_uuid}/offers

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

network_membership_uuid   string   

The UUID of the Network Membership to get offers for. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Create product level data

requires authentication

Add product level data to a donation response

Example request:
curl --request PUT \
    "api-qa.foodiverse.net/api/donation/responses/6ff8f7f6-1eb3-3525-be4a-3932c805afed/products" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"products\": \"architecto\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/donation/responses/6ff8f7f6-1eb3-3525-be4a-3932c805afed/products"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "products": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/donation/responses/6ff8f7f6-1eb3-3525-be4a-3932c805afed/products';
$response = $client->put(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'products' => 'architecto',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/donation/responses/6ff8f7f6-1eb3-3525-be4a-3932c805afed/products'
payload = {
    "products": "architecto"
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "uuid": "c5a1c2a8-45c2-a338-1f4f-c39ac2bb0dc2",
        "products": [
            {
                "category_id": "ae3c1161-0b4c-48b0-a6e7-f054882d41b2",
                "brand": "Test Brand",
                "product_type": "Test Type",
                "units": "Kg",
                "name": "Test Name",
                "currency": "EUR",
                "code": "123456789",
                "quantity": "2",
                "total_weight": "2",
                "discounted_unit_price": "1.24",
                "original_unit_price": "1.24",
                "expiry_type": "l_use_by | l_best_before",
                "expiry_date": "2022-01-01 00:00:00",
                "batch_code": "123456789",
                "stock_code": "123456789",
                "ingredients": "Test ingredients",
                "allergens": "Test allergens",
                "nutrition": "Test nutrition"
            }
        ]
    },
    "callTime": 0.00594019889831543
}
 

Example response (400):


{
    "status": "error",
    "data": {
        "errors": [
            {
                "field": "products.0.category_id",
                "message": "e_category_id_required"
            },
            {
                "field": "products.0.units",
                "message": "e_units_required"
            },
            {
                "field": "products.0.name",
                "message": "e_name_required"
            },
            {
                "field": "products.0.code",
                "message": "e_code_required"
            },
            {
                "field": "products.0.quantity",
                "message": "e_quantity_required"
            },
            {
                "field": "products.0.weight",
                "message": "e_weight_required"
            }
        ]
    }
}
 

Example response (401):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

PUT api/donation/responses/{response_uuid}/products

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

URL Parameters

response_uuid   string   

Example: 6ff8f7f6-1eb3-3525-be4a-3932c805afed

Body Parameters

products   Products   

Array Example: architecto

*   object  optional  
category_id   Uuid   

Example: architecto

normalised_products_id   Uuid   

Required without category_id Example: architecto

code   String   

The barcode or EAN of the product item. Required without normalised_products_id Example: architecto

name     optional  

String Example: architecto

brand   String  optional  

Example: architecto

product_type     optional  

String Example: architecto

units   String  optional  

Example: architecto

currency     optional  

String Example: architecto

quantity     optional  

Numeric Example: architecto

unit_weight   Numeric  optional  

Example: architecto

total_weight   Numeric  optional  

Example: architecto

original_unit_price   Numeric  optional  

Example: architecto

discounted_unit_price     optional  

Numeric Example: architecto

total_price     optional  

Numeric Example: architecto

expiry_type   String  optional  

l_use_by or l_best_before Example: architecto

expiry_date     optional  

Date Example: architecto

batch_code   String  optional  

Example: architecto

stock_code   String  optional  

Example: architecto

ingredients     optional  

String Example: architecto

allergens   String  optional  

Example: architecto

nutrition   String  optional  

Example: architecto

OneSignal

Get All OneSignal IDs for user

requires authentication

This endpoint retrieves all user's OneSignal IDs.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/one_signal" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/one_signal"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/one_signal';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/one_signal'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "data": [
            {
                "player_id": "e9866105-0aaa-4657-99cf-3700137faaf2",
                "created_at": null,
                "updated_at": null
            }
        ],
        "recordsFiltered": 1,
        "recordsTotal": 1
    },
    "callTime": 0.0011870861053466797
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

GET api/user/one_signal

Headers

AuthorizationToken      

Example: Bearer {token}

Add OneSignal ID

requires authentication

This endpoint add's a specific user's OneSignal ID.

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/user/one_signal" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"player_id\": \"5ce3a914-8a20-4e83-9e5a-059361de5d04\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/one_signal"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "player_id": "5ce3a914-8a20-4e83-9e5a-059361de5d04"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/one_signal';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'player_id' => '5ce3a914-8a20-4e83-9e5a-059361de5d04',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/one_signal'
payload = {
    "player_id": "5ce3a914-8a20-4e83-9e5a-059361de5d04"
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "player_id": "e9866105-0aaa-4657-99cf-3700137faafd",
        "updated_at": "2020-05-19 13:20:35",
        "created_at": "2020-05-19 13:20:35",
        "id": 0
    },
    "callTime": 0.003256082534790039
}
 

Example response (400):


{
    "status": "error",
    "data": [
        {
            "field": "player_id",
            "message": "e_player_id_must_be_unique"
        }
    ],
    "callTime": 0.001772165298461914
}
 

Request      

POST api/user/one_signal

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

player_id   String   

The Player ID to add to the user. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Delete OneSignal ID

requires authentication

This endpoint removes an authenticated user's OneSignal player_id

Example request:
curl --request DELETE \
    "api-qa.foodiverse.net/api/user/one_signal/5ce3a914-8a20-4e83-9e5a-059361de5d04" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/one_signal/5ce3a914-8a20-4e83-9e5a-059361de5d04"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/one_signal/5ce3a914-8a20-4e83-9e5a-059361de5d04';
$response = $client->delete(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/one_signal/5ce3a914-8a20-4e83-9e5a-059361de5d04'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('DELETE', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "player_id": "5ce3a914-8a20-4e83-9e5a-059361de5d04"
    },
    "frontendRedirect": false,
    "callTime": 0.006357908248901367
}
 

Example response (404):


{
    "status": "error",
    "data": [
        "l_not_found"
    ],
    "frontendRedirect": false,
    "callTime": 0.003927946090698242
}
 

Request      

DELETE api/user/one_signal/{id}

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

id   string   

The Player ID to delete. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Registration

Register

Register as an organization admin using your personal and organization details.

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/user/register" \
    --header "Content-Type: application/json" \
    --data "{
    \"first_name\": \"Test\",
    \"surname\": \"User\",
    \"email\": \"[email protected]\",
    \"mobile_number\": \"+353861234567\",
    \"mobile_number_country_code\": \"IE\",
    \"phone\": \"+353868730746\",
    \"phone_country_code\": \"IE\",
    \"name\": \"Test FoodBank\",
    \"organisation_type\": \"{}\",
    \"address_1\": \"8 Broom hill road\",
    \"address_2\": \"Tallaght\",
    \"postcode\": \"D24 CD32\",
    \"city_town\": \"Dublin\",
    \"country\": [],
    \"province\": [],
    \"county\": [],
    \"latitude\": 53.2939631,
    \"longitude\": -6.3621539,
    \"language_code\": \"en_IE\",
    \"foodnet_organisation_uuid\": \"66529e01-d113-3473-8d6f-9e11e09332ea\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/register"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "first_name": "Test",
    "surname": "User",
    "email": "[email protected]",
    "mobile_number": "+353861234567",
    "mobile_number_country_code": "IE",
    "phone": "+353868730746",
    "phone_country_code": "IE",
    "name": "Test FoodBank",
    "organisation_type": "{}",
    "address_1": "8 Broom hill road",
    "address_2": "Tallaght",
    "postcode": "D24 CD32",
    "city_town": "Dublin",
    "country": [],
    "province": [],
    "county": [],
    "latitude": 53.2939631,
    "longitude": -6.3621539,
    "language_code": "en_IE",
    "foodnet_organisation_uuid": "66529e01-d113-3473-8d6f-9e11e09332ea"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/register';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'first_name' => 'Test',
            'surname' => 'User',
            'email' => '[email protected]',
            'mobile_number' => '+353861234567',
            'mobile_number_country_code' => 'IE',
            'phone' => '+353868730746',
            'phone_country_code' => 'IE',
            'name' => 'Test FoodBank',
            'organisation_type' => '{}',
            'address_1' => '8 Broom hill road',
            'address_2' => 'Tallaght',
            'postcode' => 'D24 CD32',
            'city_town' => 'Dublin',
            'country' => [],
            'province' => [],
            'county' => [],
            'latitude' => 53.2939631,
            'longitude' => -6.3621539,
            'language_code' => 'en_IE',
            'foodnet_organisation_uuid' => '66529e01-d113-3473-8d6f-9e11e09332ea',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/register'
payload = {
    "first_name": "Test",
    "surname": "User",
    "email": "[email protected]",
    "mobile_number": "+353861234567",
    "mobile_number_country_code": "IE",
    "phone": "+353868730746",
    "phone_country_code": "IE",
    "name": "Test FoodBank",
    "organisation_type": "{}",
    "address_1": "8 Broom hill road",
    "address_2": "Tallaght",
    "postcode": "D24 CD32",
    "city_town": "Dublin",
    "country": [],
    "province": [],
    "county": [],
    "latitude": 53.2939631,
    "longitude": -6.3621539,
    "language_code": "en_IE",
    "foodnet_organisation_uuid": "66529e01-d113-3473-8d6f-9e11e09332ea"
}
headers = {
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        "m_account_registered"
    ],
    "callTime": 0.1523888111114502
}
 

Example response (400):


{
    "status": "error",
    "data": [
        {
            "field": "email",
            "message": "e_email_unique"
        }
    ],
    "callTime": 0.04615497589111328
}
 

Request      

POST api/user/register

Headers

Content-Type      

Example: application/json

Body Parameters

first_name   String   

First name of the user. Example: Test

surname   String   

Surname of the user. Example: User

email   String   

The email of the user. Example: [email protected]

mobile_number   String   

Mobile number of the user. Example: +353861234567

mobile_number_country_code   String   

The country code of the mobile_number provided. Example: IE

phone   String   

Organization phone number Example: +353868730746

phone_country_code   String   

Organization phone number. Example: IE

name   String   

Organization Name. Example: Test FoodBank

organisation_type   Object   

Organisation Type Object. Example: {}

address_1   String   

Organisation address line 1. Example: 8 Broom hill road

address_2   String  optional  

Organisation address line 2. Example: Tallaght

postcode   String   

Organisations Eir Code. Example: D24 CD32

city_town   String   

Organisation city / town. Example: Dublin

country   object   

Country Object containing details about country where organisation resides.

province   object   

Province Object containing details about province where organisation resides.

county   object   

County Object containing details about county where organisation resides.

latitude   number  optional  

Organisation latitude. Example: 53.2939631

longitude   number  optional  

Organisation longitude. Example: -6.3621539

language_code   String  optional  

Preferred language. Example: en_IE

foodnet_organisation_uuid   String  optional  

The UUID of a FoodNet Organisation to apply to for membership. Example: 66529e01-d113-3473-8d6f-9e11e09332ea

Reports

Get Donations by status report

requires authentication

This endpoint returns a report of donations by status for a network membership

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/donations_by_status" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/donations_by_status"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/donations_by_status';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/donations_by_status'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2499
 

{
    "status": "success",
    "data": [],
    "frontendRedirect": false,
    "callTime": 0.0019037723541259766
}
 

Request      

GET api/foodnet/network_memberships/{network_membership_uuid}/reports/donations_by_status

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

network_membership_uuid   string   

The UUID of the Network Membership to get the report for. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Get donations by storage type report

requires authentication

This endpoint returns a report of donations by storage type for a network membership

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/donations_by_storage_type" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/donations_by_storage_type"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/donations_by_storage_type';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/donations_by_storage_type'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2498
 

{
    "status": "success",
    "data": [],
    "frontendRedirect": false,
    "callTime": 0.002521991729736328
}
 

Request      

GET api/foodnet/network_memberships/{network_membership_uuid}/reports/donations_by_storage_type

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

network_membership_uuid   string   

The UUID of the Network Membership to get the report for. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Get donations by parent category report

requires authentication

This endpoint returns a report of donations by parent category for a network membership

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/donations_by_parent_category" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/donations_by_parent_category"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/donations_by_parent_category';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/donations_by_parent_category'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2497
 

{
    "status": "success",
    "data": [],
    "frontendRedirect": false,
    "callTime": 0.002949953079223633
}
 

Request      

GET api/foodnet/network_memberships/{network_membership_uuid}/reports/donations_by_parent_category

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

network_membership_uuid   string   

The UUID of the Network Membership to get the report for. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Get offers by storage type report

requires authentication

This endpoint returns a report of offers by storage type for a network membership

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/offers_by_storage_type" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/offers_by_storage_type"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/offers_by_storage_type';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/offers_by_storage_type'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2496
 

{
    "status": "success",
    "data": [],
    "frontendRedirect": false,
    "callTime": 0.0025479793548583984
}
 

Request      

GET api/foodnet/network_memberships/{network_membership_uuid}/reports/offers_by_storage_type

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

network_membership_uuid   string   

The UUID of the Network Membership to get the report for. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Get offers by parent category report

requires authentication

This endpoint returns a report of offers by parent category for a network membership

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/offers_by_parent_category" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/offers_by_parent_category"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/offers_by_parent_category';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/offers_by_parent_category'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2495
 

{
    "status": "success",
    "data": [],
    "frontendRedirect": false,
    "callTime": 0.0030639171600341797
}
 

Request      

GET api/foodnet/network_memberships/{network_membership_uuid}/reports/offers_by_parent_category

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

network_membership_uuid   string   

The UUID of the Network Membership to get the report for. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Get offers by status report

requires authentication

This endpoint returns a report of offers by status for a network membership

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/offers_by_status" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/offers_by_status"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/offers_by_status';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/foodnet/network_memberships/5ce3a914-8a20-4e83-9e5a-059361de5d04/reports/offers_by_status'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2494
 

{
    "status": "success",
    "data": [],
    "frontendRedirect": false,
    "callTime": 0.002031087875366211
}
 

Request      

GET api/foodnet/network_memberships/{network_membership_uuid}/reports/offers_by_status

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

network_membership_uuid   string   

The UUID of the Network Membership to get the report for. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Export Report

requires authentication

This endpoint export report based on the filtered result

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/reports/export" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"draw\": 2,
    \"search[value]\": \"\'\'\",
    \"search[regex]\": false,
    \"parser\": \"datatables\",
    \"where[mode]\": \"members\",
    \"return_fields[]\": \"*\",
    \"context\": null,
    \"report_type\": \"donor_branch_impact_report\",
    \"report_subtype\": \"collection\",
    \"report-type\": \"donor-impact\",
    \"report-format\": \"csv\",
    \"class\": \"\'DonorImpactReport\'\",
    \"description\": \"\'Testing description\'\",
    \"filename\": \"\'DonorImpactReport_2024-08-07T12:07:51.325Z.csv\'\",
    \"columns\": [
        \"architecto\"
    ],
    \"columns[*][data]\": \"maxDate\",
    \"columns[*][searchable]\": true,
    \"columns[*][search][value]\": \"\'2024-07-25T22:59:59Z\'\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/reports/export"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "draw": 2,
    "search[value]": "''",
    "search[regex]": false,
    "parser": "datatables",
    "where[mode]": "members",
    "return_fields[]": "*",
    "context": null,
    "report_type": "donor_branch_impact_report",
    "report_subtype": "collection",
    "report-type": "donor-impact",
    "report-format": "csv",
    "class": "'DonorImpactReport'",
    "description": "'Testing description'",
    "filename": "'DonorImpactReport_2024-08-07T12:07:51.325Z.csv'",
    "columns": [
        "architecto"
    ],
    "columns[*][data]": "maxDate",
    "columns[*][searchable]": true,
    "columns[*][search][value]": "'2024-07-25T22:59:59Z'"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/reports/export';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'draw' => 2,
            'search[value]' => '\'\'',
            'search[regex]' => false,
            'parser' => 'datatables',
            'where[mode]' => 'members',
            'return_fields[]' => '*',
            'context' => null,
            'report_type' => 'donor_branch_impact_report',
            'report_subtype' => 'collection',
            'report-type' => 'donor-impact',
            'report-format' => 'csv',
            'class' => '\'DonorImpactReport\'',
            'description' => '\'Testing description\'',
            'filename' => '\'DonorImpactReport_2024-08-07T12:07:51.325Z.csv\'',
            'columns' => [
                'architecto',
            ],
            'columns[*][data]' => 'maxDate',
            'columns[*][searchable]' => true,
            'columns[*][search][value]' => '\'2024-07-25T22:59:59Z\'',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/reports/export'
payload = {
    "draw": 2,
    "search[value]": "''",
    "search[regex]": false,
    "parser": "datatables",
    "where[mode]": "members",
    "return_fields[]": "*",
    "context": null,
    "report_type": "donor_branch_impact_report",
    "report_subtype": "collection",
    "report-type": "donor-impact",
    "report-format": "csv",
    "class": "'DonorImpactReport'",
    "description": "'Testing description'",
    "filename": "'DonorImpactReport_2024-08-07T12:07:51.325Z.csv'",
    "columns": [
        "architecto"
    ],
    "columns[*][data]": "maxDate",
    "columns[*][searchable]": true,
    "columns[*][search][value]": "'2024-07-25T22:59:59Z'"
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/reports/export

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

draw   integer  optional  

Draw counter for DataTables. Example: 2

search[value]   string  optional  

Global search value. Example: ''

search[regex]   boolean  optional  

Whether the global search value is a regex. Example: false

parser   string   

Parser type. Example: datatables

where[mode]   string   

Filter mode. Example: members

return_fields[]   string   

Fields to return. Example: *

context   string  optional  

Report context.

report_type   string  optional  

Report Type. Example: donor_branch_impact_report

report_subtype   string  optional  

Report Subtype. Example: collection

report-type   string  optional  

Report Type. Example: donor-impact

report-format   string  optional  

Report Format. Example: csv

class   string   

The class name for the report. Example: 'DonorImpactReport'

description   string   

The description of the report export. Example: 'Testing description'

filename   string   

The report filename. Example: 'DonorImpactReport_2024-08-07T12:07:51.325Z.csv'

columns   string[]   

An array of column definitions.

columns[*][data]   string   

Data source for the second column. Example: maxDate

columns[*][searchable]   boolean  optional  

Whether the second column is searchable. Example: true

columns[*][search][value]   string  optional  

Search value for the second column. Example: '2024-07-25T22:59:59Z'

Get Schedule Report

requires authentication

This endpoint retrieves all schedule report between a start an end date.

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/reports/schedule_report" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"draw\": 2,
    \"start\": 0,
    \"length\": 10,
    \"search[value]\": \"\'\'\",
    \"search[regex]\": false,
    \"parser\": \"datatables\",
    \"where[mode]\": \"members\",
    \"return_fields[]\": \"*\",
    \"context\": null,
    \"report_subtype\": \"collection\",
    \"collection\": \"\'\'\",
    \"start_date\": \"2024-06-29 23:00:00\",
    \"end_date\": \"2024-08-04 22:59:57\",
    \"columns\": [
        \"architecto\"
    ],
    \"columns[*][data]\": \"donor_branch_name\",
    \"columns[*][name]\": \"\'\'\",
    \"columns[*][searchable]\": true,
    \"columns[*][orderable]\": false,
    \"columns[*][search][value]\": \"\'\'\",
    \"columns[*][search][regex]\": false
}"
const url = new URL(
    "api-qa.foodiverse.net/api/reports/schedule_report"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "draw": 2,
    "start": 0,
    "length": 10,
    "search[value]": "''",
    "search[regex]": false,
    "parser": "datatables",
    "where[mode]": "members",
    "return_fields[]": "*",
    "context": null,
    "report_subtype": "collection",
    "collection": "''",
    "start_date": "2024-06-29 23:00:00",
    "end_date": "2024-08-04 22:59:57",
    "columns": [
        "architecto"
    ],
    "columns[*][data]": "donor_branch_name",
    "columns[*][name]": "''",
    "columns[*][searchable]": true,
    "columns[*][orderable]": false,
    "columns[*][search][value]": "''",
    "columns[*][search][regex]": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/reports/schedule_report';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'draw' => 2,
            'start' => 0,
            'length' => 10,
            'search[value]' => '\'\'',
            'search[regex]' => false,
            'parser' => 'datatables',
            'where[mode]' => 'members',
            'return_fields[]' => '*',
            'context' => null,
            'report_subtype' => 'collection',
            'collection' => '\'\'',
            'start_date' => '2024-06-29 23:00:00',
            'end_date' => '2024-08-04 22:59:57',
            'columns' => [
                'architecto',
            ],
            'columns[*][data]' => 'donor_branch_name',
            'columns[*][name]' => '\'\'',
            'columns[*][searchable]' => true,
            'columns[*][orderable]' => false,
            'columns[*][search][value]' => '\'\'',
            'columns[*][search][regex]' => false,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/reports/schedule_report'
payload = {
    "draw": 2,
    "start": 0,
    "length": 10,
    "search[value]": "''",
    "search[regex]": false,
    "parser": "datatables",
    "where[mode]": "members",
    "return_fields[]": "*",
    "context": null,
    "report_subtype": "collection",
    "collection": "''",
    "start_date": "2024-06-29 23:00:00",
    "end_date": "2024-08-04 22:59:57",
    "columns": [
        "architecto"
    ],
    "columns[*][data]": "donor_branch_name",
    "columns[*][name]": "''",
    "columns[*][searchable]": true,
    "columns[*][orderable]": false,
    "columns[*][search][value]": "''",
    "columns[*][search][regex]": false
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "data": [
            {
                "date": "2024-08-14",
                "donor_org_name": "MRT TESTING FOODBANK",
                "donor_branch_name": "MRT testing branch 1",
                "donor_branch_official_id": "MRT:1234",
                "day_of_week_start": 3,
                "start_time": "23:00:00",
                "schedule_status": "Permanent",
                "max_collectors": 1,
                "l_ambient": "Yes",
                "l_chilled": "Yes",
                "l_frozen": "No",
                "l_hot": "No",
                "primary_charity_org": "Green Planet Charity Group",
                "primary_charity_name": "Green Planet Charity DP 1.0",
                "primary_charity_id": "GPC:2238",
                "primary_slot_status": "Activated",
                "primary_slot_type": "Primary",
                "waitlist_charity_name_1": "Green Planet Charity APPC 1.0",
                "waitlist_charity_id_1": "GPC:2292",
                "waitlist_charity_name_2": "Green Planet Charity APPC 1.5",
                "waitlist_charity_id_2": "GPC:2293",
                "difference_in_days": 4
            },
            {
                "date": "2024-08-14",
                "donor_org_name": "MRT TESTING FOODBANK",
                "donor_branch_name": "MRT testing branch 1",
                "donor_branch_official_id": "MRT:1234",
                "day_of_week_start": 3,
                "start_time": "08:00:00",
                "schedule_status": "Permanent",
                "max_collectors": 1,
                "l_ambient": "No",
                "l_chilled": "No",
                "l_frozen": "No",
                "l_hot": "No",
                "waitlist_charity_name_1": "Green Planet Charity AAR 1.4",
                "waitlist_charity_id_1": "GPC:2287",
                "waitlist_charity_name_2": "Green Planet Charity AAR 1.2",
                "waitlist_charity_id_2": "GPC:2286",
                "difference_in_days": 4
            }
        ],
        "recordsFiltered": 5,
        "recordsTotal": 99999
    },
    "frontendRedirect": false,
    "callTime": 0.06791400909423828
}
 

Example response (400):


{
    "status": "error",
    "data": [
        {
            "field": "end_date",
            "message": "e_end_date_should_not_be_beyond_3_months_from_now"
        },
        {
            "field": "start_date",
            "message": "e_start_date_field_required"
        }
    ],
    "frontendRedirect": false,
    "callTime": 0.025758028030395508
}
 

Request      

POST api/reports/schedule_report

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

draw   integer   

Draw counter for DataTables. Example: 2

start   integer   

Starting point for the results. Example: 0

length   integer   

Number of records to return. Example: 10

search[value]   string  optional  

Global search value. Example: ''

search[regex]   boolean  optional  

Whether the global search value is a regex. Example: false

parser   string   

Parser type. Example: datatables

where[mode]   string   

Filter mode. Example: members

return_fields[]   string   

Fields to return. Example: *

context   string  optional  

Report context.

report_subtype   string   

Report Subtype. Example: collection

collection   string  optional  

Data collection context. Example: ''

start_date   string   

Start date for the report. Example: 2024-06-29 23:00:00

end_date   string   

End date for the report. Example: 2024-08-04 22:59:57

columns   string[]   

An array of column definitions.

columns[*][data]   string   

Data source for the second column. Example: donor_branch_name

columns[*][name]   string  optional  

Column name (optional). Example: ''

columns[*][searchable]   boolean  optional  

Whether the second column is searchable. Example: true

columns[*][orderable]   boolean  optional  

Whether the second column is orderable. Example: false

columns[*][search][value]   string  optional  

Search value for the second column. Example: ''

columns[*][search][regex]   boolean  optional  

Whether the search value for the second column is a regex. Example: false

Schedules

Get branches within the user's network

requires authentication

Get branches within the user's network

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/network_branches" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/network_branches"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/network_branches';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/network_branches'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2476
 

{
    "status": "success",
    "data": [
        {
            "name": "#demo Admin Michael",
            "uuid": "b4ad7860-7df7-470a-809c-13b5a87e2b7f",
            "in_line_address": ""
        },
        {
            "name": "#demo COSTCO DONOR",
            "uuid": "9a6b9dd1-0fce-4696-ae82-2bcd85ddd20f",
            "in_line_address": ""
        },
        {
            "name": "#demo Cruelty Free Donor",
            "uuid": "de5ad63b-c44e-412c-b279-0a997382d12b",
            "in_line_address": ""
        },
        {
            "name": "#demo Cruelty Free Donor 2",
            "uuid": "784a9733-29d5-4f8d-8d32-98efa607d76b",
            "in_line_address": ""
        },
        {
            "name": "#demo Donor HU",
            "uuid": "44461519-2d0e-40ab-b923-985633be002e",
            "in_line_address": ""
        },
        {
            "name": "#demo Donor One Canada",
            "uuid": "73371db1-9cc5-464d-b363-0ede51ea71a4",
            "in_line_address": ""
        },
        {
            "name": "#demo Donor Two Canada",
            "uuid": "ad2b18d9-1079-44f3-bec5-2ae3e97cffe2",
            "in_line_address": ""
        },
        {
            "name": "#demo Dunnes Donor",
            "uuid": "20693cbb-2c27-4903-866c-ff6ab14f1fa4",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor",
            "uuid": "11c0b7f3-de10-47b2-b667-6a5063de1369",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 1",
            "uuid": "6a062b32-23c1-41f6-bba0-acf324860146",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 10",
            "uuid": "7c10be2b-d436-4f60-a0e2-24f2840add94",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 11",
            "uuid": "2127166b-8d0a-4e5b-a1f6-fac36658288c",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 12",
            "uuid": "4e571b0a-0320-4a94-9778-f1a2ca1f5aed",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 13",
            "uuid": "e69ad3ed-d5be-4b1f-8c5d-eb7eaf2209c8",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 14",
            "uuid": "62da9928-aa7e-4c1c-a0e0-9f914e302817",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 15",
            "uuid": "b2f20e44-7382-4b9b-8850-6df41688f58c",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 16",
            "uuid": "9938c16c-7fef-4580-943f-e36faf3c7bc7",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 17",
            "uuid": "0aed9ed0-9a10-46ca-883b-3c8c0f9962d2",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 18",
            "uuid": "78f4862d-1445-4067-aa3d-a69e0adcb223",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 19",
            "uuid": "ee3acdd7-fd00-4677-b06f-f5f83a73628b",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 2",
            "uuid": "43aac9f3-7fc1-4370-824c-a50392814499",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 20",
            "uuid": "3ab103a3-84e8-431f-a964-ed30d967a671",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 3",
            "uuid": "ecaaa0db-a160-449c-b233-67b30a88f686",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 4",
            "uuid": "336214d0-ab4d-41ba-9f8a-4a9ec6d3f11f",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 5",
            "uuid": "5e32cf20-75f5-4027-aea9-8e01af54c874",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 6",
            "uuid": "b32e3a6d-4814-4b7d-8502-fffddd25f86b",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 7",
            "uuid": "b7f08860-b0be-487f-9706-cad11542df3d",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 8",
            "uuid": "fbd1a96f-c79c-4dfd-8e03-a7dba78dddbc",
            "in_line_address": ""
        },
        {
            "name": "#demo FareShare Donor 9",
            "uuid": "5c330a0e-1e32-4bd7-ae15-605bb9e6103c",
            "in_line_address": ""
        },
        {
            "name": "#demo FoodCloud DemoDonor G",
            "uuid": "10dff655-bc13-4427-b27b-0727e16e727a",
            "in_line_address": ""
        },
        {
            "name": "#demo FoodCloud DemoDonor H",
            "uuid": "db43536b-97d5-4d47-bc11-ec01c2c6f9d2",
            "in_line_address": ""
        },
        {
            "name": "#demo FoodCloud Donor",
            "uuid": "dfcefb33-1a99-4447-8d26-c768f3a71bcc",
            "in_line_address": ""
        },
        {
            "name": "#demo FoodCloud Farm Adhoc",
            "uuid": "53fb5f39-8e4a-4d5e-b1bb-cb9e53003686",
            "in_line_address": ""
        },
        {
            "name": "#demo FoodCloud Hub Scheduled",
            "uuid": "52620043-a32b-46e0-a7ac-b292688580f1",
            "in_line_address": ""
        },
        {
            "name": "#demo FoodCloud Hubs Donor",
            "uuid": "f3879f4c-9a30-4c08-a784-d2931814fe5b",
            "in_line_address": ""
        },
        {
            "name": "#demo FoodCloud Manufacturer C",
            "uuid": "4483ff9e-4b33-47f0-91ed-4a747489dd1b",
            "in_line_address": ""
        },
        {
            "name": "#demo FoodCloud Store A",
            "uuid": "60796edf-3e11-4bf1-85bc-3cafb8655b96",
            "in_line_address": ""
        },
        {
            "name": "#demo FoodCloud Wholesale D",
            "uuid": "e11c0876-d167-4182-8f8b-dd31660dca62",
            "in_line_address": ""
        },
        {
            "name": "#demo Historic Donor",
            "uuid": "a4997d29-4e56-46fe-a758-c88385123b83",
            "in_line_address": ""
        },
        {
            "name": "#demo Kipa Atakent Mahallesi Extra",
            "uuid": "d9f61de9-1989-4adc-a776-beac3eb65ea6",
            "in_line_address": ""
        },
        {
            "name": "#demo LIDL DemoDonor",
            "uuid": "86bc01a6-df36-4c17-89df-4ffce18be026",
            "in_line_address": ""
        },
        {
            "name": "#demo Lidl Donor",
            "uuid": "f1303788-fb79-41a2-b830-6703f9421266",
            "in_line_address": ""
        },
        {
            "name": "#demo Loblaw Ottawa",
            "uuid": "a6284d28-0f94-4a2e-a97c-af2b69419fcd",
            "in_line_address": ""
        },
        {
            "name": "#demo M&S Test Store 2",
            "uuid": "2274eba1-99c2-44ea-bd29-ba19dd7291fe",
            "in_line_address": ""
        },
        {
            "name": "#demo M&S Test Store 3",
            "uuid": "54383b74-0915-476c-bafc-b51a32e492ce",
            "in_line_address": ""
        },
        {
            "name": "#demo M&S Test Store 4",
            "uuid": "409640bd-ba3f-4aee-89c4-1f29ee458ce7",
            "in_line_address": ""
        },
        {
            "name": "#demo M&S Test Store 5",
            "uuid": "ef6f16af-552e-4267-98f8-95d816050aca",
            "in_line_address": ""
        },
        {
            "name": "#demo Main St. Supermarket",
            "uuid": "de2ebcc6-7f78-44d9-962a-5600bbedd1f4",
            "in_line_address": ""
        },
        {
            "name": "#demo Musgrave Test",
            "uuid": "91063af1-0c25-4ac0-a15d-cd5f4a5dc39a",
            "in_line_address": ""
        },
        {
            "name": "#demo Pusateri's Sherway Gardens",
            "uuid": "f50e0ab2-3f21-46f2-ab8b-2f4493b0b46a",
            "in_line_address": ""
        },
        {
            "name": "#demo Sainsbury DemoDonor",
            "uuid": "0d35c53b-4c5e-4058-a6ce-1781bf187145",
            "in_line_address": ""
        },
        {
            "name": "#demo Sainsbury's FC",
            "uuid": "fd2dd83f-9608-4d7f-8c69-fc9245da9758",
            "in_line_address": ""
        },
        {
            "name": "#demo Sean DemoStore",
            "uuid": "f3373f8a-5233-49a1-ae68-1ea717acbf9a",
            "in_line_address": ""
        },
        {
            "name": "#demo Tesco Demo",
            "uuid": "ce64f337-2b54-48aa-be8c-fd909f0a7e09",
            "in_line_address": ""
        },
        {
            "name": "#demo Test 3 Demo Donor",
            "uuid": "4eea3b56-cfb0-4f3d-9bde-3bcb0781ede6",
            "in_line_address": ""
        },
        {
            "name": "#demo Test AdHoc IM Donor 1",
            "uuid": "ccc6689d-c6a2-4a5c-bbbf-a1d90cdc4f2d",
            "in_line_address": ""
        },
        {
            "name": "#demo Test AdHoc IM Donor 2",
            "uuid": "d464c5a4-5390-48e5-bbcd-9b82195df02c",
            "in_line_address": ""
        },
        {
            "name": "#demo Test Donor Normal Schedule 123",
            "uuid": "c30ac6e0-b684-4870-8c56-3ff28ce179f1",
            "in_line_address": ""
        },
        {
            "name": "#demo Test ExtS IoM Donor 1",
            "uuid": "d5fa8dd8-1bd3-47d5-b3cf-193501e02020",
            "in_line_address": ""
        },
        {
            "name": "#demo Test ExtS IoM Donor 2",
            "uuid": "ab855d44-aa1a-4af1-833f-4aa3c9ad3b84",
            "in_line_address": ""
        },
        {
            "name": "#demo Test Load Donor",
            "uuid": "17122a3e-0858-4ecf-94af-5e6aeeb16f03",
            "in_line_address": ""
        },
        {
            "name": "#demo Test Load Donor 2",
            "uuid": "0be65925-00b1-4ddc-97ec-f29d2d2ba0ae",
            "in_line_address": ""
        },
        {
            "name": "#demo Test Load Donor 3",
            "uuid": "662cebc9-9595-48c5-8d0c-176ac2885bb6",
            "in_line_address": ""
        },
        {
            "name": "#demo Test Load Donor 4",
            "uuid": "f98366de-0954-4cfb-9cd3-a1542f20982e",
            "in_line_address": ""
        },
        {
            "name": "#demo Test Load Donor 5",
            "uuid": "bbcb3a74-3a0c-423e-9fd1-52b5c7769909",
            "in_line_address": ""
        },
        {
            "name": "#demo Test MandS Deli 1",
            "uuid": "1e11e5e6-d9f9-4ca9-9e94-0d9bcd7a1f29",
            "in_line_address": ""
        },
        {
            "name": "#demo Test Polish Pallet Donor 1",
            "uuid": "40e7216f-8b18-4eeb-99fe-ca57d0ba3c79",
            "in_line_address": ""
        },
        {
            "name": "#demo Test Polish Store 1",
            "uuid": "b34c3620-a039-4464-a1ad-5ce491f5bce1",
            "in_line_address": ""
        },
        {
            "name": "#demo Test Polish Store 2",
            "uuid": "34c1de07-5704-4fbd-9d9e-fcd101e57424",
            "in_line_address": ""
        },
        {
            "name": "#demo Test Tub donor 1",
            "uuid": "09993566-c9b5-4010-ab33-9967899d3b1e",
            "in_line_address": ""
        },
        {
            "name": "#demo TIDER DONOR B",
            "uuid": "63e4149d-724a-405e-b558-d4b8cc7832f6",
            "in_line_address": ""
        },
        {
            "name": "#demo Vinny donor A",
            "uuid": "b2cd5a5b-e484-44a8-b1c2-c275fd3e4e9b",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Demo",
            "uuid": "7d80b4aa-dba6-4538-9060-529b63880c03",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 01",
            "uuid": "0c06e82b-9f0c-439b-8350-f21a2e04aadf",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 02",
            "uuid": "f45404b2-836d-4145-a341-beab4637b69e",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 03",
            "uuid": "3b0141a7-0484-4120-b478-f9e2df11ffbc",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 04",
            "uuid": "f24cf282-2b3f-4075-968c-9cfd41c7bdc7",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 05",
            "uuid": "38a6231e-e20b-442a-90e7-3e62b2aa7ccd",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 06",
            "uuid": "fa308f0d-99cf-40cd-aeaa-d29ecaaa8632",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 07",
            "uuid": "5561ec9c-ed51-4a2c-b418-bc08ab423540",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 08",
            "uuid": "c024ed12-ec08-4949-9ca3-1d34b59051e5",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 09",
            "uuid": "12ff707b-6bf0-4671-a508-726d71fcfc47",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 10",
            "uuid": "dc61efc0-a651-4cc8-88bf-c4662c99b3ef",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 11",
            "uuid": "20d1a8f9-1220-4a14-957c-06d5c8cc26c1",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 12",
            "uuid": "33786688-69a7-4f4b-b0d1-ebfcf4ebe5ac",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 13",
            "uuid": "f61cea68-aea6-45d5-be8b-49b44459afbb",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 14",
            "uuid": "6bf6936d-eb18-4864-a6e8-1b8cb97f6ed8",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 15",
            "uuid": "1e1c57e4-54a7-4dd0-abd4-8cfc5098f43d",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 16",
            "uuid": "6b07e63b-c03c-4bea-8c7a-3ee986ad5dd0",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 17",
            "uuid": "0020f191-c16d-438d-8c90-63dbe381be83",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 18",
            "uuid": "09fb5974-dc70-4787-afe3-80f87177cc53",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 19",
            "uuid": "234907b8-1eb9-46f3-9d5f-80d83379d229",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 20",
            "uuid": "2151ff91-f161-49bc-b471-5d727869619e",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 21",
            "uuid": "c17f2f22-8f16-46f4-b6d0-d398e4ec9b9c",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 22",
            "uuid": "f845f204-96c1-4a54-be32-e90895c9d39c",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 23",
            "uuid": "99cf749b-89d7-42d7-854e-93ebe0301a18",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 24",
            "uuid": "44fbf7fc-9bbd-43bb-9b3f-5ec51e5f18ed",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 25",
            "uuid": "7718c85a-6b59-4cba-a2bf-857163ac3c34",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 26",
            "uuid": "9a9364e7-ed59-4cf3-89e4-81c96f9777c5",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 27",
            "uuid": "cd74dc98-ebbf-4d48-aba2-2c3cad9774cb",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 28",
            "uuid": "c1e66dc2-65e2-43ca-9d69-d211c8faab3b",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 29",
            "uuid": "ed536bd6-48e2-4d89-bc20-7584de37da2b",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 30",
            "uuid": "fefbab37-9527-441b-b601-5b6f33761dd8",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 31",
            "uuid": "de4cb79a-e5c2-4c9b-82b0-918802116fd6",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 32",
            "uuid": "ce98d889-772f-437f-9102-60f631a14d3c",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 33",
            "uuid": "bb99738b-af4c-4157-a78e-0f24897022af",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 34",
            "uuid": "012597ee-efb4-4d80-9c6f-5aed74341e29",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 35",
            "uuid": "34169d3a-50f8-42eb-9449-96551902cca1",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 36",
            "uuid": "211888f9-e748-4e68-bb82-1e74ddb89c15",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 37",
            "uuid": "c76c1db5-33bb-4327-9a15-b19abad60132",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 38",
            "uuid": "2ec2ca5d-32fe-4afa-b5a7-834d3053d7f4",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 39",
            "uuid": "cba5d78f-8f47-4dee-8bb3-f5b51fc19cc8",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 40",
            "uuid": "0180eb5e-2179-49bb-875f-1f1bca2f415d",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 41",
            "uuid": "5ca190d4-dadc-4028-a60a-51ed0bc0a76a",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 42",
            "uuid": "beec9ece-7789-47a5-b678-a5a2af154c6b",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 43",
            "uuid": "cf714dd7-e136-4e45-a257-5e981a91edd3",
            "in_line_address": ""
        },
        {
            "name": "#demo Waitrose Test 44",
            "uuid": "a550f46f-7a52-4e1f-847a-91a2ffbe1b86",
            "in_line_address": ""
        },
        {
            "name": "#demo Walsh's Supermarket Main St.",
            "uuid": "87bc51e9-3c19-4490-aa8f-100436035e78",
            "in_line_address": ""
        },
        {
            "name": "#demo X5 Moscow Main St",
            "uuid": "5bc84d4f-f478-4453-81c4-fd8193d03fe0",
            "in_line_address": ""
        },
        {
            "name": "#demo Zidl Leven",
            "uuid": "7f31daf4-1562-4109-828b-009fb734d360",
            "in_line_address": ""
        },
        {
            "name": "18 06 Donor*",
            "uuid": "a36248ab-a702-465f-8a0e-44f46e2e760c",
            "in_line_address": ""
        },
        {
            "name": "Aldi Adamstown",
            "uuid": "914604b2-7ad8-4f78-a438-d2745b414c8a",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ardee",
            "uuid": "cc8ec091-f3f6-481d-a902-a35c36027dc3",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ardkeen",
            "uuid": "cabf3869-33ba-4b5e-a405-de71a438724b",
            "in_line_address": ""
        },
        {
            "name": "Aldi Arklow",
            "uuid": "f2da0c63-e067-47c0-994d-c5122057c9c5",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ashbourne",
            "uuid": "a22dfa48-1dac-4cb9-8996-0e7c494d17ad",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ashe Road",
            "uuid": "3fc144c6-94d8-4356-ac8a-8193e4898232",
            "in_line_address": ""
        },
        {
            "name": "Aldi Athenry",
            "uuid": "591b9834-393e-44d6-b4ec-f1d35a85dd82",
            "in_line_address": ""
        },
        {
            "name": "Aldi Athlone",
            "uuid": "40e5a1fe-5024-4345-b254-cc9bc4150b09",
            "in_line_address": ""
        },
        {
            "name": "Aldi Athy",
            "uuid": "d9098df5-1672-41e8-a86d-0c477a73b38d",
            "in_line_address": ""
        },
        {
            "name": "Aldi Bagenalstown",
            "uuid": "913f8181-79ac-470d-8258-714057c2fcce",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ballina",
            "uuid": "ca4270f8-b903-49cc-a5a4-61a7ce936210",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ballinasloe",
            "uuid": "68ec4629-eaf5-4073-a382-c5a5a42be737",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ballincollig (Main Street)",
            "uuid": "0f081799-a300-4ae5-a3ed-9bef3509d22f",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ballincollig (Westside Retail Park)",
            "uuid": "6fb5df70-6e55-4d8d-85af-c8598976a515",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ballinrobe",
            "uuid": "119b63e8-ab10-4117-b29a-520bd90fff51",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ballybofey",
            "uuid": "fe3fd65a-384e-4fa1-9e5e-90fe9d6c902c",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ballyfermot",
            "uuid": "ea65bea0-9c9b-492e-b6f1-2a04d3ac60cf",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ballyhaunis",
            "uuid": "9d1cd074-37f5-47ea-9d0a-08f708262c6d",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ballyphehane",
            "uuid": "da7761dc-1410-4d5d-adf8-f6250ff55dc4",
            "in_line_address": ""
        },
        {
            "name": "Aldi Bandon",
            "uuid": "b8ff2ea7-96aa-424a-9dca-c8a94345c734",
            "in_line_address": ""
        },
        {
            "name": "Aldi Belgard Road",
            "uuid": "f2ae79fa-5b1e-4a61-a281-1f830243455f",
            "in_line_address": ""
        },
        {
            "name": "Aldi Belmullet",
            "uuid": "8fe1be3a-4e57-465e-8c89-bba77ee692bc",
            "in_line_address": ""
        },
        {
            "name": "Aldi Blackpool",
            "uuid": "e25a898c-1475-44a5-b041-81b70b5513ce",
            "in_line_address": ""
        },
        {
            "name": "Aldi Blackrock",
            "uuid": "af91d219-22ee-4ec6-a556-39dfe986f776",
            "in_line_address": ""
        },
        {
            "name": "Aldi Blanchardstown",
            "uuid": "21405b9b-f6aa-4d07-bb6e-e4a34c0ea166",
            "in_line_address": ""
        },
        {
            "name": "Aldi Blessington",
            "uuid": "00d6ea82-4149-4706-916c-f296a4c6319a",
            "in_line_address": ""
        },
        {
            "name": "Aldi Bray",
            "uuid": "903ae233-683d-469e-ac2f-29f684444157",
            "in_line_address": ""
        },
        {
            "name": "Aldi Bunclody",
            "uuid": "232ab1e6-dee4-42ec-8858-66c3c9ba3387",
            "in_line_address": ""
        },
        {
            "name": "Aldi Buncrana",
            "uuid": "09af05ca-3c97-44cd-9ac4-e21e9d1852b4",
            "in_line_address": ""
        },
        {
            "name": "Aldi Cabra",
            "uuid": "0a4cb4a9-f2d2-46ff-af40-b78f7a0e48b3",
            "in_line_address": ""
        },
        {
            "name": "Aldi Cahersiveen",
            "uuid": "0398081e-72bb-410e-8985-fba358faf484",
            "in_line_address": ""
        },
        {
            "name": "Aldi Cahir",
            "uuid": "b506c487-6732-429d-a8c9-124924ce0352",
            "in_line_address": ""
        },
        {
            "name": "Aldi Callan",
            "uuid": "d3374a51-b7a4-4735-aed6-01ff1d63a6b2",
            "in_line_address": ""
        },
        {
            "name": "Aldi Carlow",
            "uuid": "ce1dbc67-d7ab-4e1b-998f-ab4153ebdd4b",
            "in_line_address": ""
        },
        {
            "name": "Aldi Carrick On Shannon",
            "uuid": "25b8a461-e95b-41dc-a519-6419f3514859",
            "in_line_address": ""
        },
        {
            "name": "Aldi Carrick-On-Suir",
            "uuid": "1cfc4709-e5a5-4f7a-ae2c-775b502701e5",
            "in_line_address": ""
        },
        {
            "name": "Aldi Carrickmacross",
            "uuid": "5463938c-c4db-4a28-84a4-de2327e8c291",
            "in_line_address": ""
        },
        {
            "name": "Aldi Carrigaline",
            "uuid": "7af1070d-b810-4908-adc0-7741bbefcb54",
            "in_line_address": ""
        },
        {
            "name": "Aldi Carrigtwohill",
            "uuid": "9db5f7a5-52b3-46e0-a8c2-3894c8da3ed8",
            "in_line_address": ""
        },
        {
            "name": "Aldi Cashel",
            "uuid": "076bc02c-2f58-4f73-99e4-3bb959bd1f0d",
            "in_line_address": ""
        },
        {
            "name": "Aldi Castlebar",
            "uuid": "e55e6132-f130-41ca-80b8-fc07c74bf4dc",
            "in_line_address": ""
        },
        {
            "name": "Aldi Castleisland",
            "uuid": "bc5b8dbf-9e2f-4f80-b9d3-223cc57fd38e",
            "in_line_address": ""
        },
        {
            "name": "Aldi Cavan",
            "uuid": "11e2c36d-c3a2-4111-bf4d-ce021aed5429",
            "in_line_address": ""
        },
        {
            "name": "Aldi Celbridge",
            "uuid": "6b7fe141-8811-42a0-8957-da68112600e8",
            "in_line_address": ""
        },
        {
            "name": "Aldi Charleville",
            "uuid": "7019508b-17e0-4ff0-9c18-985822988a17",
            "in_line_address": ""
        },
        {
            "name": "Aldi Clane",
            "uuid": "661af43c-bff1-41cd-aa21-1777f0183e7a",
            "in_line_address": ""
        },
        {
            "name": "Aldi Claremorris",
            "uuid": "72c67b6b-f098-447e-8463-b44636a5ea78",
            "in_line_address": ""
        },
        {
            "name": "Aldi Clifden",
            "uuid": "b15e3b9c-386e-4092-8ccd-2b83eb5c14c8",
            "in_line_address": ""
        },
        {
            "name": "Aldi Clonakilty",
            "uuid": "b66eaef0-f36b-4a9c-9613-4835b9cadba6",
            "in_line_address": ""
        },
        {
            "name": "Aldi Clonakilty",
            "uuid": "6be48000-f951-45bc-9b0d-d78bbe3dbda6",
            "in_line_address": ""
        },
        {
            "name": "Aldi Clonee",
            "uuid": "d097eeec-0609-4d20-96c9-e15473bae9d4",
            "in_line_address": ""
        },
        {
            "name": "Aldi Clonmel",
            "uuid": "2f2943ab-2283-4e4f-b1c0-b2da1c123e8f",
            "in_line_address": ""
        },
        {
            "name": "Aldi Cobh",
            "uuid": "8ed56159-3964-408f-9e6a-5cd396e10b2b",
            "in_line_address": ""
        },
        {
            "name": "Aldi Coolock",
            "uuid": "29cb18d2-f9f5-4c7b-9000-3f0ac32f2899",
            "in_line_address": ""
        },
        {
            "name": "Aldi Donegal Town",
            "uuid": "361b56d6-9b6f-469a-a484-e2d3df9de655",
            "in_line_address": ""
        },
        {
            "name": "Aldi Douglas",
            "uuid": "c8481e7a-85b6-4cea-9186-c11c3518a4c0",
            "in_line_address": ""
        },
        {
            "name": "Aldi Drogheda (Donore Road)",
            "uuid": "bdb09215-7ce7-490f-a11e-608637b60361",
            "in_line_address": ""
        },
        {
            "name": "Aldi Drogheda (Slane Road)",
            "uuid": "709044ea-107a-442c-99fd-621c156d77e7",
            "in_line_address": ""
        },
        {
            "name": "Aldi Dundalk (Newry Road)",
            "uuid": "51ff4dc8-9ab0-438f-90a5-ae320aa50fa3",
            "in_line_address": ""
        },
        {
            "name": "Aldi Dundalk (Ramparts Road)",
            "uuid": "306b59eb-6b77-433f-bb6f-480d9fc53e28",
            "in_line_address": ""
        },
        {
            "name": "Aldi Dungarvan",
            "uuid": "8efd2488-529a-460c-b07c-7377348e7169",
            "in_line_address": ""
        },
        {
            "name": "Aldi Dungloe",
            "uuid": "a625ef4f-1775-410d-9939-57b23752cbe2",
            "in_line_address": ""
        },
        {
            "name": "Aldi Dunmanway",
            "uuid": "1ff13f3d-3df3-4785-bffb-4b295d29611f",
            "in_line_address": ""
        },
        {
            "name": "Aldi Dunshaughlin",
            "uuid": "f44cd6fb-ddd2-455f-8056-7bdfbf1270d3",
            "in_line_address": ""
        },
        {
            "name": "Aldi East Wall Road",
            "uuid": "f3c54bbc-38b4-4e50-b32e-0bbb8d0a22fa",
            "in_line_address": ""
        },
        {
            "name": "Aldi Edenderry",
            "uuid": "87bd95fe-13c5-450d-87fe-a60e50189b8e",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ennis",
            "uuid": "2d45883a-009e-4d09-ba43-c101b1500b62",
            "in_line_address": ""
        },
        {
            "name": "Aldi Enniscorthy",
            "uuid": "2a4261d9-dd8d-47fc-ab69-4dda085f5816",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ennistymon",
            "uuid": "48689d15-172b-445f-8072-b286586fc643",
            "in_line_address": ""
        },
        {
            "name": "Aldi Fermoy",
            "uuid": "b1552c2f-a4af-4ad3-ab52-852e039d42f0",
            "in_line_address": ""
        },
        {
            "name": "Aldi Ferrybank",
            "uuid": "e6899593-658c-411c-8f4e-70cee91f7b22",
            "in_line_address": ""
        },
        {
            "name": "Aldi Finglas",
            "uuid": "6dd508e1-be62-4b02-8ba0-05cedbf13e2b",
            "in_line_address": ""
        },
        {
            "name": "Aldi Fonthill",
            "uuid": "28fda951-fdc8-41c8-9522-7f1530446cfb",
            "in_line_address": ""
        },
        {
            "name": "Aldi Frascati",
            "uuid": "dd8347b7-ce1f-496d-ba21-a63bfdba5f1a",
            "in_line_address": ""
        },
        {
            "name": "Aldi Galway (Headford Road)",
            "uuid": "399aa684-31a3-4958-b748-0e7c8687f9da",
            "in_line_address": ""
        },
        {
            "name": "Aldi Galway (West City Retail Park)",
            "uuid": "7c101211-d7d0-4348-9638-b9973c595b57",
            "in_line_address": ""
        },
        {
            "name": "Aldi Glanmire",
            "uuid": "0f49a6f0-8dbc-4f06-ad43-2f09c8e0c832",
            "in_line_address": ""
        },
        {
            "name": "Aldi Goreybridge",
            "uuid": "a4aa69ab-9a09-401d-9603-232658d1e03c",
            "in_line_address": ""
        },
        {
            "name": "Aldi Gort",
            "uuid": "74b70ca6-0cda-4178-9b04-3c12166f5330",
            "in_line_address": ""
        },
        {
            "name": "Aldi Graiguecullen",
            "uuid": "3b02f31b-20ae-4385-98b4-fa58ace26e43",
            "in_line_address": ""
        },
        {
            "name": "Aldi Graiguenamanagh",
            "uuid": "15a53a4c-89b5-4402-92e9-7178e2819db4",
            "in_line_address": ""
        },
        {
            "name": "Aldi Grange - Douglas",
            "uuid": "c96725f2-28d1-47b0-a739-2f5066e9a91a",
            "in_line_address": ""
        },
        {
            "name": "Aldi Greystones",
            "uuid": "9ece8b8c-3d9e-4e39-bea6-1fbf09eddc37",
            "in_line_address": ""
        },
        {
            "name": "Aldi Head Office - Birch House",
            "uuid": "f5194c63-d8ba-453f-b513-77ab83b70900",
            "in_line_address": ""
        },
        {
            "name": "Aldi Kanturk",
            "uuid": "0290edb3-b687-4592-b12d-7acd1064cac9",
            "in_line_address": ""
        },
        {
            "name": "Aldi Kells",
            "uuid": "c96a0de0-d475-463d-8cde-db4294211307",
            "in_line_address": ""
        },
        {
            "name": "Aldi Kenmare",
            "uuid": "ad8fa558-fb4c-44f4-bf7c-279820a1bcfc",
            "in_line_address": ""
        },
        {
            "name": "Aldi Kildare",
            "uuid": "7ec46b74-6eb9-4f48-b64c-e7fb9b9901c5",
            "in_line_address": ""
        },
        {
            "name": "Aldi Kilkenny (Hebron Road)",
            "uuid": "c6640042-bd31-49e8-a280-25b3b04b467a",
            "in_line_address": ""
        },
        {
            "name": "Aldi Kilkenny (Waterford Road)",
            "uuid": "bd959a97-8560-4a2d-bce9-4f297f211895",
            "in_line_address": ""
        },
        {
            "name": "Aldi Killaloe",
            "uuid": "fdac400c-484b-454e-8a8c-bf2d940ee507",
            "in_line_address": ""
        },
        {
            "name": "Aldi Killarney",
            "uuid": "2cec07fc-2a30-4c1f-b8a5-d7f6cd3282c0",
            "in_line_address": ""
        },
        {
            "name": "Aldi Killarney (Closed)",
            "uuid": "106d9ff2-6674-4a6c-80d3-c64ee90a2479",
            "in_line_address": ""
        },
        {
            "name": "Aldi Killorglin",
            "uuid": "abc6cde9-26d3-4457-b6c0-cf7cbb9449c7",
            "in_line_address": ""
        },
        {
            "name": "Aldi Kilrush",
            "uuid": "b949effa-fef6-4821-98fe-984353b69a0d",
            "in_line_address": ""
        },
        {
            "name": "Aldi Kinnegad",
            "uuid": "c95c5df2-65d8-4d33-a587-d1222250ee73",
            "in_line_address": ""
        },
        {
            "name": "Aldi Knocknacarra",
            "uuid": "ae93dbf4-9dec-4166-8dbc-dd33112eb104",
            "in_line_address": ""
        },
        {
            "name": "Aldi Laytown",
            "uuid": "fc324777-c358-4ae2-bb8e-ab7e74a3db8a",
            "in_line_address": ""
        },
        {
            "name": "Aldi Leixlip",
            "uuid": "7231060d-cb7c-408d-954c-7cecf4de87ae",
            "in_line_address": ""
        },
        {
            "name": "Aldi Letterkenny (Neil T Blaney Road)",
            "uuid": "6306c56c-5a4b-443c-b273-9c17afce5282",
            "in_line_address": ""
        },
        {
            "name": "Aldi Letterkenny (Ramelton Road)",
            "uuid": "fa0b6109-1b22-47a6-afa0-20db82a767b5",
            "in_line_address": ""
        },
        {
            "name": "Aldi Limerick (Castletroy)",
            "uuid": "9e43db98-ab20-4f04-bcfc-edaf33e6c307",
            "in_line_address": ""
        },
        {
            "name": "Aldi Limerick (Childers Road)",
            "uuid": "c41b5fa2-3f24-4d58-ae07-081d8d93350b",
            "in_line_address": ""
        },
        {
            "name": "Aldi Listowel",
            "uuid": "565806af-cc41-41cf-9c6f-e6efeb1d9380",
            "in_line_address": ""
        },
        {
            "name": "Aldi Long Mile Road",
            "uuid": "030d6269-a9c3-4367-9c82-a01ec5af83e8",
            "in_line_address": ""
        },
        {
            "name": "Aldi Longford",
            "uuid": "f123b191-1980-4f1f-866f-d8fb8f699b47",
            "in_line_address": ""
        },
        {
            "name": "Aldi Loughrea",
            "uuid": "654471cd-1344-467f-a302-9186c9072bd2",
            "in_line_address": ""
        },
        {
            "name": "Aldi Macroom",
            "uuid": "9b193f6a-0efa-4c7d-80f8-979abc825696",
            "in_line_address": ""
        },
        {
            "name": "Aldi Mallow",
            "uuid": "f5107818-b7c0-434a-9add-ada51993b7eb",
            "in_line_address": ""
        },
        {
            "name": "Aldi Mayfield",
            "uuid": "78b38323-464b-4dbe-8391-69e7693b82c4",
            "in_line_address": ""
        },
        {
            "name": "Aldi Maynooth",
            "uuid": "a6095287-1faf-45c6-8735-269fe260f70d",
            "in_line_address": ""
        },
        {
            "name": "Aldi Midleton",
            "uuid": "127adedc-5fc6-4d67-a0d6-acc5b387e5a5",
            "in_line_address": ""
        },
        {
            "name": "Aldi Mitchelstown",
            "uuid": "107aecae-1777-411a-8570-3a738ea26897",
            "in_line_address": ""
        },
        {
            "name": "Aldi Mountbellew",
            "uuid": "fbb88360-0335-4856-8ecd-ba25c0136668",
            "in_line_address": ""
        },
        {
            "name": "Aldi Mulhuddart",
            "uuid": "44a06c55-5522-4b12-ae08-9fbe88e21cd0",
            "in_line_address": ""
        },
        {
            "name": "Aldi Mullingar (Dublin Road)",
            "uuid": "eb9065a1-7756-429a-b51f-cc0197b7d489",
            "in_line_address": ""
        },
        {
            "name": "Aldi Mullingar (Green Road)",
            "uuid": "d5451faf-4869-49ac-9786-633f79f631b3",
            "in_line_address": ""
        },
        {
            "name": "Aldi Naas (Jigginstown)",
            "uuid": "0a981f1f-09f0-4c11-84d9-1a4ec59d3a5e",
            "in_line_address": ""
        },
        {
            "name": "Aldi Naas (Monread Road)",
            "uuid": "1641bf12-f004-4ba2-8f1c-70af5b63462a",
            "in_line_address": ""
        },
        {
            "name": "Aldi Navan",
            "uuid": "e5bf37f3-fcff-4173-bef0-d8d077dce545",
            "in_line_address": ""
        },
        {
            "name": "Aldi Nenagh",
            "uuid": "3921a27b-a61e-4229-bb41-d2dbe8f769dd",
            "in_line_address": ""
        },
        {
            "name": "Aldi New Ross",
            "uuid": "bf03d2c3-ab89-461d-af07-4a02cd5055de",
            "in_line_address": ""
        },
        {
            "name": "Aldi Newbridge",
            "uuid": "ccd6a6e4-e2ca-4f71-939d-0f27959d5d1b",
            "in_line_address": ""
        },
        {
            "name": "Aldi Newcastle West",
            "uuid": "c86ee766-14e8-4241-8ff6-57636c8b6e37",
            "in_line_address": ""
        },
        {
            "name": "Aldi Newlands Cross",
            "uuid": "e62b1ea7-cf81-4ea1-968b-ca32c171a37b",
            "in_line_address": ""
        },
        {
            "name": "Aldi Nutgrove",
            "uuid": "bb49f784-679f-48f6-8bc7-488e72671359",
            "in_line_address": ""
        },
        {
            "name": "Aldi Oranmore",
            "uuid": "7cd292e9-7e88-49df-aef1-7e173455aa8a",
            "in_line_address": ""
        },
        {
            "name": "Aldi Palmerstown",
            "uuid": "07925ec1-3b7f-4362-8805-e24226a8985c",
            "in_line_address": ""
        },
        {
            "name": "Aldi Parnell St",
            "uuid": "2245f685-8f57-474e-931a-c5e9c5ba5aab",
            "in_line_address": ""
        },
        {
            "name": "Aldi Passage West",
            "uuid": "3e77948a-efb1-4f32-b08d-9ebce0aa9e4e",
            "in_line_address": ""
        },
        {
            "name": "Aldi Portarlington",
            "uuid": "cb0362fc-699c-4af6-baff-b72cc9352146",
            "in_line_address": ""
        },
        {
            "name": "Aldi Portlaoise",
            "uuid": "2e2ecc77-2c6f-4f7d-8865-210a2edcc5d8",
            "in_line_address": ""
        },
        {
            "name": "Aldi Portumna",
            "uuid": "2d7d66ae-6d30-40e5-b0ea-aed92a709119",
            "in_line_address": ""
        },
        {
            "name": "Aldi Rathmines",
            "uuid": "1e033057-bf7b-4d7c-a244-5fb91471eb39",
            "in_line_address": ""
        },
        {
            "name": "Aldi Rathnew",
            "uuid": "94c26c6b-2715-4df9-b344-1fba7db13d56",
            "in_line_address": ""
        },
        {
            "name": "Aldi Regional Distribution Centre - Naas",
            "uuid": "000890ed-98e8-4f9b-a464-08fca7ba4eba",
            "in_line_address": ""
        },
        {
            "name": "Aldi Roscommon",
            "uuid": "4e67159e-399a-4456-ba9e-a22224249e83",
            "in_line_address": ""
        },
        {
            "name": "Aldi Roscrea",
            "uuid": "7ca960fb-bc4e-41fb-84b5-c8afa3799452",
            "in_line_address": ""
        },
        {
            "name": "Aldi Royal Canal",
            "uuid": "0ccde194-0c2a-48db-b066-62329a04756c",
            "in_line_address": ""
        },
        {
            "name": "Aldi Sallynoggin",
            "uuid": "259d23e1-fa74-4301-98f8-261dbd1672d8",
            "in_line_address": ""
        },
        {
            "name": "Aldi Sandyford",
            "uuid": "3bf086bb-b783-4287-9c1e-c3b64eef1931",
            "in_line_address": ""
        },
        {
            "name": "Aldi Santry",
            "uuid": "8bb83df9-db7f-400c-b04e-fb697a724942",
            "in_line_address": ""
        },
        {
            "name": "Aldi Skibbereen",
            "uuid": "d984caa5-b89e-420e-9704-af10de75064b",
            "in_line_address": ""
        },
        {
            "name": "Aldi Sligo",
            "uuid": "3db4ec3a-586e-46e6-97bf-e369a9493ff3",
            "in_line_address": ""
        },
        {
            "name": "Aldi Sutton",
            "uuid": "85ddef1e-9ffd-4cf4-9bf4-485554aad84b",
            "in_line_address": ""
        },
        {
            "name": "Aldi swords (River Valley)",
            "uuid": "3c07a30b-9668-436e-919d-d0f71e80fad6",
            "in_line_address": ""
        },
        {
            "name": "Aldi Swords (Seatown Road)",
            "uuid": "7a43cc52-2237-45b4-89c7-5b79b39d3445",
            "in_line_address": ""
        },
        {
            "name": "Aldi Tallaght Cross",
            "uuid": "c64fe3d4-093a-4727-ab55-5564cb3056eb",
            "in_line_address": ""
        },
        {
            "name": "Aldi Terenure Road East",
            "uuid": "e7537222-1b7d-4feb-816d-0339e0dc4fbc",
            "in_line_address": ""
        },
        {
            "name": "Aldi The Elysian",
            "uuid": "19f582b3-6254-4e46-84ee-a18c14a433dc",
            "in_line_address": ""
        },
        {
            "name": "Aldi Thurles",
            "uuid": "fbf76aca-6604-4d85-99c1-d2b164c26452",
            "in_line_address": ""
        },
        {
            "name": "Aldi Tipperary Town",
            "uuid": "725d52f8-e8a7-4924-88cb-051b3d4d4815",
            "in_line_address": ""
        },
        {
            "name": "Aldi Tralee (JJ Sheehy Road)",
            "uuid": "6eda7bcf-d646-4072-bd48-2dbf8256f08d",
            "in_line_address": ""
        },
        {
            "name": "Aldi Tralee Rathass",
            "uuid": "072314d6-ce1f-42f9-b8e0-be7c4e312b5d",
            "in_line_address": ""
        },
        {
            "name": "Aldi Tramore",
            "uuid": "8e19c7ee-758b-4a1b-8150-003b899c89e5",
            "in_line_address": ""
        },
        {
            "name": "Aldi Trim",
            "uuid": "fa9d0204-a651-411b-a888-cc2b0764b4bf",
            "in_line_address": ""
        },
        {
            "name": "Aldi Tuam",
            "uuid": "460b7ed2-c982-46ca-a918-9ed233a411a1",
            "in_line_address": ""
        },
        {
            "name": "Aldi Tullamore",
            "uuid": "db387089-a947-4bae-baf0-591d16148160",
            "in_line_address": ""
        },
        {
            "name": "Aldi Tullamore - O'Connell Street",
            "uuid": "77f71c71-a79e-4fdf-b57a-a7d7e4f23295",
            "in_line_address": ""
        },
        {
            "name": "Aldi Tullow",
            "uuid": "540550ea-c1f7-46c6-bea7-ed49c0494be4",
            "in_line_address": ""
        },
        {
            "name": "Aldi Waterford - City Square",
            "uuid": "5aecf93e-0eec-4cca-84e6-5957f0b1d6f5",
            "in_line_address": ""
        },
        {
            "name": "Aldi Westpoint, Ennis",
            "uuid": "bdcbae43-796a-4e4f-be00-55a055897120",
            "in_line_address": ""
        },
        {
            "name": "Aldi Westpoint, Ennis",
            "uuid": "8fed22fa-b6df-4946-8910-771c08071220",
            "in_line_address": ""
        },
        {
            "name": "Aldi Wexford (Newtown Road)",
            "uuid": "371c8433-f316-4f37-b09b-c0527ff8841d",
            "in_line_address": ""
        },
        {
            "name": "Aldi Wexford (Trinity Street)",
            "uuid": "462ff408-9daa-4697-a6e7-592b4725c8d6",
            "in_line_address": ""
        },
        {
            "name": "Aldi Wexford (Wexford Retail Park)",
            "uuid": "450d7e46-9354-478f-b9b9-c8461b4968cd",
            "in_line_address": ""
        },
        {
            "name": "Aldi Wilton",
            "uuid": "fea20926-5d6a-4b01-88a3-2f83155b23fc",
            "in_line_address": ""
        },
        {
            "name": "Aldi Youghal",
            "uuid": "b9ba49dc-dc16-4f65-a709-3b5f810dd2a9",
            "in_line_address": ""
        },
        {
            "name": "Antoinette's Bakery",
            "uuid": "64bdeac5-e710-40a4-8013-7599fac927ad",
            "in_line_address": ""
        },
        {
            "name": "Archived branch TST-3347",
            "uuid": "5320900e-6e1a-4b5c-b623-e01442505a77",
            "in_line_address": ""
        },
        {
            "name": "Ardfert Potato Farm*",
            "uuid": "e82b0fcc-feab-444f-9bd9-2bcdd9ca81e2",
            "in_line_address": ""
        },
        {
            "name": "Bretzel Bakery",
            "uuid": "52112fce-7b8e-4091-95e0-25a48b7711d3",
            "in_line_address": ""
        },
        {
            "name": "BWG Cork",
            "uuid": "30fc40b8-1df4-4d3b-a3f1-33d2d0ad8906",
            "in_line_address": ""
        },
        {
            "name": "BWG Dundalk",
            "uuid": "0ad75de5-b002-4d61-b5d2-60009b4a41de",
            "in_line_address": ""
        },
        {
            "name": "BWG Finglas",
            "uuid": "b3bcb922-7e2d-450d-b9cf-9057c05b5788",
            "in_line_address": ""
        },
        {
            "name": "BWG Galway",
            "uuid": "b21cb8fe-a3c2-4b50-9aed-8ca464ac3cbb",
            "in_line_address": ""
        },
        {
            "name": "BWG Letterkenny",
            "uuid": "0c6c59db-ba88-4f2c-b448-177155b7dbd3",
            "in_line_address": ""
        },
        {
            "name": "Community Volunteers (FoodCloud)",
            "uuid": "b8e0f4d4-8d98-439d-8b71-31dceb4ffa7a",
            "in_line_address": ""
        },
        {
            "name": "Demo KFC Ireland",
            "uuid": "c895355f-f33b-482e-ba2c-a2a779de3919",
            "in_line_address": ""
        },
        {
            "name": "Demo Nando's",
            "uuid": "cd27f500-b105-4099-9837-74eadc9f1df8",
            "in_line_address": ""
        },
        {
            "name": "Demo Nando's ROI",
            "uuid": "c719e4c6-a769-4177-981d-2957a308ecd3",
            "in_line_address": ""
        },
        {
            "name": "Doherty Potatoes*",
            "uuid": "2f327600-0fb7-4997-88c6-467225f823c0",
            "in_line_address": ""
        },
        {
            "name": "Donnybrook Fair *",
            "uuid": "1c68badb-a104-45e4-80ae-0729622e431c",
            "in_line_address": ""
        },
        {
            "name": "Donnybrook Fair Dundrum",
            "uuid": "da638f94-1b16-45a6-b219-113fd2157fe1",
            "in_line_address": ""
        },
        {
            "name": "Donnybrook Fair Greystones",
            "uuid": "0817acb3-b5f9-4f3a-82e8-027290324834",
            "in_line_address": ""
        },
        {
            "name": "Donnybrook Fair Malahide",
            "uuid": "a9ddf9b4-bcd2-4170-88ed-1e34a3ea5d62",
            "in_line_address": ""
        },
        {
            "name": "Donnybrook Fair Morehampton Road",
            "uuid": "2c4e73e3-2821-403c-9700-e32a5ace90a7",
            "in_line_address": ""
        },
        {
            "name": "Donnybrook Fair Stillorgan",
            "uuid": "bdf35acc-6506-43aa-a69d-f0a23844c804",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Ard Easmuinn Dundalk",
            "uuid": "078983a7-1cc3-482c-8d5a-4977620c9c25",
            "in_line_address": ""
        },
        {
            "name": "Dunnes ASHBOURNE",
            "uuid": "df3e5d1e-cd66-4b8e-8edf-cf17aef75f41",
            "in_line_address": ""
        },
        {
            "name": "Dunnes ASHLEAF",
            "uuid": "91a35f77-1954-45ad-8d63-a237e0119df3",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Blanchardstown",
            "uuid": "8fd0ddc8-d0a4-4da8-838f-b89e7dfd7643",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Briar Hill",
            "uuid": "fab6dcc4-d722-45fb-9ff3-987b543034c8",
            "in_line_address": ""
        },
        {
            "name": "Dunnes CARRIGALINE",
            "uuid": "1bb8c1b8-d4db-4b86-b693-9dc637600153",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Castlebar",
            "uuid": "03854b12-c391-43dc-b1fd-11579a7112c1",
            "in_line_address": ""
        },
        {
            "name": "Dunnes CityWest",
            "uuid": "4d0a203c-b2a6-42ab-94ae-444ee579b0a3",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Clonakilty",
            "uuid": "79e89f30-0ba6-4855-95ae-c92313dad85a",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Clondalkin",
            "uuid": "ba1be7a6-027d-4657-8229-0e7a8add3d35",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Clonmel Oakville",
            "uuid": "d7a4808c-41f1-4228-b42c-1423dfe67098",
            "in_line_address": ""
        },
        {
            "name": "Dunnes COLPES CROSS DROGHEDA",
            "uuid": "9a55a621-55c3-4861-a2fb-03c740eb5171",
            "in_line_address": ""
        },
        {
            "name": "Dunnes CORNELSCOURT",
            "uuid": "d22e54ff-48e3-4715-a158-a3dbd130c482",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Cranmore Rd Sligo",
            "uuid": "993440b5-9cf4-4b18-a26d-ca411230a472",
            "in_line_address": ""
        },
        {
            "name": "Dunnes DONAGHMEDE",
            "uuid": "5f77bffb-488a-4754-b186-fa64e18f966e",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Edward Square",
            "uuid": "cbd8256f-4a8b-430b-b8bd-a9e0632f10a5",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Henry Street",
            "uuid": "83eb620f-cf8b-4ad4-943f-a45222878ff5",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Jetland Limerick",
            "uuid": "351429a5-45e7-4bc0-9d37-e78cb12f9aee",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Kieran St Kilkenny",
            "uuid": "8ed9a988-09a2-4bb5-b921-11c1bb74e386",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Kilnamanagh",
            "uuid": "dfa8a6cc-28d8-4c26-8a15-9fe7b8696d56",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Knocknacarra",
            "uuid": "13ec8c84-8f48-4e98-b60e-2f1c3fbdff84",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Kyle Ctr Portlaoise",
            "uuid": "001e5248-9172-4e69-a830-58c0aee3ae0d",
            "in_line_address": ""
        },
        {
            "name": "Dunnes MAYNOOTH",
            "uuid": "894b71db-7cac-47d1-939f-d3fc69820834",
            "in_line_address": ""
        },
        {
            "name": "Dunnes NAAS",
            "uuid": "29e1cae7-0397-475a-8aea-690cc4f42727",
            "in_line_address": ""
        },
        {
            "name": "Dunnes NCR Tralee",
            "uuid": "14c5fa0e-b361-4942-b2ac-025d929fd794",
            "in_line_address": ""
        },
        {
            "name": "Dunnes NEWBRIDGE",
            "uuid": "0178ee59-4555-4e3a-bf4f-f157d7862515",
            "in_line_address": ""
        },
        {
            "name": "Dunnes NORTHSIDE COOLOCK",
            "uuid": "96b4d719-41db-4430-86ba-8955da3e7e6d",
            "in_line_address": ""
        },
        {
            "name": "Dunnes ONGAR",
            "uuid": "df867448-8f27-4eda-b2af-d8dc4869cc83",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Parkway Limerick",
            "uuid": "ad1b41a8-87bb-4763-be57-78410d38e678",
            "in_line_address": ""
        },
        {
            "name": "Dunnes PORTMARNOCK",
            "uuid": "f4cae26a-4238-4c60-b76d-029307884e68",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Redmond Sq Wexford",
            "uuid": "a690e79d-341b-471f-97d9-e547e1ad4ca5",
            "in_line_address": ""
        },
        {
            "name": "Dunnes SWORDS PAVILION",
            "uuid": "bb144716-fdf4-46b9-9067-a3a51b86236c",
            "in_line_address": ""
        },
        {
            "name": "Dunnes TALLAGHT",
            "uuid": "7070cfbb-84eb-4c19-b5e5-29cf81c6f6f1",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Terryland",
            "uuid": "99713228-9bbd-42a8-a03a-914f4dd7faa3",
            "in_line_address": ""
        },
        {
            "name": "Dunnes Westside",
            "uuid": "28479a12-83d7-4151-834e-0b3b4f229371",
            "in_line_address": ""
        },
        {
            "name": "Feeding Hong Kong demodonor",
            "uuid": "0139bccf-56ac-4ea6-bdb8-1b8133990ce9",
            "in_line_address": ""
        },
        {
            "name": "FoodCloud branch 1",
            "uuid": "fbaf899a-c360-4dee-8618-a0bfefd8bace",
            "in_line_address": ""
        },
        {
            "name": "FoodCloud Cork",
            "uuid": "0081b9b4-0eba-449a-9248-40918e684635",
            "in_line_address": ""
        },
        {
            "name": "FoodCloud Dublin",
            "uuid": "366507f1-185d-4b5c-8dab-25c4db0fac2f",
            "in_line_address": ""
        },
        {
            "name": "FoodCloud Galway City",
            "uuid": "00e5ae18-8e76-41eb-aee5-fa6b91f4d42b",
            "in_line_address": ""
        },
        {
            "name": "FoodCloud Plus - Cork",
            "uuid": "27d622df-223b-4d20-8160-0c89a3a216d7",
            "in_line_address": ""
        },
        {
            "name": "FoodCloud Plus - Dublin A",
            "uuid": "25346a5b-c243-4dc7-a3d3-1d094b3e298e",
            "in_line_address": ""
        },
        {
            "name": "FoodCloud Plus - Dublin B",
            "uuid": "d35f4326-af22-47a0-9f7e-4acc745a14a9",
            "in_line_address": ""
        },
        {
            "name": "FoodCloud Plus - Dublin C",
            "uuid": "2ebe8d06-4d04-4657-9969-494a73e37f34",
            "in_line_address": ""
        },
        {
            "name": "FoodCloud Wicklow",
            "uuid": "1173fde4-4843-4c7c-83b6-5afb83d6f642",
            "in_line_address": ""
        },
        {
            "name": "James test user branch",
            "uuid": "af453971-177c-4528-9db3-e8e3226fe09e",
            "in_line_address": ""
        },
        {
            "name": "Kepak Blanchardstown",
            "uuid": "dfb86244-4f65-4646-98b1-899d83e53b8c",
            "in_line_address": ""
        },
        {
            "name": "KFC Athlone - Dublin Road",
            "uuid": "05d0b564-1e46-4793-8322-0727525aabf8",
            "in_line_address": ""
        },
        {
            "name": "KFC Bundoran",
            "uuid": "ef741ad5-4e63-4bb0-8921-967f454ff7ca",
            "in_line_address": ""
        },
        {
            "name": "KFC Carlow",
            "uuid": "2ae0a853-147b-45b4-97c0-38dd47f04742",
            "in_line_address": ""
        },
        {
            "name": "KFC Cavan - Lakeland Retail Park",
            "uuid": "f7ddc596-827d-46e9-bb53-bfabc5e348b7",
            "in_line_address": ""
        },
        {
            "name": "KFC Clonmel - Poppyfields Retail Park",
            "uuid": "3f74c522-ab51-4a5e-9f8a-4e96eb23f8d1",
            "in_line_address": ""
        },
        {
            "name": "KFC Cork - Douglas Court",
            "uuid": "27dcb946-4dd4-4c39-9a46-d81e791241cf",
            "in_line_address": ""
        },
        {
            "name": "KFC Cork - East Gate Retail Park",
            "uuid": "d1f6c950-58ca-4ea1-a9aa-57c58354eba8",
            "in_line_address": ""
        },
        {
            "name": "KFC Drogheda",
            "uuid": "aad88232-2d4d-4b78-b49c-3e138f836ab2",
            "in_line_address": ""
        },
        {
            "name": "KFC Dublin - Blanchards Town",
            "uuid": "4a43b337-3b87-4171-8a3e-5df80aea78fc",
            "in_line_address": ""
        },
        {
            "name": "KFC Dublin - Carrickmines Retail Park",
            "uuid": "c52d40d0-15f9-47f2-a986-3e52cc5e76d6",
            "in_line_address": ""
        },
        {
            "name": "KFC Dublin - Charlestown Shopping Centre",
            "uuid": "6c9fbfd5-8bd7-41b1-b3f9-5251e134efcc",
            "in_line_address": ""
        },
        {
            "name": "KFC Dublin - Clondalkin Lidl Retail Park",
            "uuid": "7a037a45-4899-4a37-8c5c-f93da5d20b92",
            "in_line_address": ""
        },
        {
            "name": "KFC Dublin - Dundrum",
            "uuid": "5149c509-6fdd-4daa-8458-00e5e24d87b1",
            "in_line_address": ""
        },
        {
            "name": "KFC Dublin - Jervis Centre",
            "uuid": "78fe6577-8b19-4b7e-873d-c4bd2948b4e8",
            "in_line_address": ""
        },
        {
            "name": "KFC Dublin - Liffey Valley Shopping Centre",
            "uuid": "7f1e2259-d0c1-4f75-be1a-d624e29b5f08",
            "in_line_address": ""
        },
        {
            "name": "KFC Dublin - Northside Shopping Centre",
            "uuid": "5e0e9912-1194-4b47-abf2-a80cb819569b",
            "in_line_address": ""
        },
        {
            "name": "KFC Dublin - Parnell Street",
            "uuid": "e636bb6b-60bd-451a-b297-a13eec330edf",
            "in_line_address": ""
        },
        {
            "name": "KFC Dublin - Westmoreland Street",
            "uuid": "25bc323e-32de-4519-b09b-c9390ef99aa6",
            "in_line_address": ""
        },
        {
            "name": "KFC Dublin Blanchards Centre",
            "uuid": "e3c748a8-f4c3-48e2-a7c6-89e06f1e92f1",
            "in_line_address": ""
        },
        {
            "name": "KFC Dundalk - Marshes Shopping Centre",
            "uuid": "19856e72-6515-40e1-bd76-49ab041098b8",
            "in_line_address": ""
        },
        {
            "name": "KFC Dundalk Retail Park",
            "uuid": "ec06bb08-c33c-487e-8679-a0e283ab82d4",
            "in_line_address": ""
        },
        {
            "name": "KFC Galway - Briar Hill Shopping Centre",
            "uuid": "1ed1e605-8850-4472-b4b5-f6630bab5279",
            "in_line_address": ""
        },
        {
            "name": "KFC Kilkenny Retail Park",
            "uuid": "401bc967-876c-4a48-a845-72f76b14abbc",
            "in_line_address": ""
        },
        {
            "name": "KFC Letterkenny - Port Road",
            "uuid": "edee4fe8-77cc-4688-9c9e-76d245ad6f95",
            "in_line_address": ""
        },
        {
            "name": "KFC Liffey Valley Fonthill Road",
            "uuid": "a6e3400f-d2cd-49de-88cc-c7a84368c464",
            "in_line_address": ""
        },
        {
            "name": "KFC Limerick - Childers Retail Park",
            "uuid": "21b119e7-d9ef-4c9d-8cb8-e2b9f2cb9ef8",
            "in_line_address": ""
        },
        {
            "name": "KFC Limerick - Crescent Shopping Centre",
            "uuid": "c0a8da3c-788c-4414-9b2f-f897ee5001c8",
            "in_line_address": ""
        },
        {
            "name": "KFC Limerick - Ennis Road",
            "uuid": "89188dd2-ba20-44ef-89dc-9dd270791a90",
            "in_line_address": ""
        },
        {
            "name": "KFC Moto Wetherby*",
            "uuid": "2491faef-42e4-404a-825b-252087a89efa",
            "in_line_address": ""
        },
        {
            "name": "KFC Newbridge - Edward Street",
            "uuid": "39396100-63b2-46f4-ad52-2d7feb7e4afd",
            "in_line_address": ""
        },
        {
            "name": "KFC Newbridge - Whitewater Shopping Centre",
            "uuid": "67565800-4795-41d4-b90d-0e70e9df9e4e",
            "in_line_address": ""
        },
        {
            "name": "KFC Rugby - Leicester Road Retail Park",
            "uuid": "9601253c-aeee-43f9-b6f9-e854b257ba68",
            "in_line_address": ""
        },
        {
            "name": "KFC Sligo - Dublin Road",
            "uuid": "b922d771-5c53-4a26-8eb6-d90252e4e513",
            "in_line_address": ""
        },
        {
            "name": "KFC Tallaght - The Square Shopping Centre",
            "uuid": "40b2f863-1a09-4861-8002-1e35b77531d1",
            "in_line_address": ""
        },
        {
            "name": "KFC Waterford - Ardkeen Retail Park",
            "uuid": "dd5b0e48-95d8-43a9-8d48-34e5e02802e6",
            "in_line_address": ""
        },
        {
            "name": "KFC Wetherby - A1M Services",
            "uuid": "51cc7732-b778-456c-8259-348cfdd88d21",
            "in_line_address": ""
        },
        {
            "name": "KFC Wexford Retail Park",
            "uuid": "71a5f852-b274-4ddc-a7e3-004c1f4dbb5e",
            "in_line_address": ""
        },
        {
            "name": "Lidl Andersonstown",
            "uuid": "3389261a-b48d-440f-911a-38556e6a7b28",
            "in_line_address": ""
        },
        {
            "name": "Lidl Antrim-Junction One",
            "uuid": "7a840acf-3962-4627-9d93-e0d2d99cd06d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ardee",
            "uuid": "652bba58-73cd-49f5-ab11-9c9e220a1df6",
            "in_line_address": ""
        },
        {
            "name": "Lidl Arklow",
            "uuid": "1f1b1b1c-8707-4d0c-9ba0-38f1cb3eea87",
            "in_line_address": ""
        },
        {
            "name": "Lidl Armagh",
            "uuid": "d26c9f63-6070-47da-8a47-303843f4a291",
            "in_line_address": ""
        },
        {
            "name": "Lidl Artane",
            "uuid": "af653e38-0d4d-40dc-81ee-406c62fed094",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ashbourne",
            "uuid": "27016705-152b-45da-a3b3-45881796b658",
            "in_line_address": ""
        },
        {
            "name": "Lidl Athlone",
            "uuid": "cda29456-382c-4f6e-acf9-777b07f102bd",
            "in_line_address": ""
        },
        {
            "name": "Lidl Athy",
            "uuid": "86768e08-7f90-4f0f-b0d7-5ee6bc21be59",
            "in_line_address": ""
        },
        {
            "name": "Lidl Aungier Street",
            "uuid": "c6ca04b6-0205-4e1d-8308-1cbc1301d017",
            "in_line_address": ""
        },
        {
            "name": "Lidl Bagenalstown",
            "uuid": "6cdfd240-a202-4518-ac80-ea02285fd724",
            "in_line_address": ""
        },
        {
            "name": "Lidl Balbriggan",
            "uuid": "42d77a60-adf1-4a1c-a0d8-68da8f58e853",
            "in_line_address": ""
        },
        {
            "name": "Lidl Baldoyle",
            "uuid": "2e8724ab-5ab4-4a78-98dc-58a441ac1e6d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballina",
            "uuid": "ada75040-fbb1-4ca2-9217-267a7f4352ff",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballina (Bohernasup)",
            "uuid": "72727804-03d5-4736-b423-44d6a21d8912",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballinasloe",
            "uuid": "3612365a-3535-4171-a8ea-83f3c8b13658",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballincollig - West City Retail Park",
            "uuid": "de21c799-6878-4af8-b9dd-675975a8ad0c",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballybofey",
            "uuid": "4ba22d9a-c142-4a76-9c44-c70da01ffdbd",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballyclare",
            "uuid": "404b5963-329f-47ff-b640-550e8b469c95",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballycullen",
            "uuid": "5fd31c12-bfad-4d11-99f8-1a6f45679f33",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballyfermot",
            "uuid": "295e3f79-9893-4000-93f1-da7a5364d189",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballymena",
            "uuid": "5a9003d6-addf-4021-b8bf-121bb084ce65",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballymoney",
            "uuid": "95b0f664-5d06-45cf-b161-5b32f52da9b6",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballymun",
            "uuid": "24a93328-536a-482b-a729-73f3991da280",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballynahinch",
            "uuid": "b360d779-e8b1-40c5-8d0f-5984977471e0",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballyowen",
            "uuid": "1638637d-48d2-400a-99db-43c38590bc84",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ballyvolane",
            "uuid": "a789e9dc-9989-45e7-8535-a78b48486084",
            "in_line_address": ""
        },
        {
            "name": "Lidl Banbridge",
            "uuid": "c9a98d48-a536-4422-919d-617bf009ea0e",
            "in_line_address": ""
        },
        {
            "name": "Lidl Bandon",
            "uuid": "f5726f22-b71e-4bbb-84a0-504fa07c2ac0",
            "in_line_address": ""
        },
        {
            "name": "Lidl Bangor",
            "uuid": "83dda641-7408-4d9c-9b22-1058a295f8f9",
            "in_line_address": ""
        },
        {
            "name": "Lidl Bantry",
            "uuid": "522edf32-6b26-45ee-9934-405b8e2075e5",
            "in_line_address": ""
        },
        {
            "name": "Lidl Belfast - Boucher Road",
            "uuid": "88c8f53c-7bc8-4f28-a33a-0f44fb68821e",
            "in_line_address": ""
        },
        {
            "name": "Lidl Belfast - Crumlin Road",
            "uuid": "1fe9a4d5-fe85-4418-a3ac-8e2010b04118",
            "in_line_address": ""
        },
        {
            "name": "Lidl Belfast - Holywood Exchange",
            "uuid": "87f9e1fd-a9b4-4cf0-ab09-03dea7c51de6",
            "in_line_address": ""
        },
        {
            "name": "Lidl Belfast-High Street",
            "uuid": "8be971ab-24fa-4233-81a2-df5fa370107a",
            "in_line_address": ""
        },
        {
            "name": "Lidl Belgard",
            "uuid": "cfc7139b-fe8c-4eb4-a120-f9717a49e5a2",
            "in_line_address": ""
        },
        {
            "name": "Lidl Bettystown",
            "uuid": "9a758f11-af0a-4513-a11e-62206dd9b905",
            "in_line_address": ""
        },
        {
            "name": "Lidl Birr",
            "uuid": "a0adae25-c730-423b-831c-a471ab9b9bbb",
            "in_line_address": ""
        },
        {
            "name": "Lidl Blakestown",
            "uuid": "c5c414af-c30f-48c2-b0de-fd8fadbca45c",
            "in_line_address": ""
        },
        {
            "name": "Lidl Blanchardstown",
            "uuid": "6c879cbe-a5fd-4dfb-9860-e71f1dff78d2",
            "in_line_address": ""
        },
        {
            "name": "Lidl Bray",
            "uuid": "0724d2c6-7fbb-4f78-bb51-5409988497a3",
            "in_line_address": ""
        },
        {
            "name": "Lidl Bray - Boghall Road",
            "uuid": "a1842788-5e96-4ef4-bdcd-4e018b8db9c7",
            "in_line_address": ""
        },
        {
            "name": "Lidl Buncrana",
            "uuid": "fc89a2c5-e05c-436c-b456-826d1ebf33db",
            "in_line_address": ""
        },
        {
            "name": "Lidl Bundoran",
            "uuid": "e90ebea3-bf8e-458c-bc7d-3a53eca89931",
            "in_line_address": ""
        },
        {
            "name": "Lidl Cabra",
            "uuid": "c068d850-55b9-4f49-ad9b-dcc84072ea32",
            "in_line_address": ""
        },
        {
            "name": "Lidl Carlow",
            "uuid": "85654d5c-5048-4875-965f-896b2a299fc0",
            "in_line_address": ""
        },
        {
            "name": "Lidl Carndonagh",
            "uuid": "ce7018e6-f4d5-44dd-9212-281c9dbe9ab4",
            "in_line_address": ""
        },
        {
            "name": "Lidl Carrick-On-Shannon",
            "uuid": "0156aa98-90d4-436b-881f-394b9697cfe6",
            "in_line_address": ""
        },
        {
            "name": "Lidl Carrick-on-Suir",
            "uuid": "6a324881-14ac-4d4c-8984-fc9b61886135",
            "in_line_address": ""
        },
        {
            "name": "Lidl Carrickfergus",
            "uuid": "9ad4f14a-1977-4e47-a80a-2b450152edb6",
            "in_line_address": ""
        },
        {
            "name": "Lidl Carrickmacross",
            "uuid": "d096d431-d76a-49a1-b3e3-f7c38b38df6f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Carrigaline",
            "uuid": "841ce43b-52f7-41e3-84a0-febe3ebbf538",
            "in_line_address": ""
        },
        {
            "name": "Lidl Carryduff",
            "uuid": "1536f899-984f-467d-a8cf-86aee04d248f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Cashel",
            "uuid": "9615064f-c38e-437e-9deb-bbdca77d0aad",
            "in_line_address": ""
        },
        {
            "name": "Lidl Castlebar",
            "uuid": "01be759a-8183-4394-af3c-9a3267622dcd",
            "in_line_address": ""
        },
        {
            "name": "Lidl Castleblaney",
            "uuid": "b38306dc-30a3-4483-ae6e-132381bcb537",
            "in_line_address": ""
        },
        {
            "name": "Lidl Castleisland",
            "uuid": "42d81a86-a75f-4898-9e5f-59116b7dd258",
            "in_line_address": ""
        },
        {
            "name": "Lidl Castleknock",
            "uuid": "72985359-54fc-43e3-a88b-ade91eb97518",
            "in_line_address": ""
        },
        {
            "name": "Lidl Castlerea",
            "uuid": "abc49e84-df1d-4f01-92b0-1357b19a52c1",
            "in_line_address": ""
        },
        {
            "name": "Lidl Castlereagh",
            "uuid": "65c32068-37cc-4403-890e-491fc8cb61b2",
            "in_line_address": ""
        },
        {
            "name": "Lidl Cavan",
            "uuid": "97b7b7c6-d5e8-45e8-b93c-c70f567ac717",
            "in_line_address": ""
        },
        {
            "name": "Lidl Celbridge",
            "uuid": "4d4d71d5-ba83-4ac1-9b9a-f511d164b993",
            "in_line_address": ""
        },
        {
            "name": "Lidl Charleville",
            "uuid": "ee226c36-551f-4317-a2c5-62629a814952",
            "in_line_address": ""
        },
        {
            "name": "Lidl Churchfield",
            "uuid": "2513b5a0-f805-46e2-a16a-1400757cf74e",
            "in_line_address": ""
        },
        {
            "name": "Lidl Clane",
            "uuid": "c8498fce-0d55-4bd0-bb13-586b976165b7",
            "in_line_address": ""
        },
        {
            "name": "Lidl Claremorris",
            "uuid": "96965eed-d41f-45ce-b59b-ef8026bfb1ec",
            "in_line_address": ""
        },
        {
            "name": "Lidl Clifden",
            "uuid": "90d664d6-d4b7-473b-828d-bf1a2bf1650f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Clonakilty",
            "uuid": "ba4f0168-cc38-4936-be43-702fbde5efb4",
            "in_line_address": ""
        },
        {
            "name": "Lidl Clondalkin",
            "uuid": "83d3b4d3-e303-44f2-a1e2-d3c98d90ff25",
            "in_line_address": ""
        },
        {
            "name": "Lidl Clonee",
            "uuid": "9277a6bc-fb0f-48e0-8d28-b8da853f51c9",
            "in_line_address": ""
        },
        {
            "name": "Lidl Clonmel",
            "uuid": "b2aef1c7-16e1-4a58-a720-cf4ac53260c3",
            "in_line_address": ""
        },
        {
            "name": "Lidl Clonmel - Queen Street",
            "uuid": "0a6f4cab-8666-46d3-a5a3-1c6eff5d6f77",
            "in_line_address": ""
        },
        {
            "name": "Lidl Clonshaugh",
            "uuid": "85d28caf-43c4-4a61-b889-88a5e5fe4b98",
            "in_line_address": ""
        },
        {
            "name": "Lidl Clonsilla",
            "uuid": "a5398918-6a41-4cd8-b7bf-5fe7cd6e396c",
            "in_line_address": ""
        },
        {
            "name": "Lidl Cobh",
            "uuid": "d049f527-e75d-4ebb-9c08-fce043ef983d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Coleraine (Riverside Park)",
            "uuid": "c5a07a27-6f83-4ad0-bf7d-1b0ad5112685",
            "in_line_address": ""
        },
        {
            "name": "Lidl Connswater",
            "uuid": "9e151d9a-3d94-493b-aa41-abb32fb0c34f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Cookstown",
            "uuid": "fb822ed4-eadf-4a40-8a15-019047c19b5a",
            "in_line_address": ""
        },
        {
            "name": "Lidl Coolock",
            "uuid": "baea2173-5f3e-445f-9363-c393707ae73d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Cork - Cornmarket",
            "uuid": "bb8b50d1-ff09-4877-a7fc-7a2888ed74af",
            "in_line_address": ""
        },
        {
            "name": "Lidl Cork Street",
            "uuid": "d77adda8-7cb7-4cda-8a59-492ab7e22a8e",
            "in_line_address": ""
        },
        {
            "name": "Lidl Craigavon",
            "uuid": "2250dec0-5a0d-4ea8-89df-5d8388dff2c1",
            "in_line_address": ""
        },
        {
            "name": "Lidl Deansgrange",
            "uuid": "f0679e59-442a-4898-b195-b0847b1cb978",
            "in_line_address": ""
        },
        {
            "name": "Lidl Derry",
            "uuid": "6439ff0f-1171-4ced-9142-fb7f2f63f615",
            "in_line_address": ""
        },
        {
            "name": "Lidl Derry - Buncrana Road",
            "uuid": "51d97cc1-21d3-4543-af39-5d3f53a932f2",
            "in_line_address": ""
        },
        {
            "name": "Lidl Derry - Crescent Link",
            "uuid": "5a8f7d5a-f70b-4432-9740-b4433c5b1fc9",
            "in_line_address": ""
        },
        {
            "name": "Lidl Dingle",
            "uuid": "f4d66197-28c9-465a-afec-aaf52cd94be3",
            "in_line_address": ""
        },
        {
            "name": "Lidl Donegal",
            "uuid": "31c2b799-15e2-4f79-bcbe-2c20e12c889d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Downpatrick",
            "uuid": "cecf11ad-8980-4ec4-a691-a81b781ea4fa",
            "in_line_address": ""
        },
        {
            "name": "Lidl Drogheda",
            "uuid": "62bd20db-fe7d-47ee-85e4-404dd0163d1f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Drogheda M1",
            "uuid": "d127fae5-bde7-4143-8620-1c07062f4538",
            "in_line_address": ""
        },
        {
            "name": "Lidl Drumcondra",
            "uuid": "fb98bc47-1de1-4482-868e-07c34bcb5c17",
            "in_line_address": ""
        },
        {
            "name": "Lidl Dublin - Kilcarbery",
            "uuid": "00fdf62d-32dd-4761-8f2c-e8fb1c452500",
            "in_line_address": ""
        },
        {
            "name": "Lidl Dublin - Newcastle",
            "uuid": "24a3a412-4a19-43dc-bde7-19136688b564",
            "in_line_address": ""
        },
        {
            "name": "Lidl Dundalk (Avenue Road)",
            "uuid": "88e6baf5-866c-4c3b-a012-412a5396003e",
            "in_line_address": ""
        },
        {
            "name": "Lidl Dundalk (St. Helena's Quay)",
            "uuid": "a4d09f06-5538-4c7f-b5e2-b29435e2ec2d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Dundonald",
            "uuid": "d61ec62b-f390-4436-919d-d7b7df4d869d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Dundrum",
            "uuid": "22ff0640-a3f0-42f9-9e42-e659d3fdee0b",
            "in_line_address": ""
        },
        {
            "name": "Lidl Dungannon",
            "uuid": "c2d51cbe-07e3-4a07-8d37-c054972ffd76",
            "in_line_address": ""
        },
        {
            "name": "Lidl Dungarvan",
            "uuid": "042ddbcc-c76e-484b-8fdd-6ac92be9fdaa",
            "in_line_address": ""
        },
        {
            "name": "Lidl Dungloe",
            "uuid": "de1de47f-3672-4505-a63f-204078828170",
            "in_line_address": ""
        },
        {
            "name": "Lidl Dunshaughlin",
            "uuid": "6f8d83cf-6f2f-4cff-9ba1-ee8f71df2901",
            "in_line_address": ""
        },
        {
            "name": "Lidl East Wall",
            "uuid": "c86204e8-2db2-4d05-8c9b-fb203b0e5c23",
            "in_line_address": ""
        },
        {
            "name": "Lidl Edenderry",
            "uuid": "4820e480-ad1d-4bcc-a86a-31c2b8aca1a9",
            "in_line_address": ""
        },
        {
            "name": "Lidl Enfield",
            "uuid": "3b74eaaf-65f0-47f2-8e4e-30f33e4c7734",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ennis",
            "uuid": "41d4156f-e3f5-4d6b-b75d-1a9500727640",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ennis Road-Caherdavin",
            "uuid": "c781e7bc-d880-4894-be0c-37d52f6edc6d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Enniscorthy",
            "uuid": "420998c9-85dc-42fd-af36-83d43c3a1918",
            "in_line_address": ""
        },
        {
            "name": "Lidl Enniskillen",
            "uuid": "a99faa2e-6d15-4588-9917-930c29b8cac8",
            "in_line_address": ""
        },
        {
            "name": "Lidl Fermoy",
            "uuid": "3bf1e326-8ca8-4074-b2ab-26bded641f56",
            "in_line_address": ""
        },
        {
            "name": "Lidl Finglas",
            "uuid": "35aebc30-541e-4593-bca5-0b2ab7f45829",
            "in_line_address": ""
        },
        {
            "name": "Lidl Fonthill",
            "uuid": "8ff75e2a-b9d1-4b9e-831d-e1c9dc6a8c68",
            "in_line_address": ""
        },
        {
            "name": "Lidl Fortunestown",
            "uuid": "bb05794f-4f4f-476f-80ce-dd6a45180f3e",
            "in_line_address": ""
        },
        {
            "name": "Lidl Galway - Doughiska",
            "uuid": "26378fd7-9c14-4478-993a-d237db98d1ca",
            "in_line_address": ""
        },
        {
            "name": "Lidl Galway - Wellpark",
            "uuid": "645f5b09-ae35-4e68-a2d9-8a2d77aae053",
            "in_line_address": ""
        },
        {
            "name": "Lidl Galway - Western Distributor Rd",
            "uuid": "873476a8-7b1d-4cfd-aa65-10f074c92808",
            "in_line_address": ""
        },
        {
            "name": "Lidl Galway-Headford Road",
            "uuid": "421d07e4-5e3b-40d9-b9dc-3d1c6f758a9a",
            "in_line_address": ""
        },
        {
            "name": "Lidl Glanmire",
            "uuid": "dd7723eb-7294-4118-8353-f8754a4d3067",
            "in_line_address": ""
        },
        {
            "name": "Lidl Glasnevin",
            "uuid": "aeb1ed2b-f899-4441-aeff-094c4cf521c1",
            "in_line_address": ""
        },
        {
            "name": "Lidl Glenageary",
            "uuid": "6a2c82c0-61b8-4782-bcd1-8e550066efe2",
            "in_line_address": ""
        },
        {
            "name": "Lidl Gorey",
            "uuid": "d4afcc7c-0cba-49b0-8318-2624ec8e0e9b",
            "in_line_address": ""
        },
        {
            "name": "Lidl Gort",
            "uuid": "21e7769e-a4e0-46d2-ba65-32fb573c42af",
            "in_line_address": ""
        },
        {
            "name": "Lidl Grangegorman",
            "uuid": "24ba5ea2-1cd7-4d55-97ff-a8dbc5f8e574",
            "in_line_address": ""
        },
        {
            "name": "Lidl Greenhills Road",
            "uuid": "74a74cb0-c4bf-404b-a4e9-3f4d1e7eed0b",
            "in_line_address": ""
        },
        {
            "name": "Lidl Greystones",
            "uuid": "5f8f3d25-172d-4595-827a-0ca4620736e6",
            "in_line_address": ""
        },
        {
            "name": "Lidl Gulliver's Retail Park",
            "uuid": "10efbabd-e2ef-4fac-ac9c-c8c561b28fa8",
            "in_line_address": ""
        },
        {
            "name": "Lidl Kanturk",
            "uuid": "a5371d70-fc09-4e58-aa40-9fabca8765e3",
            "in_line_address": ""
        },
        {
            "name": "Lidl Kenmare",
            "uuid": "1ed3c437-64dc-4061-910a-5b96aa199b3c",
            "in_line_address": ""
        },
        {
            "name": "Lidl Kilcock",
            "uuid": "d20e2c6e-39ad-405a-a8c3-ca9684343e80",
            "in_line_address": ""
        },
        {
            "name": "Lidl Kildare",
            "uuid": "fbdeae74-75a0-46d7-b023-b878aac5baa9",
            "in_line_address": ""
        },
        {
            "name": "Lidl Kilkenny (Johnswell Road)",
            "uuid": "317b6179-e6f4-4151-9534-fa8738b9053f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Kilkenny (Waterford Road)",
            "uuid": "ba3f734a-876a-4393-8618-5ec9035070a8",
            "in_line_address": ""
        },
        {
            "name": "Lidl Killarney",
            "uuid": "7dec4fc5-d604-4a48-b442-b65137a052ba",
            "in_line_address": ""
        },
        {
            "name": "Lidl Kinsale",
            "uuid": "6afb1cca-4d83-4fc6-a8db-cbe5fe8cff9e",
            "in_line_address": ""
        },
        {
            "name": "Lidl Larne",
            "uuid": "c4e75226-45ff-4f18-ba3e-f85bdfb145ca",
            "in_line_address": ""
        },
        {
            "name": "Lidl Leixlip",
            "uuid": "990d2629-bc23-44a3-a748-75d9a79af63b",
            "in_line_address": ""
        },
        {
            "name": "Lidl Letterkenny (Pearse Road)",
            "uuid": "c9027675-a67f-4712-a39f-592ff8417c65",
            "in_line_address": ""
        },
        {
            "name": "Lidl Letterkenny (Port Road)",
            "uuid": "5600346e-cd0c-4653-817b-18fc7851a652",
            "in_line_address": ""
        },
        {
            "name": "Lidl Limavady",
            "uuid": "6f1393ad-f66d-4c1c-a626-e02739fc9172",
            "in_line_address": ""
        },
        {
            "name": "Lidl Limerick - Ballysimon",
            "uuid": "e21d0001-6f5c-4188-a3a3-c78f8b18f1e8",
            "in_line_address": ""
        },
        {
            "name": "Lidl Limerick - Corbally Road",
            "uuid": "7cd1901d-a3cf-4c97-ad06-5694ddac215f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Limerick - Dock Road",
            "uuid": "1e8d40cb-af0e-416a-81b0-ca2e835c4728",
            "in_line_address": ""
        },
        {
            "name": "Lidl Limerick - Dublin Rd",
            "uuid": "37c63d5d-4915-4ea0-98ca-83827c739215",
            "in_line_address": ""
        },
        {
            "name": "Lidl Limerick-Punches Cross",
            "uuid": "c7e7d8fc-a588-4738-8ca4-ff872bd9db2f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Lisburn (Moira Rd)",
            "uuid": "bf907ff0-300f-459c-9c0e-54a1ad096f3d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Lisburn (P William Rd)",
            "uuid": "ce2a6c25-61db-4ad5-8d23-ebaf07434456",
            "in_line_address": ""
        },
        {
            "name": "Lidl Lisnaskea",
            "uuid": "acbe3928-1422-43d5-90a2-e7cba5293f2c",
            "in_line_address": ""
        },
        {
            "name": "Lidl Listowel",
            "uuid": "7cddd413-9a09-4740-85b0-3805f692c77a",
            "in_line_address": ""
        },
        {
            "name": "Lidl Longford - Dublin Road",
            "uuid": "f25297bc-03c1-484b-a0af-de2eea83ebc8",
            "in_line_address": ""
        },
        {
            "name": "Lidl Lurgan",
            "uuid": "1ccac455-c6cb-4a0c-9b72-d34ad81ed02f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Lusk",
            "uuid": "1e83193f-78e6-49aa-9934-9010ea32545d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Macroom",
            "uuid": "07c537c3-e600-40e3-93ef-9b4c7815fd63",
            "in_line_address": ""
        },
        {
            "name": "Lidl Magherafelt",
            "uuid": "6f5f11eb-6b69-4473-aa81-729824a6121b",
            "in_line_address": ""
        },
        {
            "name": "Lidl Mallow",
            "uuid": "98c4194f-3fd2-4914-a179-734a1dd05703",
            "in_line_address": ""
        },
        {
            "name": "Lidl Maynooth",
            "uuid": "0dc40cd2-f0ef-4810-9695-e14cdada7d28",
            "in_line_address": ""
        },
        {
            "name": "Lidl Merchandise Centre",
            "uuid": "c0607eb8-97a8-427a-82b3-381775256ab3",
            "in_line_address": ""
        },
        {
            "name": "Lidl Midleton",
            "uuid": "c275d04f-95ba-421c-89e2-de1a9d88a0bf",
            "in_line_address": ""
        },
        {
            "name": "Lidl Milford",
            "uuid": "e58aba4f-e317-4d91-965f-b33bce4e5300",
            "in_line_address": ""
        },
        {
            "name": "Lidl Mitchelstown",
            "uuid": "0a6e288e-d690-4863-bacc-a2cfa89ea44a",
            "in_line_address": ""
        },
        {
            "name": "Lidl Monaghan",
            "uuid": "8c6f6de6-22b2-4e16-9277-be39ecf55061",
            "in_line_address": ""
        },
        {
            "name": "Lidl Moore Street",
            "uuid": "3814e3f2-9e58-4368-b88e-b4317f2428d0",
            "in_line_address": ""
        },
        {
            "name": "Lidl Moycullen",
            "uuid": "4559de95-a13a-44df-88bd-00ce21dac575",
            "in_line_address": ""
        },
        {
            "name": "Lidl Mullingar (Dublin Road)",
            "uuid": "35c262f8-4c99-40b9-a6c9-419387d4f57b",
            "in_line_address": ""
        },
        {
            "name": "Lidl Mullingar (Patrick Street)",
            "uuid": "4d473fb8-b3b1-46eb-9d0e-fb8be7ec588c",
            "in_line_address": ""
        },
        {
            "name": "Lidl Naas",
            "uuid": "80e77ef1-7201-486c-95c7-c44202ea566f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Navan",
            "uuid": "000a99a1-0b63-4a5d-92be-da2517dd73dd",
            "in_line_address": ""
        },
        {
            "name": "Lidl Nenagh",
            "uuid": "72aea9d2-57de-4b42-9411-b4f92670ad00",
            "in_line_address": ""
        },
        {
            "name": "Lidl New Ross",
            "uuid": "1896ce4d-857c-40e2-a9a1-e6cf199eb471",
            "in_line_address": ""
        },
        {
            "name": "Lidl Newbridge",
            "uuid": "456ceec6-4b75-49a0-ad35-554ed64e56e5",
            "in_line_address": ""
        },
        {
            "name": "Lidl Newcastle",
            "uuid": "ed1aba4a-a9b4-4629-b143-623977e62f41",
            "in_line_address": ""
        },
        {
            "name": "Lidl Newcastle West",
            "uuid": "969b6ea4-8e7e-487f-b98a-4eeb4592d2df",
            "in_line_address": ""
        },
        {
            "name": "Lidl Newry",
            "uuid": "aad808ff-72cb-4e9f-ab6d-26a0aca219f1",
            "in_line_address": ""
        },
        {
            "name": "Lidl Newry - Buttercrane Quay",
            "uuid": "f7424864-1835-46ab-8393-5bb1667dd4f4",
            "in_line_address": ""
        },
        {
            "name": "Lidl Newry-Damolly",
            "uuid": "2e4fe13c-7f53-4123-9d3b-ffb557298837",
            "in_line_address": ""
        },
        {
            "name": "Lidl Newtownabbey",
            "uuid": "4cf01c20-84bc-4202-92d5-9d5ddbf1c32b",
            "in_line_address": ""
        },
        {
            "name": "Lidl Newtownards",
            "uuid": "b9f1259e-c620-4b89-85dc-ce48acc3fde0",
            "in_line_address": ""
        },
        {
            "name": "Lidl Nutgrove",
            "uuid": "31e702f9-0c73-4c93-832f-24b7fa4ab1c7",
            "in_line_address": ""
        },
        {
            "name": "Lidl Omagh",
            "uuid": "60d79a0d-5492-43c2-86f4-c24bb305dcdf",
            "in_line_address": ""
        },
        {
            "name": "Lidl Oranmore",
            "uuid": "9532eed9-851a-4edd-8b87-294a88d9be3b",
            "in_line_address": ""
        },
        {
            "name": "Lidl Pop Up",
            "uuid": "89c62a93-9368-4d27-bb36-3ec67f340128",
            "in_line_address": ""
        },
        {
            "name": "Lidl Portadown",
            "uuid": "9e6fa4cf-7e9f-4ba0-a4c6-60c068bf9e26",
            "in_line_address": ""
        },
        {
            "name": "Lidl Portarlington",
            "uuid": "eccb2f0f-bbf8-412c-aeb6-c22ca31eb69b",
            "in_line_address": ""
        },
        {
            "name": "Lidl Portlaoise",
            "uuid": "de1911ae-1349-4d97-9aa9-f830ddb62ef0",
            "in_line_address": ""
        },
        {
            "name": "Lidl Portmarnock (Strand Road)",
            "uuid": "9d8ea0de-c105-4b51-a944-5ba44934922b",
            "in_line_address": ""
        },
        {
            "name": "Lidl Portrush",
            "uuid": "19427e65-6891-4973-a353-71bc07e3555d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Pottery Road",
            "uuid": "3b9825f2-676c-44a3-9bf7-37af7b1a167f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Ranelagh",
            "uuid": "73cb4e1c-ae2a-4c3d-969b-b99b2ff42a61",
            "in_line_address": ""
        },
        {
            "name": "Lidl Rathfarnham",
            "uuid": "631629af-f6c7-4cc8-95c8-7b1f0eb9c9f0",
            "in_line_address": ""
        },
        {
            "name": "Lidl Rathmines",
            "uuid": "0630e675-06bb-4104-a034-ea64e57ec619",
            "in_line_address": ""
        },
        {
            "name": "Lidl Roscommon",
            "uuid": "aedb36da-16b0-4365-854c-3c626700dcf1",
            "in_line_address": ""
        },
        {
            "name": "Lidl Roscrea",
            "uuid": "6e69af61-3b7d-45c7-a89f-f1dd4c8c17e3",
            "in_line_address": ""
        },
        {
            "name": "Lidl Sallins",
            "uuid": "118cb6d3-1515-4840-9923-5fc3172f4307",
            "in_line_address": ""
        },
        {
            "name": "Lidl Santry",
            "uuid": "4bb2db81-3bc1-46d5-82bd-b8d566a4a3e3",
            "in_line_address": ""
        },
        {
            "name": "Lidl Shackleton",
            "uuid": "30658758-78f3-4a42-a051-a55300c72a99",
            "in_line_address": ""
        },
        {
            "name": "Lidl Shankill",
            "uuid": "833e1fdb-8ea6-4073-b92f-8d7f4f64b65f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Shannon",
            "uuid": "9edca923-0ad6-4ead-ba31-01fd6bea98da",
            "in_line_address": ""
        },
        {
            "name": "Lidl Shore Road",
            "uuid": "aaf7fe85-948e-4697-a420-bcc13c4ea03f",
            "in_line_address": ""
        },
        {
            "name": "Lidl Skibbereen",
            "uuid": "cda330c9-b5a3-4cd8-a8d3-4d5880eeff2e",
            "in_line_address": ""
        },
        {
            "name": "Lidl Sligo (Cranmore Rd)",
            "uuid": "f143d04f-ebf7-4d19-9793-fe4e931e04a3",
            "in_line_address": ""
        },
        {
            "name": "Lidl Sligo (Finisklin Rd)",
            "uuid": "1dd9767e-1692-405c-951b-710e8f5ae367",
            "in_line_address": ""
        },
        {
            "name": "Lidl Stewartstown",
            "uuid": "3fcb2d9a-9546-416d-a665-7633f3305a0c",
            "in_line_address": ""
        },
        {
            "name": "Lidl Stillorgan",
            "uuid": "fc7fff0b-db36-4929-ad59-0e9f11910feb",
            "in_line_address": ""
        },
        {
            "name": "Lidl Strabane",
            "uuid": "5124aff1-72f1-4743-abef-b6520b56aa47",
            "in_line_address": ""
        },
        {
            "name": "Lidl Swords (Dublin Road)",
            "uuid": "fd176bb0-c11c-45ed-9ec4-849151aeb62d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Swords (Rathbeale Road)",
            "uuid": "bb0ca551-e746-417b-9bba-796deaad37af",
            "in_line_address": ""
        },
        {
            "name": "Lidl Talbot Street",
            "uuid": "90f14e5d-5e8d-431e-b4f5-ead1d18afe33",
            "in_line_address": ""
        },
        {
            "name": "Lidl Tallaght - Head Office",
            "uuid": "6f4c6ee7-6271-4c33-90e9-22dfc907366a",
            "in_line_address": ""
        },
        {
            "name": "Lidl Tallaght - MPI",
            "uuid": "f4c07a73-2c42-414d-bd34-5e90fa018dc5",
            "in_line_address": ""
        },
        {
            "name": "Lidl Templemore",
            "uuid": "e4f046d8-9477-48ac-865e-1b8ef3806867",
            "in_line_address": ""
        },
        {
            "name": "Lidl Terenure",
            "uuid": "8d0c2470-fc70-40a7-8362-19b4d44a21cc",
            "in_line_address": ""
        },
        {
            "name": "Lidl Thomas Street",
            "uuid": "49934d13-ac13-4fbd-9ae3-4313b3f135cd",
            "in_line_address": ""
        },
        {
            "name": "Lidl Thomastown",
            "uuid": "72e3523e-3998-4565-b596-b0dba729b69d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Thurles",
            "uuid": "172b1627-7b72-4082-8dc1-1d0ee0399223",
            "in_line_address": ""
        },
        {
            "name": "Lidl Tipperary",
            "uuid": "fdd4e433-a58c-48db-b309-c86140430839",
            "in_line_address": ""
        },
        {
            "name": "Lidl Togher",
            "uuid": "fe0712c8-eb49-4b8b-b5dc-6c7d1a5d2d18",
            "in_line_address": ""
        },
        {
            "name": "Lidl Tralee (Caherweesheen)",
            "uuid": "79c1745d-054e-47bd-be5e-eeea8b5d92f2",
            "in_line_address": ""
        },
        {
            "name": "Lidl Tralee (Edward Street)",
            "uuid": "6d481217-b6b6-4c4b-9e9d-7518df75a930",
            "in_line_address": ""
        },
        {
            "name": "Lidl Tramore",
            "uuid": "88ddf87d-6629-43c0-a19c-7e64b764dc5d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Trim",
            "uuid": "4a681f70-16fe-4283-93b0-34f97cdaca44",
            "in_line_address": ""
        },
        {
            "name": "Lidl Tuam",
            "uuid": "f25a5f25-92f8-4097-a136-8d12c09bc9b1",
            "in_line_address": ""
        },
        {
            "name": "Lidl Tullamore - Church Road",
            "uuid": "d58fe30d-5126-4b55-aa9b-73cd256e9832",
            "in_line_address": ""
        },
        {
            "name": "Lidl Tullamore - Main Street",
            "uuid": "1a63f1e3-b656-430d-b195-570ac6377ff6",
            "in_line_address": ""
        },
        {
            "name": "Lidl Tullow",
            "uuid": "031cfd91-9ff7-4a21-b08f-b46820d910b0",
            "in_line_address": ""
        },
        {
            "name": "Lidl Tyrellstown",
            "uuid": "16a2ba73-ac20-4405-aba0-232aa57adf5b",
            "in_line_address": ""
        },
        {
            "name": "Lidl Virginia",
            "uuid": "7efadcfa-6e71-4862-a7bc-989d82a04e0d",
            "in_line_address": ""
        },
        {
            "name": "Lidl Walkinstown",
            "uuid": "89773014-3f45-4c45-a524-96547bf464c8",
            "in_line_address": ""
        },
        {
            "name": "Lidl Waterford (Ardkeen Shopping Centre)",
            "uuid": "85ce58b5-c915-4e07-80fd-d96514e7b9b0",
            "in_line_address": ""
        },
        {
            "name": "Lidl Waterford (Tramore Road)",
            "uuid": "98cb815f-1192-4f08-bfad-513500bf3f65",
            "in_line_address": ""
        },
        {
            "name": "Lidl Westport",
            "uuid": "b76da3f2-c92d-4701-97c9-127f4f212e6e",
            "in_line_address": ""
        },
        {
            "name": "Lidl Wexford",
            "uuid": "d94e4faa-6f09-4fc9-839f-bdc0a7ab9098",
            "in_line_address": ""
        },
        {
            "name": "Lidl Whitestown Way",
            "uuid": "bf4258b7-f141-44fb-9455-a29a5dc4ae09",
            "in_line_address": ""
        },
        {
            "name": "Lidl Wicklow",
            "uuid": "0a715720-a61c-421b-bdb0-0aa40228c346",
            "in_line_address": ""
        },
        {
            "name": "Lidl Wilton",
            "uuid": "5bd64e7a-a992-4d7c-b3af-e59c13c6b104",
            "in_line_address": ""
        },
        {
            "name": "Lidl Youghal",
            "uuid": "aff58e85-11e1-4ff7-a537-d8b41f74501e",
            "in_line_address": ""
        },
        {
            "name": "Little Waitrose High Holborn",
            "uuid": "d9786894-3c33-4933-9bc2-c274d801372a",
            "in_line_address": ""
        },
        {
            "name": "Meade Farm",
            "uuid": "be55db23-c262-43ab-ac30-eea2c7762f1b",
            "in_line_address": ""
        },
        {
            "name": "Musgrave Ballymun",
            "uuid": "fd4a0f71-1c95-4d16-a65d-a0baab15cc1a",
            "in_line_address": ""
        },
        {
            "name": "Musgrave Cork",
            "uuid": "b6f084e8-334a-4c6f-9b7a-61ba95159062",
            "in_line_address": ""
        },
        {
            "name": "Musgrave Galway",
            "uuid": "10a0d3ad-4202-4464-9d9e-e199bf1e9ecb",
            "in_line_address": ""
        },
        {
            "name": "Musgrave Limerick",
            "uuid": "bd6ef0f5-c275-41ab-a0eb-4738ec95b98c",
            "in_line_address": ""
        },
        {
            "name": "Musgrave Robinhood",
            "uuid": "8608c7f5-0955-4761-8c33-486a36433b9e",
            "in_line_address": ""
        },
        {
            "name": "Musgrave Sallynoggin",
            "uuid": "138fe214-f0b1-4dca-8949-f3553a675a9e",
            "in_line_address": ""
        },
        {
            "name": "Musgrave Waterford",
            "uuid": "63ceabf6-4be9-480b-81d3-a2ad17969d0a",
            "in_line_address": ""
        },
        {
            "name": "Nando's Blanchardstown",
            "uuid": "f5898339-072c-49d0-8810-f5748197a146",
            "in_line_address": ""
        },
        {
            "name": "Nando's Cork - Academy Street",
            "uuid": "248e2b13-c7bb-4591-879d-beb037eb450d",
            "in_line_address": ""
        },
        {
            "name": "Nando's Cork - Mahon Point",
            "uuid": "417d8b6b-a4e0-47fc-8cf9-d662dbbb3a97",
            "in_line_address": ""
        },
        {
            "name": "Nando's Dublin - Mary Street",
            "uuid": "b19a5a78-1099-4791-9595-555cff86b24d",
            "in_line_address": ""
        },
        {
            "name": "Nando's Dublin - Santry",
            "uuid": "dffcffbe-b62d-4011-9e3a-63d2216e2ccb",
            "in_line_address": ""
        },
        {
            "name": "Nando's Dublin - St Andrew's Street",
            "uuid": "a33180d8-3808-40b4-9d68-20ec75842fdb",
            "in_line_address": ""
        },
        {
            "name": "Nando's Dublin - Swords",
            "uuid": "a4a948ac-d0e6-4717-9d2f-3ee15aaa54ff",
            "in_line_address": ""
        },
        {
            "name": "Nando's Dun Laoghaire",
            "uuid": "1786d097-c4ba-4c35-9676-a8b24a3ee2f0",
            "in_line_address": ""
        },
        {
            "name": "Nando's Dundrum",
            "uuid": "42af6702-2c16-4ca9-a756-296bf710a842",
            "in_line_address": ""
        },
        {
            "name": "Nando's Liffey Valley",
            "uuid": "28a8a3d1-ec2b-4a01-9fd7-4c981763be0f",
            "in_line_address": ""
        },
        {
            "name": "Nando's Limerick Crescent",
            "uuid": "146a19e5-6aa9-4709-b12e-77560e24f2be",
            "in_line_address": ""
        },
        {
            "name": "Nando's Newbridge",
            "uuid": "cd97c71c-31b2-4433-b765-275eb637e58f",
            "in_line_address": ""
        },
        {
            "name": "Nando's Tallaght",
            "uuid": "9518926e-05d1-4a61-9a2c-0b54f68445e4",
            "in_line_address": ""
        },
        {
            "name": "Once More Donor*",
            "uuid": "f6635097-a574-4dea-a0c3-bc86af62b669",
            "in_line_address": ""
        },
        {
            "name": "Pallas Foods",
            "uuid": "bd924299-b26c-48ee-88af-285925128164",
            "in_line_address": ""
        },
        {
            "name": "Pettitt's SuperValu",
            "uuid": "100e6a15-2eb9-4a8b-a175-3e4e107f5db4",
            "in_line_address": ""
        },
        {
            "name": "Robs Test charity 143",
            "uuid": "a839d89b-720b-401d-87f0-b94598d6f128",
            "in_line_address": ""
        },
        {
            "name": "SeanTDon1 *",
            "uuid": "b7a20f1b-5a77-4d62-a82c-65c4e9678f08",
            "in_line_address": ""
        },
        {
            "name": "Seery's Bakery",
            "uuid": "fdcdf0ad-5857-4ff5-87cc-5264d1fe3165",
            "in_line_address": ""
        },
        {
            "name": "Shinewater Family Hub*",
            "uuid": "fe128e25-5b55-4264-ac85-f847a8227929",
            "in_line_address": ""
        },
        {
            "name": "Sprout & Co Campshires",
            "uuid": "3494cc84-ae49-4e06-8da2-a699045ae768",
            "in_line_address": ""
        },
        {
            "name": "SuperValu King's Square",
            "uuid": "2ba84cea-dfa7-4129-b74c-429b3bc77358",
            "in_line_address": ""
        },
        {
            "name": "Tesco Abbeyfeale",
            "uuid": "a5d816fe-14b9-41b1-9a39-d4764a854ecd",
            "in_line_address": ""
        },
        {
            "name": "Tesco Adamstown",
            "uuid": "0806b022-94ce-43a4-95d4-614d2eb10a37",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ardkeen",
            "uuid": "861b574b-4451-4a74-9f2d-0033e2e0b846",
            "in_line_address": ""
        },
        {
            "name": "Tesco Arklow",
            "uuid": "7108cd29-8c57-4918-82bc-46851243d474",
            "in_line_address": ""
        },
        {
            "name": "Tesco Artane",
            "uuid": "57406388-178e-49ad-b610-bcc7c473e290",
            "in_line_address": ""
        },
        {
            "name": "Tesco Arthurs Quay",
            "uuid": "f6a2a88f-5401-425e-be60-c21efba7c18b",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ashbourne",
            "uuid": "e03eb9a4-5e19-452c-a1a0-2efdb498103d",
            "in_line_address": ""
        },
        {
            "name": "Tesco Athenry",
            "uuid": "0aeec8a2-5a50-49d4-a714-e722bf53d505",
            "in_line_address": ""
        },
        {
            "name": "Tesco Aungier St Express",
            "uuid": "95c30e7e-3d50-48ed-8b24-9c92a422fd11",
            "in_line_address": ""
        },
        {
            "name": "Tesco Baggot St Lower",
            "uuid": "07835e82-9609-4c0a-9092-8a229ee90259",
            "in_line_address": ""
        },
        {
            "name": "Tesco Baggot St Upper",
            "uuid": "0b93a3eb-87b3-4507-8d04-f81e2ad0a198",
            "in_line_address": ""
        },
        {
            "name": "Tesco Bailieborough",
            "uuid": "61ced6ab-bc61-47fe-8692-87c265e63647",
            "in_line_address": ""
        },
        {
            "name": "Tesco Balbriggan Extra",
            "uuid": "e53c670a-ea8f-405f-8c94-ca69ae383d0a",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ballina",
            "uuid": "9ea89d9c-dcb6-46c4-9b8e-6b0e473b88d3",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ballinamore",
            "uuid": "3b276b1d-fdfb-4497-8f9f-6ffb77090ce1",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ballinasloe",
            "uuid": "f27b7262-ae7d-4ac0-bc97-36e45c9ab9f1",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ballincollig",
            "uuid": "3763a99f-2197-48df-81e3-e2be7252a3f4",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ballinfoyle Express",
            "uuid": "b768dca2-8099-47b6-8ff9-7d5aa12fb0c5",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ballinrobe",
            "uuid": "2a40d5e1-6949-4bef-a024-1305c322e7f1",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ballybane",
            "uuid": "d66ef6f2-9c2a-4636-ae2e-fd8bb7de74ce",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ballybeg",
            "uuid": "4e2f8a2f-c7cb-4126-86c2-28ae8c27380a",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ballybrack",
            "uuid": "9e886376-fd56-44e9-a44c-292f7414d8f0",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ballyfermot",
            "uuid": "5de59061-5fd5-4f63-83bc-fa5b23cfdd53",
            "in_line_address": ""
        },
        {
            "name": "Tesco Bancroft",
            "uuid": "3e799e1c-a06b-411f-aeb0-aee299229e49",
            "in_line_address": ""
        },
        {
            "name": "Tesco Baylough Exp",
            "uuid": "752acf1c-76d5-4b22-afef-410054b11095",
            "in_line_address": ""
        },
        {
            "name": "Tesco Bettystown",
            "uuid": "b4172182-7f9d-4e4d-b172-6f5b9c088f05",
            "in_line_address": ""
        },
        {
            "name": "Tesco Birr",
            "uuid": "654457a1-0f9e-4d7e-b5b2-d0e1aaef05a6",
            "in_line_address": ""
        },
        {
            "name": "Tesco Blanchardstown",
            "uuid": "4486bd9a-0dbd-4265-9170-5a9771acd3d5",
            "in_line_address": ""
        },
        {
            "name": "Tesco Bloomfields",
            "uuid": "eab2eb4e-b31f-4163-b146-a74c941e1d8a",
            "in_line_address": ""
        },
        {
            "name": "Tesco Bray",
            "uuid": "993a8260-83a2-4828-a126-b579b1c1aaf5",
            "in_line_address": ""
        },
        {
            "name": "Tesco Bray Express",
            "uuid": "16cca984-b480-4534-b1d7-889f1da5db55",
            "in_line_address": ""
        },
        {
            "name": "Tesco Cabinteely Exp",
            "uuid": "f424d09f-3ec4-4fee-b1b7-866e4516accb",
            "in_line_address": ""
        },
        {
            "name": "Tesco Cabra",
            "uuid": "1a051077-3d68-4fea-b2fc-412b81ce8f5f",
            "in_line_address": ""
        },
        {
            "name": "Tesco Camden Street Expr",
            "uuid": "61b0d570-5b7a-4173-b8dc-55b64eccad42",
            "in_line_address": ""
        },
        {
            "name": "Tesco Cardiffsbridge Express",
            "uuid": "2508f370-bfcd-4f32-87da-80e1a87ebc9c",
            "in_line_address": ""
        },
        {
            "name": "Tesco Carlow",
            "uuid": "17302f35-d40d-431a-8788-15269abc2494",
            "in_line_address": ""
        },
        {
            "name": "Tesco Carrick on Shannon",
            "uuid": "a7845d85-c68d-48a4-b37e-e7c00e0d768f",
            "in_line_address": ""
        },
        {
            "name": "Tesco Cashel",
            "uuid": "506099b6-ea86-4066-a3fe-e26c7daa807d",
            "in_line_address": ""
        },
        {
            "name": "Tesco Castlebar",
            "uuid": "02f2ad52-3f94-400a-98d5-f4c3a703e7cb",
            "in_line_address": ""
        },
        {
            "name": "Tesco Castlepollard Exp",
            "uuid": "5a297342-88ed-4f38-9794-f59730a69653",
            "in_line_address": ""
        },
        {
            "name": "Tesco Cavan",
            "uuid": "9b483a14-1d8d-45b6-a76d-392aa0962f1d",
            "in_line_address": ""
        },
        {
            "name": "Tesco Celbridge",
            "uuid": "cdef0f7d-2bac-4d4d-8493-1275e29ee678",
            "in_line_address": ""
        },
        {
            "name": "Tesco Charlemont Square Express",
            "uuid": "26374cb6-eec0-4cbe-a2f9-b503bb86a542",
            "in_line_address": ""
        },
        {
            "name": "Tesco Cherrywood",
            "uuid": "befb44c0-2cbc-4e62-97f1-520650a468ab",
            "in_line_address": ""
        },
        {
            "name": "Tesco Citywest",
            "uuid": "6563a3cc-6c55-44b3-b577-4c010cbd5194",
            "in_line_address": ""
        },
        {
            "name": "Tesco Clane Express",
            "uuid": "755d4d9d-f46f-420c-90dc-6bb938895bca",
            "in_line_address": ""
        },
        {
            "name": "Tesco Clarehall",
            "uuid": "816766e5-021d-467b-8701-18b7292672ca",
            "in_line_address": ""
        },
        {
            "name": "Tesco Claremorris",
            "uuid": "57756f7f-33b9-4613-8a9a-1cce07420311",
            "in_line_address": ""
        },
        {
            "name": "Tesco Clearwater",
            "uuid": "dd504678-2b18-4b4d-b535-fe9e24182e4d",
            "in_line_address": ""
        },
        {
            "name": "Tesco Clondalkin",
            "uuid": "aedfae77-3825-40ef-963c-69ca735160dd",
            "in_line_address": ""
        },
        {
            "name": "Tesco Clonmel",
            "uuid": "fa887681-156d-4f8d-a7a7-072dd0d77be1",
            "in_line_address": ""
        },
        {
            "name": "Tesco College Green Express",
            "uuid": "b3989e6f-c3e5-4810-85ab-ec0a89dce8a1",
            "in_line_address": ""
        },
        {
            "name": "Tesco Collins Avenue",
            "uuid": "7f942e95-5469-4605-bb9e-ea5221ec826c",
            "in_line_address": ""
        },
        {
            "name": "Tesco Cookstown",
            "uuid": "f4793563-7433-4c31-877f-a99e1319de9b",
            "in_line_address": ""
        },
        {
            "name": "Tesco Coonagh",
            "uuid": "fdbe1bc5-2cc9-4c2f-ad8b-a20c71e53f10",
            "in_line_address": ""
        },
        {
            "name": "Tesco Counting House",
            "uuid": "94e69197-67e7-4dc8-8272-65f89383c269",
            "in_line_address": ""
        },
        {
            "name": "Tesco Crumlin Express",
            "uuid": "0f690840-59c7-4a8a-93f8-99d278de8319",
            "in_line_address": ""
        },
        {
            "name": "Tesco Dennehys Cross Exp",
            "uuid": "78ff0c44-5760-4812-8d4e-13825df21c2c",
            "in_line_address": ""
        },
        {
            "name": "Tesco Dolphins Barn",
            "uuid": "84227d1b-1630-42d7-86d4-c53e19da5d83",
            "in_line_address": ""
        },
        {
            "name": "Tesco Donnybrook Express",
            "uuid": "9c8a205d-846f-4b79-8321-00be10b8049c",
            "in_line_address": ""
        },
        {
            "name": "Tesco Dooradoyle",
            "uuid": "577b212f-6916-4f90-b4e1-bb77dafbf21b",
            "in_line_address": ""
        },
        {
            "name": "Tesco Dorset St Express",
            "uuid": "b28c5df9-bf7e-45b5-9176-ef004b6c7600",
            "in_line_address": ""
        },
        {
            "name": "Tesco Doughiska",
            "uuid": "483f7393-6693-495c-931a-dcbc7afe39ee",
            "in_line_address": ""
        },
        {
            "name": "Tesco Douglas Extra",
            "uuid": "9e38daea-0ae6-4892-a13e-12c76e504266",
            "in_line_address": ""
        },
        {
            "name": "Tesco Drogheda",
            "uuid": "f93b55e6-c562-4c09-8496-cbbb4c13aa0b",
            "in_line_address": ""
        },
        {
            "name": "Tesco Drogheda Extra",
            "uuid": "7fb2d5ed-937b-4f0e-ab7b-f5bb2cad2edd",
            "in_line_address": ""
        },
        {
            "name": "Tesco Drumcondra",
            "uuid": "03f482e0-0b07-4a36-ad9d-35d7a4a34ff8",
            "in_line_address": ""
        },
        {
            "name": "Tesco Dundalk",
            "uuid": "6d50a3a6-03df-46c0-b5e0-822eba798e0b",
            "in_line_address": ""
        },
        {
            "name": "Tesco Dundrum TC",
            "uuid": "244d2d50-d6d2-42f8-8650-f3c17eaa6375",
            "in_line_address": ""
        },
        {
            "name": "Tesco Edenderry",
            "uuid": "9cb45540-1137-4cb5-9d39-8cc77ca863a6",
            "in_line_address": ""
        },
        {
            "name": "Tesco Enfield  Meath Exp",
            "uuid": "fb0aef88-e502-4b43-8bb8-107095bab6c7",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ennis",
            "uuid": "dcf9b400-5de0-43d6-a863-4326361aab36",
            "in_line_address": ""
        },
        {
            "name": "Tesco Fairview Express",
            "uuid": "da1ac4e4-59d4-47a5-b13d-b60e13b10844",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ferrybank",
            "uuid": "c395761d-b1d4-43b6-82fc-4942c3bcd0cc",
            "in_line_address": ""
        },
        {
            "name": "Tesco Finbars Express",
            "uuid": "54df7bb9-9cde-4b66-afbc-f9e730aa06d9",
            "in_line_address": ""
        },
        {
            "name": "Tesco Fr. Griffin",
            "uuid": "30b75021-8a25-422d-95b4-e7af3cef91e0",
            "in_line_address": ""
        },
        {
            "name": "Tesco Galway",
            "uuid": "6061a789-38c6-4bcf-9503-b664f604f35f",
            "in_line_address": ""
        },
        {
            "name": "Tesco Gandon Court",
            "uuid": "9f3dd565-c941-40f5-86d0-fb0a0f0fa93d",
            "in_line_address": ""
        },
        {
            "name": "Tesco Glasnevin Express",
            "uuid": "2dc9a0e8-4960-44ed-b5b5-8439c2cebc4d",
            "in_line_address": ""
        },
        {
            "name": "Tesco Golden Island",
            "uuid": "59940354-66b6-4b54-befa-167f71a6b828",
            "in_line_address": ""
        },
        {
            "name": "Tesco Gorey",
            "uuid": "66edc746-0e69-419a-bc42-38138aef21f2",
            "in_line_address": ""
        },
        {
            "name": "Tesco Greystones",
            "uuid": "37272108-a5e3-48f1-adcb-50c0f6ea870d",
            "in_line_address": ""
        },
        {
            "name": "Tesco Hazelhatch Express",
            "uuid": "77778bb7-b251-4a26-b63e-5b43d656efde",
            "in_line_address": ""
        },
        {
            "name": "Tesco Headford",
            "uuid": "85518581-2bd0-4e03-8ff3-1b7862e2db14",
            "in_line_address": ""
        },
        {
            "name": "Tesco Inchicore",
            "uuid": "0f7302ad-d330-4b67-bdc3-7e1b8e873598",
            "in_line_address": ""
        },
        {
            "name": "Tesco Indreabán",
            "uuid": "e599fea8-b201-4f00-a6b3-59bdb2a4280a",
            "in_line_address": ""
        },
        {
            "name": "Tesco Jervis St",
            "uuid": "7d5c423e-a772-41a0-b8ad-799773272bd3",
            "in_line_address": ""
        },
        {
            "name": "Tesco Kilbarrack",
            "uuid": "b423db85-a4dc-453f-a94d-a9052839766d",
            "in_line_address": ""
        },
        {
            "name": "Tesco Kilcock Express",
            "uuid": "dc9d2032-7cb1-4890-9028-fd68107d770b",
            "in_line_address": ""
        },
        {
            "name": "Tesco Kilcoole",
            "uuid": "06ad3721-3c94-4312-a65e-7c131406bf3a",
            "in_line_address": ""
        },
        {
            "name": "Tesco Kildare",
            "uuid": "a91d32c0-98bf-40a5-bdd2-3732735831fb",
            "in_line_address": ""
        },
        {
            "name": "Tesco Kileely",
            "uuid": "42762599-8c31-4237-815c-cdf59e994ab3",
            "in_line_address": ""
        },
        {
            "name": "Tesco Kilkenny",
            "uuid": "cb088b44-8e25-4ad8-a955-15201bd5f833",
            "in_line_address": ""
        },
        {
            "name": "Tesco Killarney New Street",
            "uuid": "a88d3d0b-0ce5-4659-aa0d-d8c87a5b7e81",
            "in_line_address": ""
        },
        {
            "name": "Tesco Killarney Park",
            "uuid": "3ea59960-384b-48c5-a538-44cd51969f26",
            "in_line_address": ""
        },
        {
            "name": "Tesco Kilrush",
            "uuid": "e17e3bfb-6c2e-4b6a-a380-5f56ae6671d9",
            "in_line_address": ""
        },
        {
            "name": "Tesco Kimmage Exp",
            "uuid": "1d0682f5-7e85-4577-b557-e65a52a72140",
            "in_line_address": ""
        },
        {
            "name": "Tesco Kinnegad",
            "uuid": "cc2878e0-843b-4230-8b30-42d6a2e53857",
            "in_line_address": ""
        },
        {
            "name": "Tesco Knocknacarra",
            "uuid": "ed44c16e-4b17-4321-95bd-ba4647498f2e",
            "in_line_address": ""
        },
        {
            "name": "Tesco Leonards Corner Express",
            "uuid": "01185350-3ea3-42a0-9057-595e82bbb474",
            "in_line_address": ""
        },
        {
            "name": "Tesco Letterkenny",
            "uuid": "b61ae109-7f38-444e-8fe6-a75cc760ec8a",
            "in_line_address": ""
        },
        {
            "name": "Tesco Liffey Valley",
            "uuid": "d6b8d39e-8c36-41c2-ac51-d4c35ff9b563",
            "in_line_address": ""
        },
        {
            "name": "Tesco Lisduggan",
            "uuid": "0b196db2-79ed-4858-be7c-d96cd8e7b152",
            "in_line_address": ""
        },
        {
            "name": "Tesco Longford",
            "uuid": "8d320298-26e0-48de-8388-7f668c04b790",
            "in_line_address": ""
        },
        {
            "name": "Tesco Longwalk",
            "uuid": "0c2b5cfe-3f93-4bf3-94af-4c0e0fffed89",
            "in_line_address": ""
        },
        {
            "name": "Tesco Lucan",
            "uuid": "863626bc-d017-4b26-b81a-d3ec5bdda3d2",
            "in_line_address": ""
        },
        {
            "name": "Tesco Mahon",
            "uuid": "e4264883-ddb3-4726-ab33-ab8444b68eb7",
            "in_line_address": ""
        },
        {
            "name": "Tesco Malahide Exp",
            "uuid": "d1c04256-dcbd-4d2d-8d32-4f3fa060d778",
            "in_line_address": ""
        },
        {
            "name": "Tesco Mallow",
            "uuid": "06d813d4-7c14-4f93-9a53-d2b66cba527b",
            "in_line_address": ""
        },
        {
            "name": "Tesco Maynooth Extra",
            "uuid": "cedca4a5-f5b1-476f-9c08-7614488f9979",
            "in_line_address": ""
        },
        {
            "name": "Tesco Merrion",
            "uuid": "b249856f-4adb-4ecc-8ed1-66ce9cedc8f1",
            "in_line_address": ""
        },
        {
            "name": "Tesco Midleton",
            "uuid": "0ac04c03-f65e-4f14-a83b-622263cad851",
            "in_line_address": ""
        },
        {
            "name": "Tesco Mitchelstown",
            "uuid": "b2f2f6e4-2544-40af-bd91-e91a11613a53",
            "in_line_address": ""
        },
        {
            "name": "Tesco Monaghan",
            "uuid": "e99dc369-7ee2-4954-8642-beab3dac38f9",
            "in_line_address": ""
        },
        {
            "name": "Tesco Mountview",
            "uuid": "7dd87dae-a0cd-4594-a925-908de1b8dd0b",
            "in_line_address": ""
        },
        {
            "name": "Tesco Mullingar",
            "uuid": "a761dbb0-8db6-41d3-9ff1-1f9f66e9650e",
            "in_line_address": ""
        },
        {
            "name": "Tesco Naas",
            "uuid": "930e4658-6557-45cb-b618-c5b6808fd190",
            "in_line_address": ""
        },
        {
            "name": "Tesco Naas Extra",
            "uuid": "44f48011-1898-47b9-ac27-e1990d90050c",
            "in_line_address": ""
        },
        {
            "name": "Tesco Navan",
            "uuid": "d8009001-46c0-498f-bfe1-00a94b66ba36",
            "in_line_address": ""
        },
        {
            "name": "Tesco Navan Clonmagadden",
            "uuid": "d11af1d5-e255-40b3-a89e-2f9012377775",
            "in_line_address": ""
        },
        {
            "name": "Tesco Nenagh",
            "uuid": "f161a1c0-c463-4005-974e-264b5122f993",
            "in_line_address": ""
        },
        {
            "name": "Tesco New Ross",
            "uuid": "8c499262-57ce-48d4-a92d-5f4543620161",
            "in_line_address": ""
        },
        {
            "name": "Tesco Newbridge",
            "uuid": "32e42dea-a5c5-4a3e-8ddf-3920fc6156ad",
            "in_line_address": ""
        },
        {
            "name": "Tesco Newcastle Express",
            "uuid": "a6bc120a-779d-43f8-94af-19dccaf3b314",
            "in_line_address": ""
        },
        {
            "name": "Tesco Newcastle West",
            "uuid": "e0824e37-24a7-43a1-8d03-773a0c30857f",
            "in_line_address": ""
        },
        {
            "name": "Tesco Newmarket Yards",
            "uuid": "aa43dbea-5388-45ba-9f80-a13d8f7ea67d",
            "in_line_address": ""
        },
        {
            "name": "Tesco Nutgrove",
            "uuid": "81896c57-b78d-4564-a63f-c87719d86adf",
            "in_line_address": ""
        },
        {
            "name": "Tesco Oranmore",
            "uuid": "88829057-2465-4586-89a9-88d387e3217e",
            "in_line_address": ""
        },
        {
            "name": "Tesco Oughterard",
            "uuid": "f5b430a6-ea81-4d84-a45a-91b65a88cf9b",
            "in_line_address": ""
        },
        {
            "name": "Tesco Park Pointe",
            "uuid": "ef77b4bc-530e-4f45-a640-bc25f4ecc193",
            "in_line_address": ""
        },
        {
            "name": "Tesco Parnell St",
            "uuid": "0280747e-e3ae-4c5e-bc54-e9858baff425",
            "in_line_address": ""
        },
        {
            "name": "Tesco Paul St Cork",
            "uuid": "3bfdd50a-ba89-44e4-8532-ab00fb57ba81",
            "in_line_address": ""
        },
        {
            "name": "Tesco Pearse Street",
            "uuid": "9ec1be37-f26f-465a-9978-0b1fd029f165",
            "in_line_address": ""
        },
        {
            "name": "Tesco Phibsboro",
            "uuid": "b5fe166a-00f0-45cc-bef8-f1bcdf77d8e0",
            "in_line_address": ""
        },
        {
            "name": "Tesco Poleberry",
            "uuid": "07666db9-9620-43fb-b746-bd1f80916847",
            "in_line_address": ""
        },
        {
            "name": "Tesco Portlaoise Extra",
            "uuid": "0d58359d-26ab-4602-a8cd-ba1cf7f104bc",
            "in_line_address": ""
        },
        {
            "name": "Tesco Prussia St",
            "uuid": "38487ccc-5bce-4a8d-aec5-d917c2c78c54",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ranelagh Express",
            "uuid": "02c1b3d8-977e-4eaa-86d4-8ce105be98ab",
            "in_line_address": ""
        },
        {
            "name": "Tesco Rathcoole",
            "uuid": "66d4f3bf-6951-4731-83de-26bd2a90f3f1",
            "in_line_address": ""
        },
        {
            "name": "Tesco Rathfarnham",
            "uuid": "1253c3d8-26a2-4243-9123-83cb519e7c64",
            "in_line_address": ""
        },
        {
            "name": "Tesco Rathmines Express",
            "uuid": "2f20d151-1c52-4341-9302-138d72c33b42",
            "in_line_address": ""
        },
        {
            "name": "Tesco Rathmines Metro",
            "uuid": "1e36417e-b68e-4b5a-8015-be6cd8fadb48",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ratoath",
            "uuid": "1226d6c0-72a7-4324-8263-43445af48a5b",
            "in_line_address": ""
        },
        {
            "name": "Tesco Ringsend",
            "uuid": "a8210a81-d332-467a-b949-b1ad8d906284",
            "in_line_address": ""
        },
        {
            "name": "Tesco Roscommon",
            "uuid": "8d5fb06f-2498-4643-8d22-ca9579d76f90",
            "in_line_address": ""
        },
        {
            "name": "Tesco Roscrea",
            "uuid": "824d8575-e437-42e1-b552-1117a8d6d257",
            "in_line_address": ""
        },
        {
            "name": "Tesco Roxboro",
            "uuid": "3fa4a228-a4d1-4435-89c2-c138b4eb839a",
            "in_line_address": ""
        },
        {
            "name": "Tesco Rush",
            "uuid": "76196cfd-f7c6-4219-9d33-1cdff310ff34",
            "in_line_address": ""
        },
        {
            "name": "Tesco Sandymount",
            "uuid": "7cfd432f-e6b9-43f6-8636-8e0ab8447d46",
            "in_line_address": ""
        },
        {
            "name": "Tesco Santry",
            "uuid": "ed635ef6-f109-46d1-830e-c5511057c424",
            "in_line_address": ""
        },
        {
            "name": "Tesco Shankhill Express",
            "uuid": "acc687d3-098b-496c-8907-06ed581fde32",
            "in_line_address": ""
        },
        {
            "name": "Tesco Shannon",
            "uuid": "f1cacd67-f25e-48b5-8a41-1b6014c85f40",
            "in_line_address": ""
        },
        {
            "name": "Tesco Shannon Banks",
            "uuid": "a383fcea-acbd-4278-bde8-5e435ae681f6",
            "in_line_address": ""
        },
        {
            "name": "Tesco Sligo",
            "uuid": "f9995761-d7c0-42d1-869b-e0ef3d4af40a",
            "in_line_address": ""
        },
        {
            "name": "Tesco Smithfield Express",
            "uuid": "c350c155-a560-45de-a8f3-7f2253b21aee",
            "in_line_address": ""
        },
        {
            "name": "Tesco South Lotts Express",
            "uuid": "c99dcbcf-9fc7-4dad-92ce-6d9bff16a446",
            "in_line_address": ""
        },
        {
            "name": "Tesco Spencer Dock Exp",
            "uuid": "b7a90fa2-71ef-4786-b433-7241f49bca4e",
            "in_line_address": ""
        },
        {
            "name": "Tesco Stillorgan",
            "uuid": "2c8e0527-5d23-4f70-af94-b56ee5088032",
            "in_line_address": ""
        },
        {
            "name": "Tesco Swinford",
            "uuid": "b83fee38-21d7-4689-85b3-dd68766781a7",
            "in_line_address": ""
        },
        {
            "name": "Tesco Swords Express",
            "uuid": "365cc1f1-a83f-4a3a-aa13-e3afad66e3f1",
            "in_line_address": ""
        },
        {
            "name": "Tesco Swords Extra",
            "uuid": "674ca05b-6a78-4fe2-bc06-6eb7bb023aa6",
            "in_line_address": ""
        },
        {
            "name": "Tesco Talbot St",
            "uuid": "3c9407e2-f697-431c-b2da-48076ed3146b",
            "in_line_address": ""
        },
        {
            "name": "Tesco Tallaght",
            "uuid": "d0f5f30c-38da-4fb2-93c3-4b6947f8539d",
            "in_line_address": ""
        },
        {
            "name": "Tesco Temple Bar Metro",
            "uuid": "c7266c55-4f2d-4db1-a1cb-9ece76c14268",
            "in_line_address": ""
        },
        {
            "name": "Tesco Terenure",
            "uuid": "c473bd5c-652c-4a83-91bb-59ee3944b3c2",
            "in_line_address": ""
        },
        {
            "name": "Tesco Thomas Street",
            "uuid": "1038ec62-f2cc-4095-ac02-1680f3c827d0",
            "in_line_address": ""
        },
        {
            "name": "Tesco Thurles",
            "uuid": "600a09f6-7e6e-48e3-801a-4d246678f633",
            "in_line_address": ""
        },
        {
            "name": "Tesco Tipperary",
            "uuid": "f597d457-8fd9-4f98-b21c-c07a41c45222",
            "in_line_address": ""
        },
        {
            "name": "Tesco Townsend St",
            "uuid": "47a2ed74-c6ea-46eb-a91a-bad9f40c0195",
            "in_line_address": ""
        },
        {
            "name": "Tesco Tralee Manor",
            "uuid": "8cd9aef0-7690-4f5d-8800-2a7b600fa8e9",
            "in_line_address": ""
        },
        {
            "name": "Tesco Tralee Square",
            "uuid": "295e7af4-2c48-413e-999d-9122c0e97351",
            "in_line_address": ""
        },
        {
            "name": "Tesco Tramore",
            "uuid": "e6662773-84ff-4cbd-a0d0-ad459c6e5bbe",
            "in_line_address": ""
        },
        {
            "name": "Tesco Tuam",
            "uuid": "79c3d858-5b97-4fea-9dbf-832e147bf4fa",
            "in_line_address": ""
        },
        {
            "name": "Tesco Tullamore",
            "uuid": "e536264f-981c-4510-8221-84b337afb45d",
            "in_line_address": ""
        },
        {
            "name": "Tesco Tullow",
            "uuid": "d69cb808-b475-4dae-be4a-7d43bc7cc6ba",
            "in_line_address": ""
        },
        {
            "name": "Tesco Two Oaks",
            "uuid": "f71fd413-bb8c-4166-a653-209b7ba1791f",
            "in_line_address": ""
        },
        {
            "name": "Tesco Westport",
            "uuid": "4ffcb46b-d117-4d37-9ca0-b7f823f70d4e",
            "in_line_address": ""
        },
        {
            "name": "Tesco Wexford",
            "uuid": "bf826abc-b7e3-402f-80b4-f1fd0e5f871f",
            "in_line_address": ""
        },
        {
            "name": "Tesco White Pines",
            "uuid": "72ceb729-7f4e-44e9-946c-e14127ada157",
            "in_line_address": ""
        },
        {
            "name": "Tesco Wicklow",
            "uuid": "85596a25-5fcb-4d07-b9f1-ebca5dd0e422",
            "in_line_address": ""
        },
        {
            "name": "Tesco Wilton",
            "uuid": "bb94df6c-064d-4f72-9134-f5c49f642654",
            "in_line_address": ""
        },
        {
            "name": "Tesco Youghal",
            "uuid": "1d60c81b-47de-4244-89a7-45edc54538d2",
            "in_line_address": ""
        },
        {
            "name": "Test Meade demo",
            "uuid": "f2ff2f7d-a93c-403e-b5f8-adb66996f537",
            "in_line_address": ""
        },
        {
            "name": "Townley Hall *",
            "uuid": "b9642555-67e2-4b42-b821-388326ec7703",
            "in_line_address": ""
        },
        {
            "name": "Try Again Donor*",
            "uuid": "141be308-eb9d-45d0-9e28-1206fdbe3a02",
            "in_line_address": ""
        },
        {
            "name": "Unit 4042 Tesco Demo",
            "uuid": "6a4ecbc9-e89c-475e-95e4-682be62f8157",
            "in_line_address": ""
        },
        {
            "name": "Unit 4043 Tesco Demo",
            "uuid": "d4dcffdf-60bc-499a-90c4-cdb1764ee66b",
            "in_line_address": ""
        },
        {
            "name": "Unit 4046 Tesco Demo",
            "uuid": "76479869-a339-4da4-af5c-2a5cc413dff9",
            "in_line_address": ""
        },
        {
            "name": "Veggie Veg",
            "uuid": "34db7690-7924-42fb-8115-d8491a31a29f",
            "in_line_address": ""
        }
    ],
    "frontendRedirect": false,
    "callTime": 0.15324902534484863
}
 

Request      

GET api/user/network_branches

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

branch   string   

The UUID of the branch. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Get Quick Donation Schedule

requires authentication

Returns the nearest donation windows and next collection window schedule for a branch

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/quick-donation/schedules" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/quick-donation/schedules"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/quick-donation/schedules';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/quick-donation/schedules'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "data": {
            "d617f72a-9c06-4379-860d-cb18dbdcafab_2024-08-08": {
                "uuid": "d617f72a-9c06-4379-860d-cb18dbdcafab",
                "date": "2024-08-08",
                "donor_org_name": "MRT TESTING FOODBANK",
                "donor_branch_name": "MRT testing branch 1",
                "donor_branch_official_id": "MRT:1234",
                "day_of_week_start": 4,
                "day_of_week_end": 4,
                "start_time": "17:00:00",
                "end_time": "19:00:00",
                "schedule_status": "Permanent",
                "max_collectors": 1,
                "l_ambient": "Yes",
                "l_chilled": "Yes",
                "l_frozen": "No",
                "l_hot": "No",
                "primary_charity_org_0": "Green Planet Charity Group",
                "primary_charity_name_0": "Green Planet Charity DP 1.13",
                "primary_charity_id_0": "GPC:2247",
                "primary_slot_status_0": "Activated",
                "primary_slot_type_0": "Primary",
                "primary_charity_org_1": "Green Planet Charity Group",
                "primary_charity_name_1": "Green Planet Charity DP 1.4",
                "primary_charity_id_1": "GPC:2240",
                "primary_slot_status_1": "Scheduled For Activation",
                "primary_slot_type_1": "Primary",
                "waitlist_charity_name_0": "Green Planet Charity DP 1.16",
                "waitlist_charity_id_0": "GPC:2249",
                "waitlist_slot_status_0": "Activated",
                "waitlist_slot_type_0": "Waitlist",
                "waitlist_charity_name_1": "Green Planet Charity AAR 1.6",
                "waitlist_charity_id_1": "GPC:2289",
                "waitlist_slot_status_1": "Activated",
                "waitlist_slot_type_1": "Waitlist",
                "difference_in_days": 0
            },
            "9f61644c-ade2-4c56-8c4e-4a73083091b4_2024-08-08": {
                "uuid": "9f61644c-ade2-4c56-8c4e-4a73083091b4",
                "date": "2024-08-08",
                "donor_org_name": "MRT TESTING FOODBANK",
                "donor_branch_name": "MRT testing branch 1",
                "donor_branch_official_id": "MRT:1234",
                "day_of_week_start": 4,
                "day_of_week_end": 4,
                "start_time": "21:00:00",
                "end_time": "23:00:00",
                "schedule_status": "Permanent",
                "max_collectors": 1,
                "l_ambient": "No",
                "l_chilled": "No",
                "l_frozen": "No",
                "l_hot": "No",
                "waitlist_charity_name_0": "Green Planet Charity AAR 1.4",
                "waitlist_charity_id_0": "GPC:2287",
                "waitlist_slot_status_0": "Activated",
                "waitlist_slot_type_0": "Waitlist",
                "difference_in_days": 0
            }
        },
        "recordsFiltered": 6,
        "recordsTotal": 99999
    },
    "frontendRedirect": false,
    "callTime": 0.04180407524108887
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "e_error_retrieving_data"
    ],
    "frontendRedirect": false,
    "callTime": 0.005608081817626953
}
 

Request      

GET api/user/branches/{branch}/quick-donation/schedules

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

branch   string   

The UUID of the branch. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Get Branch Schedules

requires authentication

Get all the branch schedules across all the foodnets

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/schedules" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/schedules"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/schedules';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/schedules'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "donation_windows": [
            [
                {
                    "uuid": "b380baf4-560e-46fa-b5b5-351a234f0275",
                    "starts_at": "09:00:00",
                    "ends_at": "17:00:00",
                    "day_of_week": 1,
                    "is_active": 1,
                    "is_temporary_schedule": 0,
                    "temporary_scheduled_at": null,
                    "created_at": "2024-02-22 16:30:46",
                    "updated_at": "2024-02-22 16:30:46",
                    "day_of_week_label": "l_monday_full"
                }
            ],
            [
                {
                    "uuid": "ce5fd5ea-7d46-4e97-b2c3-e5284b3d3570",
                    "starts_at": "09:00:00",
                    "ends_at": "17:00:00",
                    "day_of_week": 2,
                    "is_active": 1,
                    "is_temporary_schedule": 0,
                    "temporary_scheduled_at": null,
                    "created_at": "2024-02-22 16:30:46",
                    "updated_at": "2024-02-22 16:30:46",
                    "day_of_week_label": "l_tuesday_full"
                }
            ],
            [
                {
                    "uuid": "3fdfeba2-d956-49f6-92a7-e2fab27d21cd",
                    "starts_at": "09:00:00",
                    "ends_at": "17:00:00",
                    "day_of_week": 3,
                    "is_active": 1,
                    "is_temporary_schedule": 0,
                    "temporary_scheduled_at": null,
                    "created_at": "2024-02-22 16:30:46",
                    "updated_at": "2024-02-22 16:30:46",
                    "day_of_week_label": "l_wednesday_full"
                }
            ],
            [
                {
                    "uuid": "e29de0d0-e945-49d0-86f2-dbaf64eebfd3",
                    "starts_at": "09:00:00",
                    "ends_at": "17:00:00",
                    "day_of_week": 4,
                    "is_active": 1,
                    "is_temporary_schedule": 0,
                    "temporary_scheduled_at": null,
                    "created_at": "2024-02-22 16:30:46",
                    "updated_at": "2024-02-22 16:30:46",
                    "day_of_week_label": "l_thursday_full"
                }
            ],
            [
                {
                    "uuid": "b504ebcf-92a0-4459-a31d-496d5929df29",
                    "starts_at": "09:00:00",
                    "ends_at": "17:00:00",
                    "day_of_week": 5,
                    "is_active": 1,
                    "is_temporary_schedule": 0,
                    "temporary_scheduled_at": null,
                    "created_at": "2024-02-22 16:30:46",
                    "updated_at": "2024-02-22 16:30:46",
                    "day_of_week_label": "l_friday_full"
                }
            ],
            [],
            []
        ],
        "collection_windows": [
            [],
            [],
            [],
            [],
            [],
            [],
            []
        ],
        "branch_closures": [
            [],
            [],
            [],
            [],
            [],
            [],
            []
        ]
    },
    "frontendRedirect": false,
    "callTime": 0.36569786071777344
}
 

Request      

GET api/user/branches/{branch}/schedules

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

branch   string   

The UUID of the branch. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

Units of Measure

Get All Units of Measure for a Branch

requires authentication

This endpoint retrieves all branch's units of measure.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/measure_units" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/measure_units"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/measure_units';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/branches/5ce3a914-8a20-4e83-9e5a-059361de5d04/measure_units'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "data": [
            {
                "uuid": "20202020-8950-4e47-0d0a-1a0a00000000",
                "name": "Tray",
                "kg_weight_per_unit": 6.5,
                "created_at": "2019-11-22 21:29:08",
                "updated_at": "2019-11-22 21:29:08",
                "deleted_at": null
            },
            {
                "uuid": "3ea609e7-bb67-45c1-a158-a18364fa67c3",
                "name": "Kg",
                "kg_weight_per_unit": 1,
                "created_at": "2019-11-22 21:29:08",
                "updated_at": "2019-11-22 21:29:08",
                "deleted_at": null
            }
        ],
        "recordsFiltered": 2,
        "recordsTotal": 2
    },
    "callTime": 0.006726980209350586
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Request      

GET api/user/branches/{branch}/measure_units

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

branch   string   

The UUID of the branch. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

User

Resend user invite

requires authentication

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/user/invite/resend" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"email\": \"[email protected]\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/invite/resend"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "[email protected]"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/invite/resend';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'email' => '[email protected]',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/invite/resend'
payload = {
    "email": "[email protected]"
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Request      

POST api/user/invite/resend

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

email   String   

The email of the user. Example: [email protected]

Activate account This endpoint activates the account

Example request:
curl --request PUT \
    "api-qa.foodiverse.net/api/user/activate" \
    --header "Content-Type: application/json" \
    --data "{
    \"activation_key\": \"ffabe0be80b0539b0d1b2ee68270f43cea0234628769564557781055eb94bbf7\",
    \"expires\": \"1720007944\",
    \"password\": \"|]|{+-\",
    \"password_confirmation\": \"architecto\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/activate"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "activation_key": "ffabe0be80b0539b0d1b2ee68270f43cea0234628769564557781055eb94bbf7",
    "expires": "1720007944",
    "password": "|]|{+-",
    "password_confirmation": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/activate';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'activation_key' => 'ffabe0be80b0539b0d1b2ee68270f43cea0234628769564557781055eb94bbf7',
            'expires' => '1720007944',
            'password' => '|]|{+-',
            'password_confirmation' => 'architecto',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/activate'
payload = {
    "activation_key": "ffabe0be80b0539b0d1b2ee68270f43cea0234628769564557781055eb94bbf7",
    "expires": "1720007944",
    "password": "|]|{+-",
    "password_confirmation": "architecto"
}
headers = {
  'Content-Type': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        "s_auth_activated"
    ],
    "frontendRedirect": false,
    "callTime": 0.10659193992614746
}
 

Request      

PUT api/user/activate

Headers

Content-Type      

Example: application/json

Body Parameters

activation_key   String   

Example: ffabe0be80b0539b0d1b2ee68270f43cea0234628769564557781055eb94bbf7

expires   String   

Example: 1720007944

password   String   

Example: |]|{+-

password_confirmation   String   

Example: architecto

Generate restoration key and send an email with reset password link to a user

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/user/password/reset" \
    --header "Content-Type: application/json" \
    --data "{
    \"email\": \"[email protected]\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/password/reset"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "email": "[email protected]"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/password/reset';
$response = $client->post(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'email' => '[email protected]',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/password/reset'
payload = {
    "email": "[email protected]"
}
headers = {
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        "s_password_sent"
    ],
    "frontendRedirect": false,
    "callTime": 0.263275146484375
}
 

Request      

POST api/user/password/reset

Headers

Content-Type      

Example: application/json

Body Parameters

email   String   

The email of the user. Example: [email protected]

Reset user password

Example request:
curl --request PUT \
    "api-qa.foodiverse.net/api/user/password/reset" \
    --header "Content-Type: application/json" \
    --data "{
    \"password\": \"|]|{+-\",
    \"password_confirmation\": \"architecto\",
    \"restoration_key\": \"12f78fab0eab140feeef8bf9d8534924cf2a16119ceb3aaff58cf1953d662d8d\",
    \"expires\": \"1720007944\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/password/reset"
);

const headers = {
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "password": "|]|{+-",
    "password_confirmation": "architecto",
    "restoration_key": "12f78fab0eab140feeef8bf9d8534924cf2a16119ceb3aaff58cf1953d662d8d",
    "expires": "1720007944"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/password/reset';
$response = $client->put(
    $url,
    [
        'headers' => [
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'password' => '|]|{+-',
            'password_confirmation' => 'architecto',
            'restoration_key' => '12f78fab0eab140feeef8bf9d8534924cf2a16119ceb3aaff58cf1953d662d8d',
            'expires' => '1720007944',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/password/reset'
payload = {
    "password": "|]|{+-",
    "password_confirmation": "architecto",
    "restoration_key": "12f78fab0eab140feeef8bf9d8534924cf2a16119ceb3aaff58cf1953d662d8d",
    "expires": "1720007944"
}
headers = {
  'Content-Type': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        "s_password_reset"
    ],
    "callTime": 0.3715510368347168
}
 

Request      

PUT api/user/password/reset

Headers

Content-Type      

Example: application/json

Body Parameters

password   String   

Example: |]|{+-

password_confirmation   String   

Example: architecto

restoration_key   String   

Example: 12f78fab0eab140feeef8bf9d8534924cf2a16119ceb3aaff58cf1953d662d8d

expires   String   

Example: 1720007944

Get app options

requires authentication

This endpoint returns the app options.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/app-options" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/app-options"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/app-options';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/app-options'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "auth0_mode": false,
        "charityIosVersion": "1.2.3",
        "charityAndroidVersion": "1.0.0",
        "donorIosVersion": "1.0.0",
        "donorAndroidVersion": "1.0.0",
        "foodbankIosVersion": "1.0.0",
        "foodbankAndroidVersion": "1.0.0",
        "newAppUrl": "http://food.cloud/new-app"
    },
    "frontendRedirect": false,
    "callTime": 0.0020210742950439453
}
 

Request      

GET api/user/app-options

Headers

AuthorizationToken      

Example: Bearer {token}

Get active user's organisation details

requires authentication

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/organisation" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/organisation"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/organisation';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/organisation'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2482
 

{
    "status": "success",
    "data": {
        "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
        "name": "FoodCloud",
        "countries_id": 2963597,
        "provinces_id": 7521314,
        "counties_id": 7288565,
        "official_id": null,
        "accept_by_offset": 30,
        "vip_window": 10,
        "is_vip_window_active": 1,
        "phone": "+353 1 531 3478",
        "address_1": "Unit 8 Broomhill Road",
        "address_2": "",
        "city_town": "South Dublin",
        "post_code": "D24 CD32",
        "latitude": "53.29663490",
        "longitude": "-6.35527110",
        "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
        "food_safety_info": null,
        "is_active": true,
        "is_featured": 1,
        "is_friend_group": 0,
        "receipt_sending_option": 2,
        "created_at": "2021-03-15T00:26:30.000000Z",
        "updated_at": "2025-05-12T15:39:32.000000Z",
        "deleted_at": null,
        "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland",
        "users": [
            {
                "uuid": "9e90e7f3-b68b-482d-9eea-1f00ebb4a762",
                "first_name": "Integration User",
                "surname": "DO NOT EDIT",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Integration User DO NOT EDIT",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "edb50ba5-1d9e-4be1-bde6-cd4fcd81e855",
                "first_name": "Copia",
                "surname": "Admin ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Copia Admin ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "54600b1e-8a0f-43a6-964d-65bcba13609a",
                "first_name": "Uk",
                "surname": "Admin ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Uk Admin ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "be5c9e0b-2e78-4fe3-9082-eb400500aa4a",
                "first_name": "Ie",
                "surname": "Admin ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Ie Admin ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "5fc9c994-46ce-4f87-a07b-25ecad5fbfb8",
                "first_name": "Carla",
                "surname": "McSorley ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Carla McSorley ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "3557a7f9-bdf6-4d6a-9346-d4aa607b0380",
                "first_name": "Iseult",
                "surname": "",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Iseult ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "96243d0e-67d4-4279-ad01-cea97b0e4da5",
                "first_name": "Jamesclifford",
                "surname": "",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Jamesclifford ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "4debc6dc-1dba-4225-852c-4636e2ab3d17",
                "first_name": "Fcs",
                "surname": "Yvonne Fallon ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Fcs Yvonne Fallon ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "0259f40b-5c73-4be6-aaaf-f1a9a7a4c805",
                "first_name": "Rory",
                "surname": "Fallon ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Rory Fallon ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "a6a75333-f972-461e-b31b-f414b9207dd3",
                "first_name": "Catherine",
                "surname": "Delaney",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Catherine Delaney",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "644362f1-f165-4190-aa4d-9109a62fe9c4",
                "first_name": "Fcs",
                "surname": "RorySupport ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Fcs RorySupport ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "0bcd59cf-dbb7-4890-a316-857a4abcec1b",
                "first_name": "Eimear",
                "surname": "",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Eimear ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "6b7554c1-3fde-4d71-b2cb-bdcbb54de0d9",
                "first_name": "Karen",
                "surname": "",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Karen ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "25fb084c-14a2-4965-9376-581509cea581",
                "first_name": "Fcs",
                "surname": "Muirne Mac Manamon ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Fcs Muirne Mac Manamon ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "151cf991-42b4-4121-ace4-2135fdcc9cbb",
                "first_name": "Rory",
                "surname": "O'Connell",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Rory O'Connell",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "36b56997-7416-4337-91ff-f8ab28678559",
                "first_name": "FoodCloud",
                "surname": "Tech Demo ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "FoodCloud Tech Demo ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "c4c48ae4-e743-42dd-a2d6-cc72d2f4b873",
                "first_name": "Steven",
                "surname": "Pettigrew",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Steven Pettigrew",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "5760a1cd-98af-4a03-bc15-b82c8fd22027",
                "first_name": "Rosie",
                "surname": "",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Rosie ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "76145941-e6ad-4277-bed1-19232d1cc10f",
                "first_name": "Polish",
                "surname": "Demo Admin ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Polish Demo Admin ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "74bccb4f-cac6-4ec1-aa9f-be788a55860d",
                "first_name": "Polish",
                "surname": "Test Admin ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Polish Test Admin ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "1635b37f-8d56-4e34-9223-0fccbf8c2f8d",
                "first_name": "Robyn",
                "surname": "",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Robyn ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "83bdc772-9f08-4d90-b29f-f6d92f5645ba",
                "first_name": "Chill",
                "surname": "",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Chill ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "ad5f9c31-0f4b-48d1-b358-7d53ddc68460",
                "first_name": "Australian",
                "surname": "Test Admin ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Australian Test Admin ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "e916b8d9-2650-4ab1-9e58-7ef39f8a45db",
                "first_name": "Czech",
                "surname": "Test Admin ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Czech Test Admin ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "587fd580-e077-4fe4-a9df-a294e8aa32e4",
                "first_name": "Ciara",
                "surname": "",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Ciara ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "2a287e42-7ffb-41ea-be1d-0548429b142f",
                "first_name": "Fcs",
                "surname": "Evan Meehan ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Fcs Evan Meehan ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "cee19fe1-5836-45b6-a74c-e6c0789c7c0f",
                "first_name": "Steven",
                "surname": "Admin ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Steven Admin ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "545a5a55-b86f-4359-9061-0cf9915737b6",
                "first_name": "Threadable",
                "surname": "",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Threadable ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "38ffe00a-57b0-4ff1-a206-ddca067a7633",
                "first_name": "Daniel",
                "surname": " (Migration Orphaned User #1)",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Daniel  (Migration Orphaned User #1)",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "6fec8ae4-0c7e-42ad-a4ae-c6dd90e04e56",
                "first_name": "Maudrag",
                "surname": "",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Maudrag ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "0786855f-4260-4862-95b3-cc0577d177ea",
                "first_name": "Aditya",
                "surname": "Arora ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Aditya Arora ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "2235d973-0626-4b96-82dc-c1bcc42d8afb",
                "first_name": "Shaunagh",
                "surname": "Newman ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Shaunagh Newman ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "2b08724d-5418-4229-a856-ddb21e5b0775",
                "first_name": "Fcs",
                "surname": "Eoin OF ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Fcs Eoin OF ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "3cba186e-c33c-45fc-ba83-16ae85c17e12",
                "first_name": "Fcs",
                "surname": "Vicki Byrne ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Fcs Vicki Byrne ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "47046ca1-9060-4224-95c6-ba08cbebe901",
                "first_name": "Integration User",
                "surname": "DO NOT EDIT",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Integration User DO NOT EDIT",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "597f934a-4e92-4faf-b049-b47b24d9ed10",
                "first_name": "Jessica",
                "surname": "Greene ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Jessica Greene ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "8bb70fc1-2665-4a1c-8b78-b697d757ec2c",
                "first_name": "Fsc",
                "surname": "Noreen ",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Fsc Noreen ",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "334574a2-babe-40f0-bfb6-12524bf55bb7",
                "first_name": "Rourke",
                "surname": "Bradley",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Rourke Bradley",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "c78a23d1-3da8-43e1-be54-1e62a357f903",
                "first_name": "Ebby",
                "surname": "Stafford",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Ebby Stafford",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "aafbb4b0-929e-4ee4-abe1-49fd0d4c7ab6",
                "first_name": "Aisling",
                "surname": "Mulvaney",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Aisling Mulvaney",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "6c6fd975-2124-4cbc-8e03-13bae51e9fc2",
                "first_name": "Paul",
                "surname": "Deegan",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Paul Deegan",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "7c9b80a5-c277-4197-8075-7d51427cf375",
                "first_name": "Community Development",
                "surname": "Team",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Community Development Team",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "0e040982-147b-4011-a09f-ac5afc42688d",
                "first_name": "Mary Ellen",
                "surname": "Angland",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Mary Ellen Angland",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "62e9ef7c-53f4-4e37-bc5b-8cb428891391",
                "first_name": "Devika",
                "surname": "Kulkarni",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Devika Kulkarni",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "0ff9aab2-7516-4193-af1b-d9f5a01bfeb1",
                "first_name": "Luke",
                "surname": "Corr",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Luke Corr",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "9bf48363-a1f4-4926-a150-a9ebc49b455d",
                "first_name": "Dayo",
                "surname": "Aderemi",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Dayo Aderemi",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "0a6cffe8-6cc8-4a1e-ae4d-72e12e5a4103",
                "first_name": "Fcs Adriana",
                "surname": "Wiedeheft",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Fcs Adriana Wiedeheft",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "81d9f413-d87c-45d1-aaf4-49c36f5bcdb9",
                "first_name": "Lorraine",
                "surname": "Bourke",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Lorraine Bourke",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "994dc772-3d06-4347-9edb-e78dc311c044",
                "first_name": "Joana",
                "surname": "Guttler",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Joana Guttler",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "c29c9db1-51dd-4a52-9eca-d3777587333c",
                "first_name": "Eva",
                "surname": "Soler",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Eva Soler",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "1636c930-c2e6-4fe8-9134-28152a44f565",
                "first_name": "Prachi",
                "surname": "Patkar",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Prachi Patkar",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "e908a273-7428-4f56-b349-250420e78e03",
                "first_name": "Yasmin",
                "surname": "Hayes",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Yasmin Hayes",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "86d4c0bb-7910-463a-9f93-e46483fa6b50",
                "first_name": "Silvia Touris",
                "surname": "Santorum",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Silvia Touris Santorum",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "316e77b7-fc8d-480b-8d3d-77fce72e6975",
                "first_name": "Uchenna",
                "surname": "Ibekwe",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Uchenna Ibekwe",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "574da0c0-beb7-49ec-82fc-5a25d79cf5b0",
                "first_name": "Brian",
                "surname": "Keogh",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Brian Keogh",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "95d2903a-f8b4-4e14-9658-d3da76ed6dc4",
                "first_name": "Janet",
                "surname": "Oluniran",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Janet Oluniran",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "effa0de3-701c-4afa-8112-24ac3d15d81c",
                "first_name": "Fcs Joseph",
                "surname": "Oginni",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Fcs Joseph Oginni",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "f4ac62d0-216a-4c51-9d95-e9c8337bc9d9",
                "first_name": "John",
                "surname": "Gleave",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "John Gleave",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "2524965c-cb04-4194-8a9e-46233152086a",
                "first_name": "Anthony",
                "surname": "Braddish",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Anthony Braddish",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "29593317-6e12-40e2-bff2-68d5b0268a32",
                "first_name": "Killian",
                "surname": "Waldron",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Killian Waldron",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "74742750-6405-4b2a-a7dc-104a74cb88b5",
                "first_name": "Chris",
                "surname": "O'Kane",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Chris O'Kane",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "4fc03a2d-bb1f-4e8c-b8bc-67d2e8ff3394",
                "first_name": "Yogesh",
                "surname": "Desai",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Yogesh Desai",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "0b2d62be-2df6-4f14-aac8-a8786f48a50c",
                "first_name": "Maryfaith",
                "surname": "Ngwueche",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Maryfaith Ngwueche",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "75cdc2e7-3af7-4952-b2e1-0e8a2660c0f9",
                "first_name": "Margaret",
                "surname": "Murray",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Margaret Murray",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "dd8ff843-ddbb-4e74-bc2c-5b4a344cc741",
                "first_name": "Emily",
                "surname": "Fitzsimons",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Emily Fitzsimons",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "7e2917f8-6041-477e-ae06-3dfc8bedf108",
                "first_name": "Ana",
                "surname": "Ryan",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Ana Ryan",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "c727dd4d-0646-4844-b1d1-9a96e3d29e27",
                "first_name": "Aaron",
                "surname": "Lawler",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Aaron Lawler",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "bfd9a45d-eccf-49d3-a1c6-26b60f81e169",
                "first_name": "Dean",
                "surname": "Heenan",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Dean Heenan",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "b798fe5a-20ad-40e7-8729-a4a4b2e8e3aa",
                "first_name": "Aoife",
                "surname": "Sullivan",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Aoife Sullivan",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "a8ebfb7f-00f7-4d6c-bba0-a154b8ac15c2",
                "first_name": "Mo PROD",
                "surname": "Zier",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Mo PROD Zier",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "b2b3540d-3e23-48f5-bf6e-f30ea003a04f",
                "first_name": "Louise",
                "surname": "Mockler",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Louise Mockler",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "8ac642ed-d710-4041-8175-4d6dd5ce4262",
                "first_name": "Lisa",
                "surname": "Keegan",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Lisa Keegan",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "eb18ff56-9c82-429f-8d6f-c64fbbba912f",
                "first_name": "Jackie",
                "surname": "McKeown",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Jackie McKeown",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "c153f9b4-9bbc-4f22-825e-7d5ad45a8b51",
                "first_name": "Pierce",
                "surname": "Lowe",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Pierce Lowe",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "68f88f11-3a02-4083-bb44-bfd0a1109917",
                "first_name": "Hazel",
                "surname": "Grassie",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Hazel Grassie",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "5d28c572-0923-4b5e-b56f-00fbcfdc9d69",
                "first_name": "Kevin",
                "surname": "Curley",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Kevin Curley",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            },
            {
                "uuid": "e5f6b69e-1f85-4669-ab37-003112651413",
                "first_name": "Test",
                "surname": "Testing",
                "email": "[email protected]",
                "is_organisation_admin": 1,
                "full_name": "Test Testing",
                "role": "foodnet_administrator",
                "organisation": {
                    "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
                    "name": "FoodCloud",
                    "countries_id": 2963597,
                    "provinces_id": 7521314,
                    "counties_id": 7288565,
                    "official_id": null,
                    "accept_by_offset": 30,
                    "vip_window": 10,
                    "is_vip_window_active": 1,
                    "phone": "+353 1 531 3478",
                    "address_1": "Unit 8 Broomhill Road",
                    "address_2": "",
                    "city_town": "South Dublin",
                    "post_code": "D24 CD32",
                    "latitude": "53.29663490",
                    "longitude": "-6.35527110",
                    "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
                    "food_safety_info": null,
                    "is_active": true,
                    "is_featured": 1,
                    "is_friend_group": 0,
                    "receipt_sending_option": 2,
                    "created_at": "2021-03-15T00:26:30.000000Z",
                    "updated_at": "2025-05-12T15:39:32.000000Z",
                    "deleted_at": null,
                    "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
                }
            }
        ],
        "organisation_type": {
            "name": "FoodBank"
        },
        "image": {
            "filename": "680a1a326338426394ce2.png"
        },
        "measure_units": [],
        "country": {
            "id": 2963597,
            "name": "Ireland",
            "latitude": 53,
            "longitude": -8,
            "code": "IE",
            "is_constituency_based": 0
        },
        "county": {
            "id": 7288565,
            "countries_id": 2963597,
            "provinces_id": 7521314,
            "name": "South Dublin",
            "latitude": 53.28595,
            "longitude": -6.37739
        },
        "province": {
            "id": 7521314,
            "countries_id": 2963597,
            "name": "Leinster",
            "latitude": 53.16667,
            "longitude": -7.02121
        }
    },
    "frontendRedirect": false,
    "callTime": 0.03842806816101074
}
 

Request      

GET api/user/organisation

Headers

AuthorizationToken      

Example: Bearer {token}

Get active user details

requires authentication

This endpoint returns the information for the authenticated user.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2481
 

{
    "status": "success",
    "data": {
        "uuid": "9e90e7f3-b68b-482d-9eea-1f00ebb4a762",
        "first_name": "Integration User",
        "surname": "DO NOT EDIT",
        "language_code": "en_IE",
        "mobile_number": null,
        "email": "[email protected]",
        "availability": null,
        "is_active": 1,
        "is_organisation_admin": 1,
        "suppress_notifications": 0,
        "suppress_email": 0,
        "created_at": "2021-03-15T00:26:30.000000Z",
        "updated_at": "2025-02-04T22:22:50.000000Z",
        "pickup_locations": null,
        "mode_of_transport": null,
        "full_name": "Integration User DO NOT EDIT",
        "role": "foodnet_administrator",
        "branches": [
            {
                "name": "FoodCloud branch 1",
                "uuid": "fbaf899a-c360-4dee-8618-a0bfefd8bace",
                "in_line_address": ""
            },
            {
                "name": "FoodCloud Dublin",
                "uuid": "366507f1-185d-4b5c-8dab-25c4db0fac2f",
                "in_line_address": ""
            },
            {
                "name": "FoodCloud Cork",
                "uuid": "0081b9b4-0eba-449a-9248-40918e684635",
                "in_line_address": ""
            },
            {
                "name": "FoodCloud Galway City",
                "uuid": "00e5ae18-8e76-41eb-aee5-fa6b91f4d42b",
                "in_line_address": ""
            },
            {
                "name": "#demo Admin Michael",
                "uuid": "b4ad7860-7df7-470a-809c-13b5a87e2b7f",
                "in_line_address": ""
            },
            {
                "name": "Robs Test charity 143",
                "uuid": "a839d89b-720b-401d-87f0-b94598d6f128",
                "in_line_address": ""
            },
            {
                "name": "James test user branch",
                "uuid": "af453971-177c-4528-9db3-e8e3226fe09e",
                "in_line_address": ""
            },
            {
                "name": "Community Volunteers (FoodCloud)",
                "uuid": "b8e0f4d4-8d98-439d-8b71-31dceb4ffa7a",
                "in_line_address": ""
            }
        ],
        "image": {
            "filename": "60580d695be1792a9c03a.png"
        },
        "organisation": {
            "uuid": "eaf34aa3-d609-4e4a-898f-213d6ad3b730",
            "name": "FoodCloud",
            "countries_id": 2963597,
            "provinces_id": 7521314,
            "counties_id": 7288565,
            "official_id": null,
            "accept_by_offset": 30,
            "vip_window": 10,
            "is_vip_window_active": 1,
            "phone": "+353 1 531 3478",
            "address_1": "Unit 8 Broomhill Road",
            "address_2": "",
            "city_town": "South Dublin",
            "post_code": "D24 CD32",
            "latitude": "53.29663490",
            "longitude": "-6.35527110",
            "description": "FoodCloud is a non-profit social enterprise with a vision of a world where no good food goes to waste",
            "food_safety_info": null,
            "is_active": true,
            "is_featured": 1,
            "is_friend_group": 0,
            "receipt_sending_option": 2,
            "created_at": "2021-03-15T00:26:30.000000Z",
            "updated_at": "2025-05-12T15:39:32.000000Z",
            "deleted_at": null,
            "in_line_address": "Unit 8 Broomhill Road, South Dublin D24 CD32, South Dublin, Leinster, Ireland"
        }
    },
    "frontendRedirect": false,
    "callTime": 0.007417201995849609
}
 

Request      

GET api/user

Headers

AuthorizationToken      

Example: Bearer {token}

Update active user information

requires authentication

This endpoint updates the information for the authenticated user.

Example request:
curl --request PUT \
    "api-qa.foodiverse.net/api/user" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"first_name\": \"Test\",
    \"surname\": \"User\",
    \"email\": \"[email protected]\",
    \"mobile_number\": \"+353861234567\",
    \"language_code\": \"en_IE\",
    \"is_organisation_admin\": \"0\",
    \"password\": \"|]|{+-\",
    \"password_confirmation\": \"architecto\",
    \"password_current\": \"architecto\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/user"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "first_name": "Test",
    "surname": "User",
    "email": "[email protected]",
    "mobile_number": "+353861234567",
    "language_code": "en_IE",
    "is_organisation_admin": "0",
    "password": "|]|{+-",
    "password_confirmation": "architecto",
    "password_current": "architecto"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user';
$response = $client->put(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'first_name' => 'Test',
            'surname' => 'User',
            'email' => '[email protected]',
            'mobile_number' => '+353861234567',
            'language_code' => 'en_IE',
            'is_organisation_admin' => '0',
            'password' => '|]|{+-',
            'password_confirmation' => 'architecto',
            'password_current' => 'architecto',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user'
payload = {
    "first_name": "Test",
    "surname": "User",
    "email": "[email protected]",
    "mobile_number": "+353861234567",
    "language_code": "en_IE",
    "is_organisation_admin": "0",
    "password": "|]|{+-",
    "password_confirmation": "architecto",
    "password_current": "architecto"
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/user

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

first_name   String   

First name of the user. Example: Test

surname   String   

Surname of the user. Example: User

email   String  optional  

The email of the user. Example: [email protected]

mobile_number   String   

Mobile number of the user. Example: +353861234567

language_code   String   

The language code of the user. Example: en_IE

is_organisation_admin   Boolean  optional  

(Can only be set by an organisation admin) Example: 0

password   String  optional  

New password Example: |]|{+-

password_confirmation   String  optional  

New password confirmation (Required if 'password' is set) Example: architecto

password_current   String  optional  

Old password (Required if 'password' is set) Example: architecto

Get my files

requires authentication

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/file/my-files" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/file/my-files"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/file/my-files';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/file/my-files'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2480
 

{
    "status": "success",
    "data": {
        "data": [],
        "recordsFiltered": 0,
        "recordsTotal": 8486
    },
    "frontendRedirect": false,
    "callTime": 0.005995988845825195
}
 

Request      

GET api/user/file/my-files

Headers

AuthorizationToken      

Example: Bearer {token}

Get active user Locale

requires authentication

This endpoint returns the locale for the authenticated user.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/locale" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/locale"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/locale';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/locale'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2479
 

{
    "status": "success",
    "data": {
        "language_code": "en_IE"
    },
    "frontendRedirect": false,
    "callTime": 0.0049669742584228516
}
 

Request      

GET api/user/locale

Headers

AuthorizationToken      

Example: Bearer {token}

Update active user Locale

requires authentication

This endpoint updates the locale for the authenticated user.

Example request:
curl --request PUT \
    "api-qa.foodiverse.net/api/user/locale" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"language_code\": \"en_IE\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/locale"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "language_code": "en_IE"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/locale';
$response = $client->put(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'language_code' => 'en_IE',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/locale'
payload = {
    "language_code": "en_IE"
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('PUT', url, headers=headers, json=payload)
response.json()

Request      

PUT api/user/locale

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

language_code   String   

The language code of the user. Example: en_IE

Get env feature flags

requires authentication

This endpoint returns the feature flags set in the environment for the authenticated user.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/feature_flags" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/feature_flags"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/feature_flags';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/feature_flags'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2478
 

{
    "status": "success",
    "data": {
        "geofilter": true,
        "pldvisible": true,
        "fvpushnotifications": true,
        "temporaryclosure": true,
        "donationsplitting": true,
        "donation_split_automation": true,
        "delivery_notes": true,
        "third_party_logistics": true,
        "charity_feedback": true,
        "four_digit_auth_code": true,
        "native_share_enabled": false,
        "firebase_analytics_enabled": true,
        "flutter_offers_search_filter": true,
        "flutter_donations_search_filter": true,
        "flutter_navigation_enabled": true,
        "flutter_invites_enabled": true,
        "flutter_profile_menu_enabled": true,
        "flutter_revert_banner_enabled": true,
        "unrestricted_reporting_view_enabled": true
    },
    "frontendRedirect": false,
    "callTime": 4.1961669921875e-5
}
 

Request      

GET api/user/feature_flags

Headers

AuthorizationToken      

Example: Bearer {token}

Get terms and conditions state for user

requires authentication

This endpoint returns the terms and conditions for the authenticated user.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/terms_and_conditions" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/terms_and_conditions"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/terms_and_conditions';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/terms_and_conditions'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2477
 

{
    "status": "success",
    "data": [],
    "frontendRedirect": false,
    "callTime": 0.001950979232788086
}
 

Request      

GET api/user/terms_and_conditions

Headers

AuthorizationToken      

Example: Bearer {token}

Get terms and conditions state for user

requires authentication

This endpoint returns the terms and conditions for the authenticated user.

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/user/terms_and_conditions" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/terms_and_conditions"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/terms_and_conditions';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/terms_and_conditions'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('POST', url, headers=headers)
response.json()

Request      

POST api/user/terms_and_conditions

Headers

AuthorizationToken      

Example: Bearer {token}

Feedback

Create Feedback

requires authentication

This endpoint allows users to submit feedback regarding their satisfaction with a specific donation response.

Example request:
curl --request POST \
    "api-qa.foodiverse.net/api/feedback" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"donation_responses_uuid\": \"f42cee1f-0a2a-4f82-939c-5f6f6f3d668f\",
    \"customer_satisfied\": true,
    \"reason\": \"\\\"YES_HAPPY\\\"\",
    \"source\": \"\\\"Dashboard\\\"\"
}"
const url = new URL(
    "api-qa.foodiverse.net/api/feedback"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "donation_responses_uuid": "f42cee1f-0a2a-4f82-939c-5f6f6f3d668f",
    "customer_satisfied": true,
    "reason": "\"YES_HAPPY\"",
    "source": "\"Dashboard\""
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/feedback';
$response = $client->post(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'donation_responses_uuid' => 'f42cee1f-0a2a-4f82-939c-5f6f6f3d668f',
            'customer_satisfied' => true,
            'reason' => '"YES_HAPPY"',
            'source' => '"Dashboard"',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/feedback'
payload = {
    "donation_responses_uuid": "f42cee1f-0a2a-4f82-939c-5f6f6f3d668f",
    "customer_satisfied": true,
    "reason": "\"YES_HAPPY\"",
    "source": "\"Dashboard\""
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('POST', url, headers=headers, json=payload)
response.json()

Example response (200):


{
    "status": "success",
    "data": {
        "customer_satisfied": true,
        "reason": "YES_HAPPY",
        "ratings": null,
        "review": null,
        "created_at": "2024-10-21T13:49:35.000000Z",
        "updated_at": "2024-10-21T14:03:01.000000Z",
        "response": {
            "uuid": "f42cee1f-0a2a-4f82-939c-5f6f6f3d668f",
            "third_party_collector_branches_id": null,
            "third_party_logistics_branches_id": null,
            "third_party_assignment_user_id": null,
            "type": "P",
            "token": null,
            "response_at": "2024-10-15 12:36:53",
            "created_at": "2024-10-15 12:31:26",
            "updated_at": "2024-10-15 12:36:53",
            "deleted_at": null,
            "tsm_current_state": "Collected",
            "uncollected_reason": null,
            "accepted_at": "2024-10-15 12:34:06",
            "declined_at": null,
            "transferred_at": "2024-10-15 12:36:53",
            "not_transferred_at": null,
            "receipt_sent": 0,
            "delivery_notes": null,
            "third_party_logistics_status": null,
            "tsm_current_state_label": "collected"
        }
    },
    "frontendRedirect": false,
    "callTime": 0.2449049949645996
}
 

Example response (401):


{
    "status": "error",
    "data": [
        "Unauthorized"
    ],
    "callTime": 0.0020160675048828125
}
 

Example response (422):


{
    "status": "error",
    "data": [
        {
            "field": "reason",
            "message": "The selected reason is invalid for the specified satisfaction level."
        }
    ],
    "frontendRedirect": false,
    "callTime": 0.012499094009399414,
    "debug_error_message": "[{\"field\":\"reason\",\"message\":\"The selected reason is invalid for the specified satisfaction level.\"}]"
}
 

Request      

POST api/feedback

Headers

AuthorizationToken      

Example: Bearer {token}

Content-Type      

Example: application/json

Body Parameters

donation_responses_uuid   string   

The uuid of the associated donation response. Example: f42cee1f-0a2a-4f82-939c-5f6f6f3d668f

customer_satisfied   boolean   

Indicates whether the customer was satisfied. Example: true

reason   string   

The reason for the customer’s feedback. Example: "YES_HAPPY"

source   string  optional  

optional The feedback source. Example: "Dashboard"

Get Feedback Enums

requires authentication

This endpoint retrieves the available feedback options for users to select from when providing feedback regarding their satisfaction with a donation response.

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/feedback/enums" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/feedback/enums"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/feedback/enums';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/feedback/enums'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "YES": {
        "YES_HAPPY": "l_very_happy_with_my_donation",
        "YES_LESS": "l_Less_food_than_offered",
        "YES_ISSUE": "l_yes_Food_quality_concerns_issues",
        "YES_OTHER": "l_yes_others"
    },
    "NO": {
        "NO_UNABLE": "l_unable_to_collect",
        "NO_NO_FOOD": "l_no_food_at_arrival",
        "NO_BY_OTHER": "l_food_collected_by_other",
        "NO_ISSUES": "l_no_Food_quality_concerns_issues",
        "NO_NOT_RELEASED": "l_donor_did_not_release_food",
        "NO_OTHER": "l_no_others"
    }
}
 

Example response (200):


{
    "status": "success",
    "data": {
        "YES": {
            "YES_HAPPY": "l_very_happy_with_my_donation",
            "YES_LESS": "l_Less_food_than_offered",
            "YES_ISSUE": "l_yes_Food_quality_concerns_issues",
            "YES_OTHER": "l_yes_others"
        },
        "NO": {
            "NO_UNABLE": "l_unable_to_collect",
            "NO_NO_FOOD": "l_no_food_at_arrival",
            "NO_BY_OTHER": "l_food_collected_by_other",
            "NO_ISSUE": "l_no_Food_quality_concerns_issues",
            "NO_NOT_RELEASED": "l_donor_did_not_release_food",
            "NO_OTHER": "l_no_others"
        }
    },
    "frontendRedirect": false,
    "callTime": 0.0005159378051757812
}
 

Request      

GET api/feedback/enums

Headers

AuthorizationToken      

Example: Bearer {token}

RAG Metrics

requires authentication

This method stores RAG values for a specific metric. The metrics could be:

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/user/network_branches/deep_search" \
    --header "AuthorizationToken: Bearer {token}" \
    --header "Content-Type: application/json" \
    --data "{
    \"metric\": \"\\\"l_process_success\\\"\",
    \"organisations_id\": 1,
    \"red\": 25,
    \"amber\": 25,
    \"green\": 50
}"
const url = new URL(
    "api-qa.foodiverse.net/api/user/network_branches/deep_search"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Content-Type": "application/json",
    "Accept": "application/json",
};

let body = {
    "metric": "\"l_process_success\"",
    "organisations_id": 1,
    "red": 25,
    "amber": 25,
    "green": 50
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/user/network_branches/deep_search';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
            'Content-Type' => 'application/json',
        ],
        'json' => [
            'metric' => '"l_process_success"',
            'organisations_id' => 1,
            'red' => 25,
            'amber' => 25,
            'green' => 50,
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/user/network_branches/deep_search'
payload = {
    "metric": "\"l_process_success\"",
    "organisations_id": 1,
    "red": 25,
    "amber": 25,
    "green": 50
}
headers = {
  'AuthorizationToken': 'Bearer {token}',
  'Content-Type': 'application/json'
}

response = requests.request('GET', url, headers=headers, json=payload)
response.json()

Example response (400):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 2500
x-ratelimit-remaining: 2475
 

{
    "status": "error",
    "data": [
        "Undefined array key \"name\""
    ],
    "frontendRedirect": false,
    "callTime": 0.004759073257446289
}
 

Third Party Logistics

Donation Response Transition

requires authentication

This endpoint allows a 3PL user to mark a donation response as delivered or cancelled (related to third party logistics)

Example request:
curl --request GET \
    --get "api-qa.foodiverse.net/api/donation_responses/5ce3a914-8a20-4e83-9e5a-059361de5d04/third_party_logistics_transit/architecto" \
    --header "AuthorizationToken: Bearer {token}"
const url = new URL(
    "api-qa.foodiverse.net/api/donation_responses/5ce3a914-8a20-4e83-9e5a-059361de5d04/third_party_logistics_transit/architecto"
);

const headers = {
    "AuthorizationToken": "Bearer {token}",
    "Accept": "application/json",
};

fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$url = 'api-qa.foodiverse.net/api/donation_responses/5ce3a914-8a20-4e83-9e5a-059361de5d04/third_party_logistics_transit/architecto';
$response = $client->get(
    $url,
    [
        'headers' => [
            'AuthorizationToken' => 'Bearer {token}',
        ],
    ]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json

url = 'api-qa.foodiverse.net/api/donation_responses/5ce3a914-8a20-4e83-9e5a-059361de5d04/third_party_logistics_transit/architecto'
headers = {
  'AuthorizationToken': 'Bearer {token}'
}

response = requests.request('GET', url, headers=headers)
response.json()

Example response (200):


{
    "status": "success",
    "data": [
        true
    ],
    "frontendRedirect": false,
    "callTime": 0.0005159378051757812
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "e_invalid_3pl_response_status"
    ],
    "frontendRedirect": false,
    "callTime": 0.0005159378051757812
}
 

Example response (400):


{
    "status": "error",
    "data": [
        "Invalid UUID string: 00000032-13bc-47d1-93e2-8583495cd796"
    ],
    "frontendRedirect": false,
    "callTime": 0.017800092697143555
}
 

Request      

GET api/donation_responses/{uuid}/third_party_logistics_transit/{transition}

Headers

AuthorizationToken      

Example: Bearer {token}

URL Parameters

uuid   string   

The UUID of the donation response. Example: 5ce3a914-8a20-4e83-9e5a-059361de5d04

transition   string   

Example: architecto

transit   string   

The transit state of the donation response. Example: "delivered" | "cancelled_by_3pl"