Introduction
InCheck API for Azure Importers
External API for Approved Azure Importers to integrate with the ZDHC Sandbox platform for chemical inventory reporting.
ID Format
ZDHC Sandbox uses a structured ID format: {prefix}-XXXXXXX-Z
| Prefix | Entity Type | Example |
|---|---|---|
01 |
Organisation | 01-XXXXXXX-Z |
20 |
Product | 20-XXXXXXX-Z |
40 |
InCheck Report | 40-XXXXXXX-Z |
Error Model
All non-2xx responses use a consistent error structure:
{
"error": {
"code": "string",
"message": "string",
"details": {}
}
}
Authenticating requests
To authenticate requests, include an Authorization header with the value "Bearer {YOUR_AUTH_KEY}".
All authenticated endpoints are marked with a requires authentication badge in the documentation below.
Retrieve a token by calling the /auth/login endpoint.
Azure/V1
Chemical-Count-Bracket
Chemical Count Brackets Index
requires authentication
No model/data source in current system. Returns empty collection so route is callable.
Example request:
curl --request GET \
--get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/chemical-count-bracket?page=1&per_page=13" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://staging-api.vm400.consulting1x1.info/api/azure/v1/chemical-count-bracket"
);
const params = {
"page": "1",
"per_page": "13",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"Id": null,
"CountBracketName": null,
"CreateDate": null,
"LastUpdateDate": null
},
{
"Id": null,
"CountBracketName": null,
"CreateDate": null,
"LastUpdateDate": null
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Chemical-Weight-Bracket
Chemical Weight Brackets Index
requires authentication
No model/data source in current system. Returns empty collection so route is callable.
Example request:
curl --request GET \
--get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/chemical-weight-bracket?page=1&per_page=20" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://staging-api.vm400.consulting1x1.info/api/azure/v1/chemical-weight-bracket"
);
const params = {
"page": "1",
"per_page": "20",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"Id": null,
"ChemicalWeightBracketName": null,
"CreateDate": null,
"LastUpdateDate": null
},
{
"Id": null,
"ChemicalWeightBracketName": null,
"CreateDate": null,
"LastUpdateDate": null
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Connection-History
Connection History Index
requires authentication
List all organisation connection history.
Example request:
curl --request GET \
--get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/connection-history?page=1&per_page=20&filter%5Bupdated_at%5D=%3C+2026-04-18+12%3A27%3A17&sort=updated_at" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://staging-api.vm400.consulting1x1.info/api/azure/v1/connection-history"
);
const params = {
"page": "1",
"per_page": "20",
"filter[updated_at]": "< 2026-04-18 12:27:17",
"sort": "updated_at",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"id": 1,
"ConnectedFromId": 1,
"ConnectedToId": 1,
"Status": "active",
"Published": null,
"StartDate": "2025-07-24 13:23:42",
"EndDate": null,
"LastUpdateDate": "2025-07-24 13:23:42"
},
{
"id": 1,
"ConnectedFromId": 1,
"ConnectedToId": 1,
"Status": "active",
"Published": null,
"StartDate": "2025-07-24 13:23:42",
"EndDate": null,
"LastUpdateDate": "2025-07-24 13:23:42"
}
],
"links": {
"first": "/?page=1",
"last": "/?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "/?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "/",
"per_page": 10,
"to": 2,
"total": 2
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Material-Category
Material Categories Index
requires authentication
List all material categories (supplier_attributes from group "Materials").
Example request:
curl --request GET \
--get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/material-category?page=1&per_page=3" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://staging-api.vm400.consulting1x1.info/api/azure/v1/material-category"
);
const params = {
"page": "1",
"per_page": "3",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"Id": 1,
"MaterialCategoryName": "Wastewater 2.2",
"CreateDate": null,
"LastUpdateDate": null
},
{
"Id": 1,
"MaterialCategoryName": "Wastewater 2.2",
"CreateDate": null,
"LastUpdateDate": null
}
],
"links": {
"first": "/?page=1",
"last": "/?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "/?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "/",
"per_page": 10,
"to": 2,
"total": 2
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Organisations
Organisations Index
requires authentication
List all organisations.
Example request:
curl --request GET \
--get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/organisations?page=1&per_page=15&filter%5Bupdated_at%5D=%3C+2026-04-13+12%3A27%3A17&sort=updated_at" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://staging-api.vm400.consulting1x1.info/api/azure/v1/organisations"
);
const params = {
"page": "1",
"per_page": "15",
"filter[updated_at]": "< 2026-04-13 12:27:17",
"sort": "updated_at",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"Id": 1,
"ZDHCAid": null,
"SalesforceId": null,
"SandboxID": "01-CR698383XMWJ2-P",
"PdcId": null,
"Name": "test-Supplier System",
"LegalName": "Schroeder Ltd",
"Address1": "149 Koss Dam Suite 796",
"Address2": "Suite 708",
"CityName": "Bergemouth",
"StateName": "Michigan",
"LocationId": "BW",
"ZipCode": "26306",
"Latitude": null,
"Longitude": null,
"Phone": "+17728385594",
"Email": "yessenia18@bahringer.net",
"Website": "http://www.hermiston.com/qui-molestiae-cum-ut-deserunt-incidunt-ratione-illum",
"TaxId": null,
"IPE": null,
"RegistrationNumber": null,
"OrganisationDescription": null,
"ContactFirstName": "Alfonzo",
"ContactLastName": "Crooks",
"OrganisationTypeId": 2,
"OsHubId": null,
"HiggId": null,
"CurrentAccountStatusId": null,
"CreateDate": "2025-07-24 13:23:28",
"DeleteDate": null,
"LastUpdateDate": "2026-03-24 08:26:00"
},
{
"Id": 1,
"ZDHCAid": null,
"SalesforceId": null,
"SandboxID": "01-CR698383XMWJ2-P",
"PdcId": null,
"Name": "test-Supplier System",
"LegalName": "Schroeder Ltd",
"Address1": "149 Koss Dam Suite 796",
"Address2": "Suite 708",
"CityName": "Bergemouth",
"StateName": "Michigan",
"LocationId": "BW",
"ZipCode": "26306",
"Latitude": null,
"Longitude": null,
"Phone": "+17728385594",
"Email": "yessenia18@bahringer.net",
"Website": "http://www.hermiston.com/qui-molestiae-cum-ut-deserunt-incidunt-ratione-illum",
"TaxId": null,
"IPE": null,
"RegistrationNumber": null,
"OrganisationDescription": null,
"ContactFirstName": "Alfonzo",
"ContactLastName": "Crooks",
"OrganisationTypeId": 2,
"OsHubId": null,
"HiggId": null,
"CurrentAccountStatusId": null,
"CreateDate": "2025-07-24 13:23:28",
"DeleteDate": null,
"LastUpdateDate": "2026-03-24 08:26:00"
}
],
"links": {
"first": "/?page=1",
"last": "/?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "/?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "/",
"per_page": 10,
"to": 2,
"total": 2
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Organisation-Users
OrganisationUsers Index
requires authentication
List all organisation-users.
Example request:
curl --request GET \
--get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/organisation-users?page=1&per_page=17&filter%5Bupdated_at%5D=%3D+2026-04-09+12%3A27%3A17&sort=updated_at" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://staging-api.vm400.consulting1x1.info/api/azure/v1/organisation-users"
);
const params = {
"page": "1",
"per_page": "17",
"filter[updated_at]": "= 2026-04-09 12:27:17",
"sort": "updated_at",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"Id": 1,
"UserId": "02-TXFQXFYRE4ACK-M",
"OrganisationId": "01-CR698383XMWJ2-P",
"RoleId": 4,
"StartDate": "2025-07-24 13:23:28",
"EndDate": null,
"LastUpdateDate": "2025-12-02 13:51:01"
},
{
"Id": 1,
"UserId": "02-TXFQXFYRE4ACK-M",
"OrganisationId": "01-CR698383XMWJ2-P",
"RoleId": 4,
"StartDate": "2025-07-24 13:23:28",
"EndDate": null,
"LastUpdateDate": "2025-12-02 13:51:01"
}
],
"links": {
"first": "/?page=1",
"last": "/?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "/?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "/",
"per_page": 10,
"to": 2,
"total": 2
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Processes
Processes Index
requires authentication
List all processes (supplier_attributes from group "Chemical Process").
Example request:
curl --request GET \
--get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/processes?page=1&per_page=18" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://staging-api.vm400.consulting1x1.info/api/azure/v1/processes"
);
const params = {
"page": "1",
"per_page": "18",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"Id": 1,
"ProcessName": "Wastewater 2.2",
"CreateDate": null,
"LastUpdateDate": null
},
{
"Id": 1,
"ProcessName": "Wastewater 2.2",
"CreateDate": null,
"LastUpdateDate": null
}
],
"links": {
"first": "/?page=1",
"last": "/?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "/?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "/",
"per_page": 10,
"to": 2,
"total": 2
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Product-Category
Product Categories Index
requires authentication
List all product categories.
Example request:
curl --request GET \
--get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/product-category?page=1&per_page=16&filter%5Bupdated_at%5D=%3C%3D+2026-05-06+12%3A27%3A17&sort=updated_at" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://staging-api.vm400.consulting1x1.info/api/azure/v1/product-category"
);
const params = {
"page": "1",
"per_page": "16",
"filter[updated_at]": "<= 2026-05-06 12:27:17",
"sort": "updated_at",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"Id": 10,
"ProductCategoryName": "Colorant",
"CreateDate": "2025-12-16 10:02:53",
"LastUpdateDate": "2025-12-16 10:02:53"
},
{
"Id": 10,
"ProductCategoryName": "Colorant",
"CreateDate": "2025-12-16 10:02:53",
"LastUpdateDate": "2025-12-16 10:02:53"
}
],
"links": {
"first": "/?page=1",
"last": "/?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "/?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "/",
"per_page": 10,
"to": 2,
"total": 2
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Profile-Supplier-Product-Category
Profile Supplier Product Categories Index
requires authentication
No model/data source in current system. Returns empty collection so route is callable.
Example request:
curl --request GET \
--get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/profile-supplier-product-category?page=1&per_page=4" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://staging-api.vm400.consulting1x1.info/api/azure/v1/profile-supplier-product-category"
);
const params = {
"page": "1",
"per_page": "4",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"Id": null,
"OrganisationId": null,
"ProductCategoryId": null,
"CreateDate": null,
"LastUpdateDate": null
},
{
"Id": null,
"OrganisationId": null,
"ProductCategoryId": null,
"CreateDate": null,
"LastUpdateDate": null
}
]
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Profile-Supplier-Type
Profile Supplier Types Index
requires authentication
List all supplier profiles (organisation_id, facility_type_id = SupplierTypeId).
Example request:
curl --request GET \
--get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/profile-supplier-type?page=1&per_page=9&filter%5Bupdated_at%5D=%3C%3D+2026-05-07+12%3A27%3A17&sort=updated_at" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://staging-api.vm400.consulting1x1.info/api/azure/v1/profile-supplier-type"
);
const params = {
"page": "1",
"per_page": "9",
"filter[updated_at]": "<= 2026-05-07 12:27:17",
"sort": "updated_at",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"Id": 1,
"OrganisationId": 1,
"SupplierTypeId": 8,
"CreateDate": "2025-11-14 09:22:11",
"LastUpdateDate": "2025-11-14 09:22:11"
},
{
"Id": 1,
"OrganisationId": 1,
"SupplierTypeId": 8,
"CreateDate": "2025-11-14 09:22:11",
"LastUpdateDate": "2025-11-14 09:22:11"
}
],
"links": {
"first": "/?page=1",
"last": "/?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "/?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "/",
"per_page": 10,
"to": 2,
"total": 2
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Supplier-Type
Supplier Types Index
requires authentication
List all supplier (facility) types.
Example request:
curl --request GET \
--get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/supplier-type?page=1&per_page=11" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://staging-api.vm400.consulting1x1.info/api/azure/v1/supplier-type"
);
const params = {
"page": "1",
"per_page": "11",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"Id": 1,
"SupplierTypeName": "Accessories and Trims",
"CreateDate": null,
"LastUpdateDate": null
},
{
"Id": 1,
"SupplierTypeName": "Accessories and Trims",
"CreateDate": null,
"LastUpdateDate": null
}
],
"links": {
"first": "/?page=1",
"last": "/?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "/?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "/",
"per_page": 10,
"to": 2,
"total": 2
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Users
Users Index
requires authentication
List all users.
Example request:
curl --request GET \
--get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/users?page=1&per_page=7&filter%5Bupdated_at%5D=%3C+2026-04-15+12%3A27%3A17&sort=updated_at" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"const url = new URL(
"https://staging-api.vm400.consulting1x1.info/api/azure/v1/users"
);
const params = {
"page": "1",
"per_page": "7",
"filter[updated_at]": "< 2026-04-15 12:27:17",
"sort": "updated_at",
};
Object.keys(params)
.forEach(key => url.searchParams.append(key, params[key]));
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Example response (200):
{
"data": [
{
"Id": 1,
"UserId": "02-TXFQXFYRE4ACK-M",
"FirstName": "System",
"LastName": "User",
"FullName": "System User",
"IsActive": true,
"Email": "admin@localhost",
"Phone": "+13523381248",
"Address1": null,
"Address2": null,
"StateName": null,
"CityName": null,
"ZipCode": null,
"LocationId": null,
"CreateDate": "2025-07-24 13:23:18",
"DeleteDate": null,
"LastUpdateDate": "2025-12-08 15:12:52"
},
{
"Id": 1,
"UserId": "02-TXFQXFYRE4ACK-M",
"FirstName": "System",
"LastName": "User",
"FullName": "System User",
"IsActive": true,
"Email": "admin@localhost",
"Phone": "+13523381248",
"Address1": null,
"Address2": null,
"StateName": null,
"CityName": null,
"ZipCode": null,
"LocationId": null,
"CreateDate": "2025-07-24 13:23:18",
"DeleteDate": null,
"LastUpdateDate": "2025-12-08 15:12:52"
}
],
"links": {
"first": "/?page=1",
"last": "/?page=1",
"prev": null,
"next": null
},
"meta": {
"current_page": 1,
"from": 1,
"last_page": 1,
"links": [
{
"url": null,
"label": "« Previous",
"active": false
},
{
"url": "/?page=1",
"label": "1",
"active": true
},
{
"url": null,
"label": "Next »",
"active": false
}
],
"path": "/",
"per_page": 10,
"to": 2,
"total": 2
}
}
Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.