MENU navbar-image

Introduction

    A collection of API endpoints you will need to interact with the system.

    About PUT / PATCH requests: PUT means you send the entire resource to be updated, while PATCH means you send only the fields that need to be updated. Also regarding RFC 5789, the body of a PATCH is not filled for some Content-Types, what will work is sending via application/json.

    About Permissions: These can depend on user or organisation user roles and will be given by the system or admin actions internally.

This documentation aims to provide all the information you need to work with our API.

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.

Admin

Clearstream

Index

requires authentication

List all clearstream requests

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/admin/1/clearstream?per_page=16&sort=id&filter%5Bid%5D=quam&filter%5Bcreated_at%5D=perferendis&search=esse&column=organisations.name&page=1" \
    --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/admin/1/clearstream"
);

const params = {
    "per_page": "16",
    "sort": "id",
    "filter[id]": "quam",
    "filter[created_at]": "perferendis",
    "search": "esse",
    "column": "organisations.name",
    "page": "1",
};
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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 87
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/admin/{organisation_id}/clearstream

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 16

sort   string  optional    

sort by any accepted column: id, status, lab_status, created_at, organisation_name. prefix a "-" before the column name to sort in descending order Example: id

filter[id]   string  optional    

Filter column id by any accepted value. Matches part of the value. Example: quam

filter[organisations.name]   string  optional    

Filter column organisations.name by any accepted value. Matches part of the value. Example: dolor

filter[wastewater_reports.status]   string  optional    

Filter column wastewater_reports.status by any accepted value. The status of the report Example: vel

filter[wastewater_lab_requests.status]   string  optional    

Filter column wastewater_lab_requests.status by any accepted value. The status of the associated lab request Example: sint

filter[created_at]   string  optional    

Filter column created_at by any accepted value. The date the report was created Example: perferendis

search   string  optional    

Search in all of these columns: organisations.name, wastewater_reports.reference_id, wastewater_lab_requests.status, wastewater_reports.status Example: esse

column   string  optional    

get a distinct list of filterable values for any of the columns: organisations.name, wastewater_reports.status, wastewater_lab_requests.status, wastewater_reports.created_at. Example: organisations.name

page   integer  optional    

the page number to show. Example: 1

Show

requires authentication

Get a single clearstream report

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/admin/1/clearstream/1" \
    --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/admin/1/clearstream/1"
);

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,
        "reference_id": "TR543HN21",
        "uuid": "a1be2564-03c3-42fe-a0e2-f7088f4dd90b",
        "organisation_id": 11605,
        "status": "PASSED",
        "created_at": "2022-10-13T11:42:54.000000Z",
        "updated_at": "2022-10-13T11:45:27.000000Z",
        "archived_at": null,
        "last_viewed_at": "2026-05-10 02:33:51",
        "payment_completed_at": null,
        "organisation": {
            "id": 11605,
            "maxio_customer_id": 313351,
            "reference_id": "01-8ZQM4QMHWHL-R",
            "pdc_id": null,
            "gateway_aid": "A325IM69",
            "uuid": "dbd7d873-b6fa-4c47-9180-be08b4e7881f",
            "type_id": 2,
            "status": "approved",
            "name": "Zaber & Zubair Fabrics Limited.",
            "legal_name": "Zaber & Zubair Fabrics Limited.",
            "address_1": "Pagar, Tongi, Gazipur.",
            "address_2": null,
            "city": "Gazipur",
            "state": "Dhaka",
            "location": "BD",
            "zip": "1710",
            "phone": "+8802 9801012,",
            "email": "sustainability@znzfab.com",
            "contact_first_name": "Md Zakir",
            "contact_last_name": "Hossen",
            "website": "https://www.znzfab.com",
            "avatar_url": null,
            "applicant_comment": null,
            "reviewer_comment": null,
            "registration_mail_sent_at": null,
            "created_at": "2018-02-08T02:19:43.000000Z",
            "updated_at": "2026-05-12T15:29:24.000000Z",
            "reviewer_comment_category": null,
            "profile_reviewed_at": null,
            "profile_reviewed_by_user_id": null,
            "location_name": "Bangladesh"
        },
        "profile": null
    }
}
 

Request      

GET api/admin/{organisation_id}/clearstream/{report_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Terminate

requires authentication

Terminate any ongoing clearstream cycle

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/admin/1/clearstream/1/terminate" \
    --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/admin/1/clearstream/1/terminate"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/admin/{organisation_id}/clearstream/{report_id}/terminate

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

InCheck Visibility

Index

requires authentication

List InCheck visibility settings for an organisation of type Performance InCheck Provider

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/admin/1/incheck/visibility?per_page=8&filter%5Borganisation_name%5D=tenetur&filter%5Blevel_name%5D=id&filter%5Bvisibility_visible%5D=&filter%5Bvisibility_active%5D=&filter%5Bvisibility_marketing_text%5D=suscipit&sort=organisation_name&page=1" \
    --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/admin/1/incheck/visibility"
);

const params = {
    "per_page": "8",
    "filter[organisation_name]": "tenetur",
    "filter[level_name]": "id",
    "filter[visibility_visible]": "0",
    "filter[visibility_active]": "0",
    "filter[visibility_marketing_text]": "suscipit",
    "sort": "organisation_name",
    "page": "1",
};
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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 86
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/admin/{organisation_id}/incheck/visibility

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 8

filter[organisation_name]   string  optional    

Filter column organisation_name by any accepted value. name of the organisation Example: tenetur

filter[level_name]   string  optional    

Filter column level_name by any accepted value. name of the InCheck level Example: id

filter[visibility_visible]   boolean  optional    

Filter column visibility_visible by any accepted value. visibility status Example: false

filter[visibility_active]   boolean  optional    

Filter column visibility_active by any accepted value. active status Example: false

filter[visibility_marketing_text]   string  optional    

Filter column visibility_marketing_text by any accepted value. marketing text Example: suscipit

sort   string  optional    

sort by any accepted column: organisation_name, level_name, visibility_visible, visibility_active, visibility_marketing_text. prefix a "-" before the column name to sort in descending order Example: organisation_name

page   integer  optional    

the page number to show. Example: 1

Update

requires authentication

Update an InCheck visibility setting

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/admin/1/incheck/visibility/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"jfltzpfgfkojzlaplukc\",
    \"visible\": false,
    \"active\": false,
    \"marketing_text\": \"kdrjaygmtenr\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/admin/1/incheck/visibility/1"
);

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

let body = {
    "name": "jfltzpfgfkojzlaplukc",
    "visible": false,
    "active": false,
    "marketing_text": "kdrjaygmtenr"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "InCheck visibility updated successfully."
}
 

Request      

PUT api/admin/{organisation_id}/incheck/visibility/{id}

PATCH api/admin/{organisation_id}/incheck/visibility/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the visibility. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: jfltzpfgfkojzlaplukc

visible   boolean     

Example: false

active   boolean     

Example: false

marketing_text   string     

Must not be greater than 1024 characters. Example: kdrjaygmtenr

Index

requires authentication

List InCheck visibility settings for an organisation of type Performance InCheck Provider

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/incheck/1/visibility?per_page=6&filter%5Borganisation_name%5D=rerum&filter%5Blevel_name%5D=dolores&filter%5Bvisibility_visible%5D=&filter%5Bvisibility_active%5D=1&filter%5Bvisibility_marketing_text%5D=hic&sort=organisation_name&page=1" \
    --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/incheck/1/visibility"
);

const params = {
    "per_page": "6",
    "filter[organisation_name]": "rerum",
    "filter[level_name]": "dolores",
    "filter[visibility_visible]": "0",
    "filter[visibility_active]": "1",
    "filter[visibility_marketing_text]": "hic",
    "sort": "organisation_name",
    "page": "1",
};
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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 78
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/incheck/{organisation_id}/visibility

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 6

filter[organisation_name]   string  optional    

Filter column organisation_name by any accepted value. name of the organisation Example: rerum

filter[level_name]   string  optional    

Filter column level_name by any accepted value. name of the InCheck level Example: dolores

filter[visibility_visible]   boolean  optional    

Filter column visibility_visible by any accepted value. visibility status Example: false

filter[visibility_active]   boolean  optional    

Filter column visibility_active by any accepted value. active status Example: true

filter[visibility_marketing_text]   string  optional    

Filter column visibility_marketing_text by any accepted value. marketing text Example: hic

sort   string  optional    

sort by any accepted column: organisation_name, level_name, visibility_visible, visibility_active, visibility_marketing_text. prefix a "-" before the column name to sort in descending order Example: organisation_name

page   integer  optional    

the page number to show. Example: 1

Organisation API Keys

Index

requires authentication

List Organisation API Keys (with trashed!)

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/admin/organisation-api-keys?per_page=13&filter%5Bid%5D=nisi&filter%5Borganisation_id%5D=minima&filter%5Blast_used_at%5D=possimus&filter%5Bcreated_at%5D=quia&sort=id&page=1" \
    --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/admin/organisation-api-keys"
);

const params = {
    "per_page": "13",
    "filter[id]": "nisi",
    "filter[organisation_id]": "minima",
    "filter[last_used_at]": "possimus",
    "filter[created_at]": "quia",
    "sort": "id",
    "page": "1",
};
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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 85
vary: Origin
 

{
    "message": "No organisation user set for the current login token."
}
 

Request      

GET api/admin/organisation-api-keys

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 13

filter[id]   string  optional    

Filter column id by any accepted value. Matches exact value. Example: nisi

filter[organisation_id]   string  optional    

Filter column organisation_id by any accepted value. Matches exact value. Example: minima

filter[last_used_at]   string  optional    

Filter column last_used_at by any accepted value. Has dynamic date filtering, e.g. <= < = > >= Example: possimus

filter[created_at]   string  optional    

Filter column created_at by any accepted value. Has dynamic date filtering, e.g. <= < = > >= Example: quia

sort   string  optional    

sort by any accepted column: id, organisation_id, last_used_at, created_at. prefix a "-" before the column name to sort in descending order Example: id

page   integer  optional    

the page number to show. Example: 1

Destroy

requires authentication

Delete an Organisation API Key

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/admin/organisation-api-keys/1" \
    --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/admin/organisation-api-keys/1"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Organisation API key revoked successfully."
}
 

Request      

DELETE api/admin/organisation-api-keys/{token_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

token_id   integer     

The ID of the token. Example: 1

Organisation Invitations

Index

requires authentication

Shows all organisation invitations.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/admin/1/organisations/invitations?filter%5Bstatus%5D=aliquam&sort=receiving_user_mail&page=1&per_page=12&search=similique" \
    --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/admin/1/organisations/invitations"
);

const params = {
    "filter[status]": "aliquam",
    "sort": "receiving_user_mail",
    "page": "1",
    "per_page": "12",
    "search": "similique",
};
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,
            "reference_id": "06-QAX2XTKPKQT-Y",
            "uuid": "a1bbba36-062c-44ea-adaf-c10774547880",
            "inviting_organisation_id": 19430,
            "inviting_user_id": 18968,
            "receiving_organisation_id": 19430,
            "receiving_user_id": 18968,
            "status": "INVITED",
            "valid_until": "2026-05-15T21:42:30.000000Z",
            "redeemed_at": null,
            "auto_connect": false,
            "created_at": "2026-05-08T21:42:30.000000Z",
            "updated_at": "2026-05-08T21:42:30.000000Z"
        },
        {
            "id": 1,
            "reference_id": "06-QAX2XTKPKQT-Y",
            "uuid": "a1bbba36-062c-44ea-adaf-c10774547880",
            "inviting_organisation_id": 19430,
            "inviting_user_id": 18968,
            "receiving_organisation_id": 19430,
            "receiving_user_id": 18968,
            "status": "INVITED",
            "valid_until": "2026-05-15T21:42:30.000000Z",
            "redeemed_at": null,
            "auto_connect": false,
            "created_at": "2026-05-08T21:42:30.000000Z",
            "updated_at": "2026-05-08T21:42:30.000000Z"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "/",
        "per_page": "100",
        "to": 2
    },
    "receiving_user_mail": "user@example.com",
    "receiving_organisation_type": "1"
}
 

Request      

GET api/admin/{organisation_id}/organisations/invitations

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

filter[organisations.type_id]   integer  optional    

Filter column organisations.type_id by any accepted value. Receiving organisation type id. Example: 7

filter[status]   string  optional    

Filter column status by any accepted value. Status of the invitation. (REGISTERED, INVITED, EXPIRED) Example: aliquam

sort   string  optional    

sort by any accepted column: receiving_user_mail, receiving_organisation_type, status, created_at. prefix a "-" before the column name to sort in descending order Example: receiving_user_mail

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 12

search   string  optional    

Search in all of these columns: receiving_user_mail, receiving_organisation_name Example: similique

User

Index

requires authentication

Get all users.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/admin/users?per_page=16&sort=first_name&filter%5Binvitation_status%5D=quibusdam&filter%5Bprofile_reviewed_at%5D=eius&page=1&search=hic" \
    --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/admin/users"
);

const params = {
    "per_page": "16",
    "sort": "first_name",
    "filter[invitation_status]": "quibusdam",
    "filter[profile_reviewed_at]": "eius",
    "page": "1",
    "search": "hic",
};
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,
            "reference_id": "02-PYSRAKAS6CQ-B",
            "ulid": "01KR4RMPQWBKWZ0XYZJ2JH0CQM",
            "pdc_id": null,
            "role_id": 2,
            "first_name": "Amy",
            "last_name": "Huang",
            "email": "amyhuang@ecic.com.tw",
            "email_verified_at": "2017-06-17T04:45:09.000000Z",
            "phone": "+886910807779",
            "location": "TW",
            "locale": "en-US",
            "created_at": "2017-06-17T04:45:09.000000Z",
            "updated_at": "2017-06-17T04:45:09.000000Z",
            "deleted_at": null,
            "last_active_at": null,
            "profile_reviewed_at": null,
            "status": "active",
            "profile_picture_url": null,
            "location_name": "Taiwan"
        },
        {
            "id": 1,
            "reference_id": "02-PYSRAKAS6CQ-B",
            "ulid": "01KR4RMPQWBKWZ0XYZJ2JH0CQM",
            "pdc_id": null,
            "role_id": 2,
            "first_name": "Amy",
            "last_name": "Huang",
            "email": "amyhuang@ecic.com.tw",
            "email_verified_at": "2017-06-17T04:45:09.000000Z",
            "phone": "+886910807779",
            "location": "TW",
            "locale": "en-US",
            "created_at": "2017-06-17T04:45:09.000000Z",
            "updated_at": "2017-06-17T04:45:09.000000Z",
            "deleted_at": null,
            "last_active_at": null,
            "profile_reviewed_at": null,
            "status": "active",
            "profile_picture_url": null,
            "location_name": "Taiwan"
        }
    ]
}
 

Request      

GET api/admin/users

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 16

sort   string  optional    

sort by any accepted column: first_name, last_name, email, registration_date, last_active_at, invitation_status, profile_reviewed_at. prefix a "-" before the column name to sort in descending order Example: first_name

filter[invitation_status]   string  optional    

Filter column invitation_status by any accepted value. Matches part of the value. Example: quibusdam

filter[profile_reviewed_at]   custom  optional    

Filter column profile_reviewed_at by any accepted value. users.profile_reviewed_at Example: eius

page   integer  optional    

the page number to show. Example: 1

search   string  optional    

Search in all of these columns: first_name, last_name, email Example: hic

Update

requires authentication

Update a user.

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/admin/users/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"first_name\": \"tjhdsvjzbuaizxggfvkmqilow\",
    \"last_name\": \"sobgqynustnuakbtouiyjrf\",
    \"email\": \"jlangosh@example.org\",
    \"phone\": \"+1234567890\",
    \"location\": \"US\",
    \"locale\": \"zh_CN\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/admin/users/1"
);

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

let body = {
    "first_name": "tjhdsvjzbuaizxggfvkmqilow",
    "last_name": "sobgqynustnuakbtouiyjrf",
    "email": "jlangosh@example.org",
    "phone": "+1234567890",
    "location": "US",
    "locale": "zh_CN"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, successful):


{
    "message": "User updated successfully"
}
 

Request      

PUT api/admin/users/{id}

PATCH api/admin/users/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the user. Example: 1

Body Parameters

first_name   string     

Must be at least 2 characters. Must not be greater than 50 characters. Example: tjhdsvjzbuaizxggfvkmqilow

last_name   string     

Must be at least 2 characters. Must not be greater than 50 characters. Example: sobgqynustnuakbtouiyjrf

email   string     

Must be a valid email address. Must not be greater than 254 characters. Example: jlangosh@example.org

phone   string  optional    

The user's phone number. Must be at least 8 characters. Must not be greater than 20 characters. Example: +1234567890

location   string  optional    

The user's location. Must not be greater than 255 characters. Example: US

locale   string  optional    

Must not be greater than 12 characters. Example: zh_CN

Show

requires authentication

Display the specified resource.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/admin/users/1" \
    --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/admin/users/1"
);

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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 84
vary: Origin
 

{
    "message": "No organisation user set for the current login token."
}
 

Request      

GET api/admin/users/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the user. Example: 1

Reset Password

requires authentication

Shares functionality from auth.forgot-password route but not throttled for admins

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/admin/users/1/reset-password" \
    --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/admin/users/1/reset-password"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/admin/users/{user_id}/reset-password

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

Auth

Login

Handle an incoming authentication request.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/auth/login" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"admin@localhost\",
    \"password\": \"password\",
    \"remember\": false
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/auth/login"
);

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

let body = {
    "email": "admin@localhost",
    "password": "password",
    "remember": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, successful):


{
    "message": "You have been successfully logged in.",
    "token": "_token_"
}
 

Example response (401, wrong credentials):


{
    "message": "These credentials do not match our records"
}
 

Example response (401, plattform is not registered):


{
    "message": "Plattform for Host $host doesn't exist"
}
 

Example response (412, validation error):


{
    "message": "must be valid email"
}
 

Request      

POST api/auth/login

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

The email of the user. Must be a valid email address. Must not be greater than 254 characters. Example: admin@localhost

password   string     

The password of the user. Must not be greater than 255 characters. Example: password

remember   boolean  optional    

Example: false

Logout

requires authentication

Log the user out of the application.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/auth/logout" \
    --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/auth/logout"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200, successful):


{
    "message": "You have been successfully logged out."
}
 

Request      

POST api/auth/logout

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Get User By Token

requires authentication

Get the user Bearer Token

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/auth/getUserByToken" \
    --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/auth/getUserByToken"
);

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,
        "reference_id": "02-PYSRAKAS6CQ-B",
        "ulid": "01KR4RMPQWBKWZ0XYZJ2JH0CQM",
        "pdc_id": null,
        "role_id": 2,
        "first_name": "Amy",
        "last_name": "Huang",
        "email": "amyhuang@ecic.com.tw",
        "email_verified_at": "2017-06-17T04:45:09.000000Z",
        "phone": "+886910807779",
        "location": "TW",
        "locale": "en-US",
        "created_at": "2017-06-17T04:45:09.000000Z",
        "updated_at": "2017-06-17T04:45:09.000000Z",
        "deleted_at": null,
        "last_active_at": null,
        "profile_reviewed_at": null,
        "status": "active",
        "profile_picture_url": null,
        "location_name": "Taiwan",
        "role": {
            "id": 2,
            "parent_id": null,
            "name": "USER"
        }
    }
}
 

Request      

GET api/auth/getUserByToken

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Forgot Password

Handle an incoming password reset link request.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/auth/forgot-password" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"klein.bret@example.org\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/auth/forgot-password"
);

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

let body = {
    "email": "klein.bret@example.org"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, successful):


{
    "message": "You will receive instructions to reset email if you have an account with us."
}
 

Example response (200, wrong email):


{
    "message": "You will receive instructions to reset email if you have an account with us."
}
 

Example response (412, validation error):


{
    "message": "must be valid email"
}
 

Request      

POST api/auth/forgot-password

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

email   string     

Must be a valid email address. The email of an existing record in the users table. Example: klein.bret@example.org

Reset Password

Reset a password requested in a forgot password request

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/auth/reset-password?token=consequatur" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"email\": \"flarson@example.net\",
    \"token\": \"fugit\",
    \"password\": \"password\",
    \"password_confirmation\": \"password\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/auth/reset-password"
);

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

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

let body = {
    "email": "flarson@example.net",
    "token": "fugit",
    "password": "password",
    "password_confirmation": "password"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, successful):


{
    "message": "Your password has been reset."
}
 

Example response (412, validation error):


{
    "message": "must be valid email"
}
 

Request      

POST api/auth/reset-password

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

token   string     

The password reset token, gathered from the reset link in the email. Example: consequatur

Body Parameters

email   string     

The email. Example: flarson@example.net

token   string  optional    

this is not actually necessary in body, but documentation generates this falsely. Example: fugit

password   string     

The new password. Example: password

password_confirmation   string     

The password confirmation. Example: password

Verify Email

requires authentication

Verify an email change request.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/auth/users/1/verify-email?signature=dolor&expires=19" \
    --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/auth/users/1/verify-email"
);

const params = {
    "signature": "dolor",
    "expires": "19",
};
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, successful):


{
    "message": "Email verified successfully"
}
 

Request      

GET api/auth/users/{user_id}/verify-email

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

Query Parameters

signature   string     

signature hash. generated by the action signing this link. Example: dolor

expires   integer     

expiring timestamp. generated by the action signing this link. Example: 19

Confirm password

requires authentication

Confirm the password change

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/auth/users/1/confirm-password-change?signature=ab&expires=15" \
    --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/auth/users/1/confirm-password-change"
);

const params = {
    "signature": "ab",
    "expires": "15",
};
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, successful):


{
    "message": "Password change succeeded"
}
 

Request      

GET api/auth/users/{user_id}/confirm-password-change

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

Query Parameters

signature   string     

signature hash. generated by the action signing this link. Example: ab

expires   integer     

expiring timestamp. generated by the action signing this link. Example: 15

Complete Registration

requires authentication

Complete the registration of a user, which was created by invitation.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/auth/complete-registration/1?signature=sint&expires=2" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"first_name\": \"jpk\",
    \"last_name\": \"fxjsrwhwljticvfwjcgqm\",
    \"password\": \"p\'7*h{rfp&cE^yCy~,-\",
    \"password_confirmation\": \"ut\",
    \"phone\": \"+49123456789\",
    \"locale\": \"kfo_CI\",
    \"location\": \"vloifstltdsclsgvzvyydt\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/auth/complete-registration/1"
);

const params = {
    "signature": "sint",
    "expires": "2",
};
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",
};

let body = {
    "first_name": "jpk",
    "last_name": "fxjsrwhwljticvfwjcgqm",
    "password": "p'7*h{rfp&cE^yCy~,-",
    "password_confirmation": "ut",
    "phone": "+49123456789",
    "locale": "kfo_CI",
    "location": "vloifstltdsclsgvzvyydt"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, successful):


{
    "message": "Registration completed successfully"
}
 

Request      

POST api/auth/complete-registration/{user_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

Query Parameters

signature   string     

signature hash. generated by the action signing this link. Example: sint

expires   integer     

expiring timestamp. generated by the action signing this link. Example: 2

Body Parameters

first_name   string     

Must be at least 2 characters. Must not be greater than 50 characters. Example: jpk

last_name   string     

Must be at least 2 characters. Must not be greater than 50 characters. Example: fxjsrwhwljticvfwjcgqm

password   string     

Must not be greater than 255 characters. Example: p'7*h{rfp&cE^yCy~,-

password_confirmation   string     

The value and password must match. Example: ut

phone   string  optional    

The phone number of the user. Must be at least 8 characters. Must not be greater than 20 characters. Example: +49123456789

locale   string  optional    

Must not be greater than 12 characters. Example: kfo_CI

location   string  optional    

Must not be greater than 255 characters. Example: vloifstltdsclsgvzvyydt

Set Organisation User

requires authentication

Set the organisation user for the current personal access token.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/auth/setOrganisationUser/1" \
    --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/auth/setOrganisationUser/1"
);

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, successful):


{
    "message": "Organisation user set successfully"
}
 

Example response (403, organisation user does not belong to user):


{
    "message": "The organisation user must belong to the same user as the personal access token."
}
 

Request      

GET api/auth/setOrganisationUser/{organisationUser_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisationUser_id   integer     

The ID of the organisationUser. Example: 1

Azure/V1

Certification-Results

Certification Results Reference Values

requires authentication

Static list from ProductCertificationStatusEnum (paginated). Ids are stable via azureApiId().

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/certification-results?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/certification-results"
);

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": null,
            "ResultName": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "ResultName": null,
            "CreateDate": null,
            "LastUpdateDate": null
        }
    ]
}
 

Request      

GET api/azure/v1/certification-results

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 11

Certification-Standards

MRSL Certification Standards Index

requires authentication

List all MRSL standards (mrsl_standards).

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/certification-standards?page=1&per_page=12&filter%5Bupdated_at%5D=%3D+2026-05-24+16%3A14%3A54&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/certification-standards"
);

const params = {
    "page": "1",
    "per_page": "12",
    "filter[updated_at]": "= 2026-05-24 16:14:54",
    "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,
            "CertificationName": "Brachi Testing Services",
            "CertificationEntity": null,
            "CreateDate": "2026-05-08 21:42:17",
            "LastUpdateDate": "2026-05-12 15:01:47"
        },
        {
            "Id": 1,
            "CertificationName": "Brachi Testing Services",
            "CertificationEntity": null,
            "CreateDate": "2026-05-08 21:42:17",
            "LastUpdateDate": "2026-05-12 15:01:47"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/certification-standards

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 12

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: = 2026-05-24 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

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=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/chemical-count-bracket"
);

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": null,
            "CountBracketName": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "CountBracketName": null,
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/chemical-count-bracket

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 18

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=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/chemical-weight-bracket"
);

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": null,
            "ChemicalWeightBracketName": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "ChemicalWeightBracketName": null,
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/chemical-weight-bracket

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 18

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=1&filter%5Bupdated_at%5D=%3E%3D+2026-06-17+16%3A14%3A54&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": "1",
    "filter[updated_at]": ">= 2026-06-17 16:14:54",
    "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": 15887,
            "ConnectedToId": 14374,
            "Status": "active",
            "Published": null,
            "StartDate": "2021-01-15 00:00:00",
            "EndDate": null,
            "LastUpdateDate": "2021-01-15 00:00:00"
        },
        {
            "id": 1,
            "ConnectedFromId": 15887,
            "ConnectedToId": 14374,
            "Status": "active",
            "Published": null,
            "StartDate": "2021-01-15 00:00:00",
            "EndDate": null,
            "LastUpdateDate": "2021-01-15 00:00: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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/connection-history

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 1

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: >= 2026-06-17 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Connections

Connections Index

requires authentication

List all organisation connections (sending ↔ receiving organisations).

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/connections?page=1&per_page=18&filter%5Bupdated_at%5D=%3D+2026-06-20+16%3A14%3A54&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/connections"
);

const params = {
    "page": "1",
    "per_page": "18",
    "filter[updated_at]": "= 2026-06-20 16:14:54",
    "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": 15887,
            "ConnectedToId": 14374
        },
        {
            "Id": 1,
            "ConnectedFromId": 15887,
            "ConnectedToId": 14374
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/connections

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 18

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: = 2026-06-20 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

CTZ-Levels

CTZ Levels Index

requires authentication

List all CTZ levels.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/ctz-levels?page=1&per_page=1&filter%5Bupdated_at%5D=%3D+2026-05-21+16%3A14%3A54&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/ctz-levels"
);

const params = {
    "page": "1",
    "per_page": "1",
    "filter[updated_at]": "= 2026-05-21 16:14:54",
    "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,
            "LevelName": "Foundational",
            "CreateDate": "2026-05-08 21:42:17",
            "LastUpdateDate": "2026-05-08 21:42:17"
        },
        {
            "Id": 1,
            "LevelName": "Foundational",
            "CreateDate": "2026-05-08 21:42:17",
            "LastUpdateDate": "2026-05-08 21:42:17"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/ctz-levels

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 1

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: = 2026-05-21 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Discharge-Type

Discharge Types Index

requires authentication

List all discharge types (supplier_attributes from group "Discharge types").

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/discharge-type?page=1&per_page=8" \
    --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/discharge-type"
);

const params = {
    "page": "1",
    "per_page": "8",
};
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,
            "DischargeName": "Cotton",
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": 1,
            "DischargeName": "Cotton",
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/discharge-type

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 8

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=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/material-category"
);

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,
            "MaterialCategoryName": "Cotton",
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": 1,
            "MaterialCategoryName": "Cotton",
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/material-category

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 11

MSRL-Levels

MRSL Conformance Levels Index

requires authentication

List all MRSL conformance levels.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/msrl-levels?page=1&per_page=7&filter%5Bupdated_at%5D=%3C%3D+2026-06-13+16%3A14%3A54&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/msrl-levels"
);

const params = {
    "page": "1",
    "per_page": "7",
    "filter[updated_at]": "<= 2026-06-13 16:14:54",
    "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,
            "LevelName": "Level 1",
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": 1,
            "LevelName": "Level 1",
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/msrl-levels

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 7

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: <= 2026-06-13 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

MSRL-Versions

MRSL Version Strings (distinct)

requires authentication

Unique version values from mrsl_standards, including soft-deleted rows. Id is MIN(id) per version group.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/msrl-versions?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/msrl-versions"
);

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,
            "VersionName": "ZDHC MRSL v2.0",
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "VersionName": "ZDHC MRSL v2.0",
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/msrl-versions

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 20

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=8&filter%5Bupdated_at%5D=%3D+2026-06-15+16%3A14%3A54&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": "8",
    "filter[updated_at]": "= 2026-06-15 16:14:54",
    "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": "A356IB10",
            "SalesforceId": null,
            "SandboxID": "01-J4CGS34JUJV-Q",
            "PdcId": null,
            "Name": "Ping Yang Pengye Shoes Com Ltd",
            "LegalName": "Ping Yang Pengye Shoes Com Ltd",
            "Address1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
            "Address2": null,
            "CityName": "Wenzhou",
            "StateName": "Zhejiang",
            "LocationId": "CN",
            "ZipCode": "",
            "Latitude": null,
            "Longitude": null,
            "Phone": "",
            "Email": "pengye@126.com",
            "Website": null,
            "TaxId": null,
            "IPE": null,
            "RegistrationNumber": null,
            "OrganisationDescription": null,
            "ContactFirstName": "JIAN",
            "ContactLastName": "Le",
            "OrganisationTypeId": 2,
            "OsHubId": null,
            "HiggId": null,
            "CurrentAccountStatusId": null,
            "CreateDate": "2021-11-04 12:19:55",
            "DeleteDate": null,
            "LastUpdateDate": "2026-05-12 14:45:25"
        },
        {
            "Id": 1,
            "ZDHCAid": "A356IB10",
            "SalesforceId": null,
            "SandboxID": "01-J4CGS34JUJV-Q",
            "PdcId": null,
            "Name": "Ping Yang Pengye Shoes Com Ltd",
            "LegalName": "Ping Yang Pengye Shoes Com Ltd",
            "Address1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
            "Address2": null,
            "CityName": "Wenzhou",
            "StateName": "Zhejiang",
            "LocationId": "CN",
            "ZipCode": "",
            "Latitude": null,
            "Longitude": null,
            "Phone": "",
            "Email": "pengye@126.com",
            "Website": null,
            "TaxId": null,
            "IPE": null,
            "RegistrationNumber": null,
            "OrganisationDescription": null,
            "ContactFirstName": "JIAN",
            "ContactLastName": "Le",
            "OrganisationTypeId": 2,
            "OsHubId": null,
            "HiggId": null,
            "CurrentAccountStatusId": null,
            "CreateDate": "2021-11-04 12:19:55",
            "DeleteDate": null,
            "LastUpdateDate": "2026-05-12 14:45:25"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/organisations

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 8

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: = 2026-06-15 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Organisation-Registration-Statuses

Organisation registration status history (ModelHistory rows with status in `changed_fields`).

requires authentication

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/organisation-registration-statuses?page=1&per_page=11&filter%5Bupdated_at%5D=%3C%3D+2026-06-10+16%3A14%3A54&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-registration-statuses"
);

const params = {
    "page": "1",
    "per_page": "11",
    "filter[updated_at]": "<= 2026-06-10 16:14:54",
    "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,
            "RegistrationStatusId": null,
            "StartDate": "2026-05-08 21:42:17",
            "EndDate": null,
            "LastUpdateDate": "2026-05-08 21:42:17"
        },
        {
            "Id": 1,
            "OrganisationId": 1,
            "RegistrationStatusId": null,
            "StartDate": "2026-05-08 21:42:17",
            "EndDate": null,
            "LastUpdateDate": "2026-05-08 21:42:17"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/organisation-registration-statuses

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 11

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: <= 2026-06-10 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Organisation-Type

Organisation Types Index

requires authentication

List all organisation types.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/organisation-type?page=1&per_page=9&filter%5Bupdated_at%5D=%3C%3D+2026-06-05+16%3A14%3A54&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-type"
);

const params = {
    "page": "1",
    "per_page": "9",
    "filter[updated_at]": "<= 2026-06-05 16:14:54",
    "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,
            "TypeName": "ZDHC Internal",
            "CreateDate": "2026-05-08 21:42:16",
            "LastUpdateDate": "2026-05-21 16:14:29"
        },
        {
            "Id": 1,
            "TypeName": "ZDHC Internal",
            "CreateDate": "2026-05-08 21:42:16",
            "LastUpdateDate": "2026-05-21 16:14:29"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/organisation-type

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 9

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: <= 2026-06-05 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

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=11&filter%5Bupdated_at%5D=%3E%3D+2026-06-02+16%3A14%3A54&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": "11",
    "filter[updated_at]": ">= 2026-06-02 16:14:54",
    "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-76N8YMAVWFR-I",
            "OrganisationId": "01-CHFY7TAWBWS-B",
            "RoleId": 4,
            "StartDate": "2026-05-08 21:42:00",
            "EndDate": null,
            "LastUpdateDate": "2026-05-08 21:42:00"
        },
        {
            "Id": 1,
            "UserId": "02-76N8YMAVWFR-I",
            "OrganisationId": "01-CHFY7TAWBWS-B",
            "RoleId": 4,
            "StartDate": "2026-05-08 21:42:00",
            "EndDate": null,
            "LastUpdateDate": "2026-05-08 21:42: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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/organisation-users

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 11

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: >= 2026-06-02 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

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=12" \
    --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": "12",
};
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": "Cotton",
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": 1,
            "ProcessName": "Cotton",
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/processes

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 12

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=1&filter%5Bupdated_at%5D=%3C+2026-06-07+16%3A14%3A54&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": "1",
    "filter[updated_at]": "< 2026-06-07 16:14:54",
    "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,
            "ProductCategoryName": "Colorant",
            "CreateDate": "2026-05-08 21:42:46",
            "LastUpdateDate": "2026-05-08 21:42:46"
        },
        {
            "Id": 1,
            "ProductCategoryName": "Colorant",
            "CreateDate": "2026-05-08 21:42:46",
            "LastUpdateDate": "2026-05-08 21:42:46"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/product-category

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 1

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: < 2026-06-07 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Product-CTZ-Certificates

Product CTZ Certifications Index

requires authentication

List all product CTZ certifications.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/product-ctz-certificates?page=1&per_page=14&filter%5Bupdated_at%5D=%3D+2026-06-08+16%3A14%3A54&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-ctz-certificates"
);

const params = {
    "page": "1",
    "per_page": "14",
    "filter[updated_at]": "= 2026-06-08 16:14:54",
    "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,
            "ProductId": 180101,
            "CTZCertificationBodyId": 8613,
            "CTZCertificationResultId": 1,
            "VerificationStatusId": 2,
            "CTZLevelId": 1,
            "MSRLVersionId": null,
            "IssueDate": null,
            "ExpirationDate": null,
            "QualityCancelation": null,
            "QualityCancelationReason": null,
            "CreateDate": "2025-09-24 00:00:00",
            "LastUpdateDate": "2025-09-24 00:00:00"
        },
        {
            "Id": 1,
            "ProductId": 180101,
            "CTZCertificationBodyId": 8613,
            "CTZCertificationResultId": 1,
            "VerificationStatusId": 2,
            "CTZLevelId": 1,
            "MSRLVersionId": null,
            "IssueDate": null,
            "ExpirationDate": null,
            "QualityCancelation": null,
            "QualityCancelationReason": null,
            "CreateDate": "2025-09-24 00:00:00",
            "LastUpdateDate": "2025-09-24 00:00: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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/product-ctz-certificates

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 14

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: = 2026-06-08 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Product-MRSL-Certificates

Product MRSL Certifications Index

requires authentication

List all product MRSL certifications.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/product-msrl-certificates?page=1&per_page=20&filter%5Bupdated_at%5D=%3C+2026-05-31+16%3A14%3A54&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-msrl-certificates"
);

const params = {
    "page": "1",
    "per_page": "20",
    "filter[updated_at]": "< 2026-05-31 16:14:54",
    "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,
            "ProductId": 212878,
            "CertificationBodyId": 7747,
            "CertificationStandardId": 281,
            "CertificationResultId": 1,
            "VerificationStatusId": 2,
            "MSRLVersionId": "ZDHC MRSL v3.1",
            "MSRLLevelId": 3,
            "SDSid": 84327,
            "IssueDate": null,
            "ExpirationDate": "2026-01-31 00:00:00",
            "QualityCancelation": "2026-01-31 23:59:59",
            "QualityCancelationReason": null,
            "CreateDate": "2025-01-30 00:00:00",
            "LastUpdateDate": "2025-01-30 00:00:00"
        },
        {
            "Id": 1,
            "ProductId": 212878,
            "CertificationBodyId": 7747,
            "CertificationStandardId": 281,
            "CertificationResultId": 1,
            "VerificationStatusId": 2,
            "MSRLVersionId": "ZDHC MRSL v3.1",
            "MSRLLevelId": 3,
            "SDSid": 84327,
            "IssueDate": null,
            "ExpirationDate": "2026-01-31 00:00:00",
            "QualityCancelation": "2026-01-31 23:59:59",
            "QualityCancelationReason": null,
            "CreateDate": "2025-01-30 00:00:00",
            "LastUpdateDate": "2025-01-30 00:00: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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/product-msrl-certificates

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 20

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: < 2026-05-31 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Product-Publication-Status

Product Publication Status Reference 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/product-publication-status?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/product-publication-status"
);

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": null,
            "PublicationStatusName": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "PublicationStatusName": null,
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/product-publication-status

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 3

Product-Publication-Status-Log

Product Publication Status Log 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/product-publication-status-log?page=1&per_page=19" \
    --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-publication-status-log"
);

const params = {
    "page": "1",
    "per_page": "19",
};
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,
            "ProductID": null,
            "PublicationStatusID": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "ProductID": null,
            "PublicationStatusID": null,
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/product-publication-status-log

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 19

Product-SDS

Product Safety Data Sheets Index

requires authentication

List all safety data sheets.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/product-sds?page=1&per_page=2&filter%5Bupdated_at%5D=%3D+2026-05-26+16%3A14%3A54&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-sds"
);

const params = {
    "page": "1",
    "per_page": "2",
    "filter[updated_at]": "= 2026-05-26 16:14:54",
    "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,
            "ProductID": 63995,
            "SDSid": null,
            "IdentifiedUses": null,
            "FormulatorCountry": "",
            "SDSLanguage": "en",
            "Link": "http://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/63995/safety-data-sheet/1",
            "DocStatus": null,
            "UploadDate": "2019-03-02 00:00:00",
            "LastUpdateDate": "2019-03-02 00:00:00"
        },
        {
            "Id": 1,
            "ProductID": 63995,
            "SDSid": null,
            "IdentifiedUses": null,
            "FormulatorCountry": "",
            "SDSLanguage": "en",
            "Link": "http://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/63995/safety-data-sheet/1",
            "DocStatus": null,
            "UploadDate": "2019-03-02 00:00:00",
            "LastUpdateDate": "2019-03-02 00:00: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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/product-sds

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 2

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: = 2026-05-26 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Product-Status

Product Status Reference Values

requires authentication

Static list of product statuses from ProductStatusEnum (paginated).

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/product-status?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/product-status"
);

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,
            "ProductStatusName": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "ProductStatusName": null,
            "CreateDate": null,
            "LastUpdateDate": null
        }
    ]
}
 

Request      

GET api/azure/v1/product-status

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 4

Product-Status-Log

Product Status Log (current snapshot)

requires authentication

One row per chemical product: product id and status as stable Azure id (ProductStatusEnum::azureApiId()).

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/product-status-log?page=1&per_page=13&filter%5Bupdated_at%5D=%3C%3D+2026-06-05+16%3A14%3A54&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-status-log"
);

const params = {
    "page": "1",
    "per_page": "13",
    "filter[updated_at]": "<= 2026-06-05 16:14:54",
    "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": null,
            "ProductID": 1,
            "StatusID": 1,
            "CreateDate": "2017-10-06 00:00:00",
            "LastUpdateDate": "2023-02-28 00:00:00"
        },
        {
            "Id": null,
            "ProductID": 1,
            "StatusID": 1,
            "CreateDate": "2017-10-06 00:00:00",
            "LastUpdateDate": "2023-02-28 00:00: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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/product-status-log

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 13

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: <= 2026-06-05 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Product-Substrate

Product Substrates Index

requires authentication

List all product substrates.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/product-substrate?page=1&per_page=14&filter%5Bupdated_at%5D=%3E%3D+2026-06-01+16%3A14%3A54&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-substrate"
);

const params = {
    "page": "1",
    "per_page": "14",
    "filter[updated_at]": ">= 2026-06-01 16:14:54",
    "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,
            "SubstrateName": "Synthetic",
            "CreateDate": "2026-05-08 21:42:46",
            "LastUpdateDate": "2026-05-08 21:42:46"
        },
        {
            "Id": 1,
            "SubstrateName": "Synthetic",
            "CreateDate": "2026-05-08 21:42:46",
            "LastUpdateDate": "2026-05-08 21:42:46"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/product-substrate

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 14

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: >= 2026-06-01 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Product-Type

Product Types Index

requires authentication

List all product use types.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/product-type?page=1&per_page=11&filter%5Bupdated_at%5D=%3C%3D+2026-06-04+16%3A14%3A54&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-type"
);

const params = {
    "page": "1",
    "per_page": "11",
    "filter[updated_at]": "<= 2026-06-04 16:14:54",
    "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,
            "ProductTypeName": "Others",
            "CreateDate": "2026-05-08 21:42:46",
            "LastUpdateDate": "2026-05-08 21:42:46"
        },
        {
            "Id": 1,
            "ProductTypeName": "Others",
            "CreateDate": "2026-05-08 21:42:46",
            "LastUpdateDate": "2026-05-08 21:42:46"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/product-type

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 11

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: <= 2026-06-04 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Products-Category

Products–Categories Index

requires authentication

Derived links: product use type on the product × category allowed for that use type (chemical_product_use_typesproduct_category_use_types). One row per distinct product/category pair.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/products-category?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/products-category"
);

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": null,
            "ProductID": null,
            "ProductCategoryId": null,
            "CreateDate": null,
            "DeleteDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "ProductID": null,
            "ProductCategoryId": null,
            "CreateDate": null,
            "DeleteDate": null,
            "LastUpdateDate": null
        }
    ]
}
 

Request      

GET api/azure/v1/products-category

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 11

Products

Chemical Products Index

requires authentication

List all chemical products.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/products?page=1&per_page=18&filter%5Bupdated_at%5D=%3E%3D+2026-06-11+16%3A14%3A54&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/products"
);

const params = {
    "page": "1",
    "per_page": "18",
    "filter[updated_at]": ">= 2026-06-11 16:14:54",
    "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,
            "ZDHCId": "367089",
            "FormulatorProductCode": "20-Z4289ZZUE9-W",
            "ProductName": "A-POLE G-2 [P214AG76]",
            "ProductNameOthers": "P214AG76",
            "ProductDescription": "",
            "ProductChemcheckDescription": null,
            "FormulatorId": 5905,
            "CreateDate": "2017-10-06 00:00:00",
            "UploadDate": null,
            "LastUpdateDate": "2023-02-28 00:00:00"
        },
        {
            "id": 1,
            "ZDHCId": "367089",
            "FormulatorProductCode": "20-Z4289ZZUE9-W",
            "ProductName": "A-POLE G-2 [P214AG76]",
            "ProductNameOthers": "P214AG76",
            "ProductDescription": "",
            "ProductChemcheckDescription": null,
            "FormulatorId": 5905,
            "CreateDate": "2017-10-06 00:00:00",
            "UploadDate": null,
            "LastUpdateDate": "2023-02-28 00:00: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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/products

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 18

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: >= 2026-06-11 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Products-Substrate

Products–Substrates Index

requires authentication

Derived links: product use types on the product, categories for those types, substrates for those categories. One row per distinct product/substrate pair.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/products-substrate?page=1&per_page=5" \
    --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/products-substrate"
);

const params = {
    "page": "1",
    "per_page": "5",
};
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,
            "ProductID": null,
            "SubstrateId": null,
            "CreateDate": null,
            "DeleteDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "ProductID": null,
            "SubstrateId": null,
            "CreateDate": null,
            "DeleteDate": null,
            "LastUpdateDate": null
        }
    ]
}
 

Request      

GET api/azure/v1/products-substrate

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 5

Products-Type

Products–Use Types Index

requires authentication

Lists assignments between chemical products and product use types (chemical_product_use_types).

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/products-type?page=1&per_page=8&filter%5Bupdated_at%5D=%3C%3D+2026-05-30+16%3A14%3A54&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/products-type"
);

const params = {
    "page": "1",
    "per_page": "8",
    "filter[updated_at]": "<= 2026-05-30 16:14:54",
    "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,
            "ProductID": 307,
            "ProductTypeId": 235,
            "CreateDate": "2026-05-14 19:42:00",
            "DeleteDate": null,
            "LastUpdateDate": "2026-05-14 19:42:00"
        },
        {
            "Id": 1,
            "ProductID": 307,
            "ProductTypeId": 235,
            "CreateDate": "2026-05-14 19:42:00",
            "DeleteDate": null,
            "LastUpdateDate": "2026-05-14 19:42: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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/products-type

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 8

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: <= 2026-05-30 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Profile-Supplier-Chemicals

Profile Supplier Chemicals Index

requires authentication

List all profile–chemical-type links (pivot supplier_profile_attributes, Chemical Type group). ChemicalCountBracketId / ChemicalWeightBracketId have no source in current system.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/profile-supplier-chemicals?page=1&per_page=6" \
    --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-chemicals"
);

const params = {
    "page": "1",
    "per_page": "6",
};
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": 171159,
            "ChemicalTypeId": null,
            "ChemicalCountBracketId": null,
            "ChemicalWeightBracketId": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "OrganisationId": 171159,
            "ChemicalTypeId": null,
            "ChemicalCountBracketId": null,
            "ChemicalWeightBracketId": null,
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/profile-supplier-chemicals

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 6

Profile-Supplier-Material

Profile Supplier Materials Index

requires authentication

List all profile–material links (pivot supplier_profile_attributes, Materials group).

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/profile-supplier-material?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/profile-supplier-material"
);

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": null,
            "OrganisationId": 171159,
            "MaterialId": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "OrganisationId": 171159,
            "MaterialId": null,
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/profile-supplier-material

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 18

Profile-Supplier-Processes

Profile Supplier Processes Index

requires authentication

List all profile–process links (pivot supplier_profile_attributes, Chemical Process group).

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/profile-supplier-processes?page=1&per_page=1" \
    --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-processes"
);

const params = {
    "page": "1",
    "per_page": "1",
};
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": 171159,
            "ProcessId": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "OrganisationId": 171159,
            "ProcessId": null,
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/profile-supplier-processes

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 1

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
        }
    ]
}
 

Request      

GET api/azure/v1/profile-supplier-product-category

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 4

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=10&filter%5Bupdated_at%5D=%3E%3D+2026-05-25+16%3A14%3A54&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": "10",
    "filter[updated_at]": ">= 2026-05-25 16:14:54",
    "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": null,
            "OrganisationId": null,
            "SupplierTypeId": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "OrganisationId": null,
            "SupplierTypeId": null,
            "CreateDate": null,
            "LastUpdateDate": null
        }
    ]
}
 

Request      

GET api/azure/v1/profile-supplier-type

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 10

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: >= 2026-05-25 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

SDS-Section

SDS Sections 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/sds-section?page=1&per_page=12" \
    --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/sds-section"
);

const params = {
    "page": "1",
    "per_page": "12",
};
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,
            "SDSID": null,
            "IngredientName": null,
            "CAS": null,
            "Min": null,
            "Max": null,
            "Concentration": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "SDSID": null,
            "IngredientName": null,
            "CAS": null,
            "Min": null,
            "Max": null,
            "Concentration": null,
            "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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/sds-section

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 12

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=7" \
    --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": "7",
};
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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/supplier-type

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 7

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=15&filter%5Bupdated_at%5D=%3E%3D+2026-06-09+16%3A14%3A54&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": "15",
    "filter[updated_at]": ">= 2026-06-09 16:14:54",
    "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-PYSRAKAS6CQ-B",
            "FirstName": "Amy",
            "LastName": "Huang",
            "FullName": "Amy Huang",
            "IsActive": true,
            "Email": "amyhuang@ecic.com.tw",
            "Phone": "+886910807779",
            "Address1": null,
            "Address2": null,
            "StateName": null,
            "CityName": null,
            "ZipCode": null,
            "LocationId": "TW",
            "CreateDate": "2017-06-17 04:45:09",
            "DeleteDate": null,
            "LastUpdateDate": "2017-06-17 04:45:09"
        },
        {
            "Id": 1,
            "UserId": "02-PYSRAKAS6CQ-B",
            "FirstName": "Amy",
            "LastName": "Huang",
            "FullName": "Amy Huang",
            "IsActive": true,
            "Email": "amyhuang@ecic.com.tw",
            "Phone": "+886910807779",
            "Address1": null,
            "Address2": null,
            "StateName": null,
            "CityName": null,
            "ZipCode": null,
            "LocationId": "TW",
            "CreateDate": "2017-06-17 04:45:09",
            "DeleteDate": null,
            "LastUpdateDate": "2017-06-17 04:45:09"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/azure/v1/users

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 15

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: >= 2026-06-09 16:14:54

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Verification-Status

Verification status reference values

requires authentication

Static list from ProductCertificationBodyAssignmentStatusEnum (paginated). Ids are stable via azureApiId().

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/verification-status?page=1&per_page=9" \
    --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/verification-status"
);

const params = {
    "page": "1",
    "per_page": "9",
};
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,
            "StatusName": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "StatusName": null,
            "CreateDate": null,
            "LastUpdateDate": null
        }
    ]
}
 

Request      

GET api/azure/v1/verification-status

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 9

WW-Report-Status

Wastewater Report Status Reference Values

requires authentication

Static list of wastewater report statuses from WastewaterReportStatusEnum (paginated).

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/azure/v1/ww-report-status?page=1&per_page=1" \
    --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/ww-report-status"
);

const params = {
    "page": "1",
    "per_page": "1",
};
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,
            "DischargeName": null,
            "CreateDate": null,
            "LastUpdateDate": null
        },
        {
            "Id": null,
            "DischargeName": null,
            "CreateDate": null,
            "LastUpdateDate": null
        }
    ]
}
 

Request      

GET api/azure/v1/ww-report-status

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 1

CTZ Levels

Index

requires authentication

Get all CTZ levels

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/ctz-levels" \
    --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/ctz-levels"
);

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,
        "name": "Foundational",
        "created_at": "2026-05-08T21:42:17.000000Z",
        "updated_at": "2026-05-08T21:42:17.000000Z"
    }
}
 

Request      

GET api/ctz-levels

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

CTZ Standards

Index

requires authentication

Get CTZ Standards

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/ctz-standard?per_page=6&page=1&filter%5Bctz_level_id%5D=3&filter%5Bstatus%5D=alias&filter%5Bstart_date%5D=labore&filter%5Bend_date%5D=voluptatibus&filter%5Bcreated_at%5D=omnis&filter%5Bupdated_at%5D=repellat&search=facilis&sort=name&column=name" \
    --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/organisation/1/chemical/certification/ctz-standard"
);

const params = {
    "per_page": "6",
    "page": "1",
    "filter[ctz_level_id]": "3",
    "filter[status]": "alias",
    "filter[start_date]": "labore",
    "filter[end_date]": "voluptatibus",
    "filter[created_at]": "omnis",
    "filter[updated_at]": "repellat",
    "search": "facilis",
    "sort": "name",
    "column": "name",
};
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": 3,
            "name": "CTZ Foundational — 1.0.0",
            "version": "1.0.0",
            "ctz_level_id": 1,
            "start_date": "2023-12-19T00:00:00.000000Z",
            "end_date": null,
            "status": "PASSED",
            "expired_at": null,
            "created_at": "2026-05-08T21:42:18.000000Z",
            "updated_at": "2026-05-13T11:27:29.000000Z",
            "ctz_level": {
                "id": 1,
                "name": "Foundational",
                "created_at": "2026-05-08T21:42:17.000000Z",
                "updated_at": "2026-05-08T21:42:17.000000Z"
            },
            "organisations": [
                {
                    "id": 8613,
                    "maxio_customer_id": 310360,
                    "reference_id": "01-TMEJGAMNT76-Z",
                    "pdc_id": null,
                    "gateway_aid": "A718TE34",
                    "uuid": "a137f0fd-60df-47cc-99b6-6db56701d205",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Inditex_MRSL",
                    "legal_name": "Inditex_MRSL",
                    "address_1": "Avda. de la Dioputacion s/n, 15142 Arteixo, A Coruna.",
                    "address_2": null,
                    "city": "Arteijo",
                    "state": "Galicia",
                    "location": "ES",
                    "zip": "",
                    "phone": "0034 981185400",
                    "email": "germangi@inditex.com",
                    "contact_first_name": "Beatriz",
                    "contact_last_name": "Baeza",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-02-21T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:45.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Spain",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8613,
                        "id": 1,
                        "valid_until": "2026-03-16T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2033-10-25T00:00:00.000000Z"
                    }
                },
                {
                    "id": 7753,
                    "maxio_customer_id": 309500,
                    "reference_id": "01-TMEJGGMBW39-E",
                    "pdc_id": null,
                    "gateway_aid": "A339JQ58",
                    "uuid": "8afdf188-2575-4347-aad8-c9f521e188c4",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Test & Innovation Lab",
                    "legal_name": "Test & Innovation Lab",
                    "address_1": "Viale Montegrappa, 320 - PRATO - 59100 - ITALY",
                    "address_2": null,
                    "city": "Prato",
                    "state": "Prato",
                    "location": "IT",
                    "zip": "59100",
                    "phone": "+39 0574 1770001",
                    "email": "giuseppe.bartolini@labtil.com",
                    "contact_first_name": "Andrea",
                    "contact_last_name": "Franchi",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-06-09T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:16:59.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 7753,
                        "id": 2,
                        "valid_until": "2026-03-27T00:00:00.000000Z",
                        "created_at": "2024-01-25T00:00:00.000000Z",
                        "updated_at": "2026-03-25T00:00:00.000000Z"
                    }
                },
                {
                    "id": 7738,
                    "maxio_customer_id": 309485,
                    "reference_id": "01-NWZQ99R2VV8-H",
                    "pdc_id": null,
                    "gateway_aid": "A932KJ49",
                    "uuid": "f538e6ef-c0ae-4f7d-8064-71c784e1cb45",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland Shenzhen Co., Ltd._MRSL",
                    "legal_name": "TUV Rheinland Shenzhen Co., Ltd._MRSL",
                    "address_1": "1F East &2-4F, Cybio Technology Building No. 1, No. 16 Kejibei 2nd Road, High-Tech Industrial Park North, Nanshan District, 518057 Shenzhen, China",
                    "address_2": null,
                    "city": "Shenzhen",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "518057",
                    "phone": "+852 2192 1022",
                    "email": "jet.lee@tuv.com",
                    "contact_first_name": "Nick",
                    "contact_last_name": "Yang",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2022-01-05T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:16:55.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 7738,
                        "id": 3,
                        "valid_until": "2026-04-17T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-16T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8608,
                    "maxio_customer_id": 310355,
                    "reference_id": "01-TMEJGAMMZYV-F",
                    "pdc_id": null,
                    "gateway_aid": "A353QZ62",
                    "uuid": "ff550de3-8165-4abc-86cc-69b706f69f90",
                    "type_id": 7,
                    "status": "approved",
                    "name": "bluesign® Technologies AG",
                    "legal_name": "bluesign® Technologies AG",
                    "address_1": "Moevenstrasse 18, 9015 St. Gallen, Switzerland",
                    "address_2": null,
                    "city": "Saint Gallen",
                    "state": "Sankt Gallen",
                    "location": "CH",
                    "zip": "",
                    "phone": "+41 71 272 29 90",
                    "email": "kurt_schlaepfer@bluesign.com",
                    "contact_first_name": "Kurt",
                    "contact_last_name": "Schäpfer",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-06T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:44.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Switzerland",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8608,
                        "id": 8,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-20T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8673,
                    "maxio_customer_id": 310420,
                    "reference_id": "01-3SRBVLXQG9V-J",
                    "pdc_id": null,
                    "gateway_aid": "A754MT47",
                    "uuid": "1e28b961-cdbf-492a-8b8c-51519010b861",
                    "type_id": 7,
                    "status": "approved",
                    "name": "GCL International",
                    "legal_name": "GCL International",
                    "address_1": "1, St Mark Street, London, E1 8DA, United Kingdom",
                    "address_2": null,
                    "city": "London",
                    "state": "London",
                    "location": "GB",
                    "zip": "",
                    "phone": "+91-8754694888",
                    "email": "pradip@gcl-intl.com",
                    "contact_first_name": "Pradip",
                    "contact_last_name": "Patil",
                    "website": "https://www.gcl.uk/",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2021-12-20T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:56.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "United Kingdom",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8673,
                        "id": 9,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2024-01-11T00:00:00.000000Z",
                        "updated_at": "2026-04-09T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8634,
                    "maxio_customer_id": 310381,
                    "reference_id": "01-S27UDKYCQ3A-W",
                    "pdc_id": null,
                    "gateway_aid": "A346HD39",
                    "uuid": "a6484b22-b794-43d0-9285-3c315b3af1c0",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer Products Services (Shanghai) Co., Ltd._MRSL",
                    "legal_name": "Bureau Veritas Consumer Products Services (Shanghai) Co., Ltd._MRSL",
                    "address_1": "No. 168 GuangHua Road,MinHang District, 201108, Shanghai",
                    "address_2": null,
                    "city": "Shanghai",
                    "state": "Shanghai",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "peter.lu@bureauveritas.com",
                    "contact_first_name": "Steven han",
                    "contact_last_name": "Steven han",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-06-29T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:49.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8634,
                        "id": 10,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-08T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8687,
                    "maxio_customer_id": 310434,
                    "reference_id": "01-S27UDKKD2QR-E",
                    "pdc_id": null,
                    "gateway_aid": "A282WC67",
                    "uuid": "040b5047-76a1-4d29-8df1-6cd83c67f9f0",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer Products Services (Hong Kong) Limited, Taiwan Branch_MRSL",
                    "legal_name": "Bureau Veritas Consumer Products Services (Hong Kong) Limited, Taiwan Branch_MRSL",
                    "address_1": "37, Zhongyang S. Rd., Sec. 2, Beitou, Taipei 112, Taiwan",
                    "address_2": null,
                    "city": "Taipei",
                    "state": "Taipei",
                    "location": "TW",
                    "zip": "",
                    "phone": "-",
                    "email": "Vico.lin@bureauveritas.com",
                    "contact_first_name": "Vico",
                    "contact_last_name": "Lin",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-10-11T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:59.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Taiwan",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8687,
                        "id": 11,
                        "valid_until": "2026-03-24T00:00:00.000000Z",
                        "created_at": "2024-01-10T00:00:00.000000Z",
                        "updated_at": "2026-03-12T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8638,
                    "maxio_customer_id": 310385,
                    "reference_id": "01-76N8MD26GWS-O",
                    "pdc_id": null,
                    "gateway_aid": "A715SZ55",
                    "uuid": "31c0ce0f-d232-4d24-b2a5-8ec1d213b5a3",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer products Services (I) Pvt. Ltd. (Noida)",
                    "legal_name": "Bureau Veritas Consumer products Services (I) Pvt. Ltd. (Noida)",
                    "address_1": "C-19 , Sector-7 201301 Noida India",
                    "address_2": null,
                    "city": "Noida",
                    "state": "Uttar Pradesh",
                    "location": "IN",
                    "zip": "",
                    "phone": "-",
                    "email": "sumanta.swain@bureauveritas.com",
                    "contact_first_name": "Sumanta",
                    "contact_last_name": "Swain",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-09-19T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:50.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8638,
                        "id": 12,
                        "valid_until": "2025-09-25T00:00:00.000000Z",
                        "created_at": "2024-05-31T00:00:00.000000Z",
                        "updated_at": "2025-07-26T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8551,
                    "maxio_customer_id": 310298,
                    "reference_id": "01-WEJAPXHF6V4-V",
                    "pdc_id": null,
                    "gateway_aid": "A549OE34",
                    "uuid": "5afbe0cf-f430-4bd4-bdc3-17427cddb67c",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Services A.S.Turkey",
                    "legal_name": "Intertek Testing Services A.S.Turkey",
                    "address_1": "Merkez Mahallesi, Sanayi Cad. Altındağ Plaza No:23",
                    "address_2": null,
                    "city": "Sanayi",
                    "state": "Istanbul",
                    "location": "US",
                    "zip": "",
                    "phone": "+902124964646",
                    "email": "zeynep.akin@intertek.com",
                    "contact_first_name": "Ben",
                    "contact_last_name": "Cheng ZDHC MRSL",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:33.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "United States",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8551,
                        "id": 13,
                        "valid_until": "2026-03-23T00:00:00.000000Z",
                        "created_at": "2024-01-22T00:00:00.000000Z",
                        "updated_at": "2026-03-17T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8695,
                    "maxio_customer_id": 310442,
                    "reference_id": "01-S27UDKAQZ4J-G",
                    "pdc_id": null,
                    "gateway_aid": "A825AG65",
                    "uuid": "bf446a0f-07c4-4776-a3d4-221cf3596478",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer Products Services (Bangladesh) Ltd._MRSL",
                    "legal_name": "Bureau Veritas Consumer Products Services (Bangladesh) Ltd._MRSL",
                    "address_1": "Plot#130, DEPZ Extension Area, Savar, Dhaka 1349 Bangladesh",
                    "address_2": null,
                    "city": "Savar",
                    "state": "Dhaka",
                    "location": "BD",
                    "zip": "",
                    "phone": "-",
                    "email": "nur.alam@bureauveritas.com",
                    "contact_first_name": "Sharan",
                    "contact_last_name": "Roy",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2024-02-19T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:20:01.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Bangladesh",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8695,
                        "id": 14,
                        "valid_until": "2025-02-13T00:00:00.000000Z",
                        "created_at": "2024-06-29T00:00:00.000000Z",
                        "updated_at": "2025-01-21T00:00:00.000000Z"
                    }
                },
                {
                    "id": 9068,
                    "maxio_customer_id": 310814,
                    "reference_id": "01-S27UDAYQVRK-R",
                    "pdc_id": null,
                    "gateway_aid": "A555PX59",
                    "uuid": "f171c290-f9d4-4a39-9f26-03093b40a5af",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV SUD Certification and Testing (China) Co. Ltd. Xiamen Branch",
                    "legal_name": "TUV SUD Certification and Testing (China) Co. Ltd. Xiamen Branch",
                    "address_1": "Unit 401, No.93 Huli Industrial Park, Meixi Road, Tong’an District 361100, Xiamen China",
                    "address_2": null,
                    "city": "Xiamen",
                    "state": "Fujian",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "nemo.chen@tuvsud.com",
                    "contact_first_name": "chao",
                    "contact_last_name": "chen",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-10-24T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:21:14.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 9068,
                        "id": 15,
                        "valid_until": "2026-01-07T00:00:00.000000Z",
                        "created_at": "2023-12-25T00:00:00.000000Z",
                        "updated_at": "2025-09-15T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8581,
                    "maxio_customer_id": 310328,
                    "reference_id": "01-2V6NQ8T6AHT-F",
                    "pdc_id": null,
                    "gateway_aid": "A752DH57",
                    "uuid": "763fb7d2-476c-4217-9f79-a683052a9361",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek India Pvt Ltd Gurgaon_MRSL",
                    "legal_name": "Intertek India Pvt Ltd Gurgaon_MRSL",
                    "address_1": "Udhog Vihar phase 2, Plot no 290 Gurgaon India",
                    "address_2": null,
                    "city": "Gurgaon",
                    "state": "Haryana",
                    "location": "IN",
                    "zip": "",
                    "phone": "+91 0124 450 3400",
                    "email": "ravindra.s@intertek.com",
                    "contact_first_name": "Ravindra",
                    "contact_last_name": "Singh",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:39.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8581,
                        "id": 16,
                        "valid_until": "2026-02-20T00:00:00.000000Z",
                        "created_at": "2024-05-01T00:00:00.000000Z",
                        "updated_at": "2026-01-31T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8589,
                    "maxio_customer_id": 310336,
                    "reference_id": "01-S27UDK9WJ3K-L",
                    "pdc_id": null,
                    "gateway_aid": "A588PW46",
                    "uuid": "79e11446-97a1-41d5-84c6-ce24af34a8c9",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TEXANLAB LABORATORIES PVT. LTD.",
                    "legal_name": "TEXANLAB LABORATORIES PVT. LTD.",
                    "address_1": "R-855, 1st Floor, T.T.C. Industrial Area, Rabale, 400701",
                    "address_2": null,
                    "city": "Mumbai",
                    "state": "Maharashtra",
                    "location": "IN",
                    "zip": "",
                    "phone": "+91 22 6141 7130",
                    "email": "anitha.balkrishna@texanlabglobal.com",
                    "contact_first_name": "Milind",
                    "contact_last_name": "Marathe",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:40.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8589,
                        "id": 17,
                        "valid_until": "2026-03-31T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-03-30T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8637,
                    "maxio_customer_id": 310384,
                    "reference_id": "01-6TWZXQVEWQQ-M",
                    "pdc_id": null,
                    "gateway_aid": "A384ZL32",
                    "uuid": "958d920f-eff9-4183-9636-b63dbd9a8bd5",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Analytical srl",
                    "legal_name": "Analytical srl",
                    "address_1": "Viale Industria 24 Arzignano 36071 Italy",
                    "address_2": null,
                    "city": "Arzignano",
                    "state": "Vicenza",
                    "location": "IT",
                    "zip": "",
                    "phone": "-",
                    "email": "f.ferrigato@analytical.it",
                    "contact_first_name": "Francesca",
                    "contact_last_name": "Ferrigato",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-07-25T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:49.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8637,
                        "id": 18,
                        "valid_until": "2026-03-11T00:00:00.000000Z",
                        "created_at": "2024-02-20T00:00:00.000000Z",
                        "updated_at": "2026-03-10T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8604,
                    "maxio_customer_id": 310351,
                    "reference_id": "01-CHFY7SHYMZD-P",
                    "pdc_id": null,
                    "gateway_aid": "A888YX20",
                    "uuid": "7641e55d-fd93-4bf8-b511-2944ae04c960",
                    "type_id": 7,
                    "status": "approved",
                    "name": "SGS Global",
                    "legal_name": "SGS Global",
                    "address_1": "4/F On Wui Centre, 25 Lok Yip Road Fanling, N.T., Hong Kong.",
                    "address_2": null,
                    "city": "Hong Kong",
                    "state": "Hong Kong",
                    "location": "HK",
                    "zip": "",
                    "phone": "+852 22048354",
                    "email": "Keith.Tsang@sgs.com",
                    "contact_first_name": "Padmanaban",
                    "contact_last_name": "K S",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:43.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Hong Kong SAR China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8604,
                        "id": 19,
                        "valid_until": "2026-02-26T00:00:00.000000Z",
                        "created_at": "2024-01-04T00:00:00.000000Z",
                        "updated_at": "2026-01-15T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8603,
                    "maxio_customer_id": 310350,
                    "reference_id": "01-76N8MD6QT3C-E",
                    "pdc_id": null,
                    "gateway_aid": "A557RN68",
                    "uuid": "5526c7e5-cef0-4256-9397-5ff00a409ee5",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Service Labtest Bangladesh Ltd._MRSL",
                    "legal_name": "Intertek Testing Service Labtest Bangladesh Ltd._MRSL",
                    "address_1": "Intertek House, Phonix Tower, 407, Tejgoan Industrial Area, 1208",
                    "address_2": null,
                    "city": "Tejgaon",
                    "state": "Dhaka",
                    "location": "BD",
                    "zip": "",
                    "phone": "+8809666776669",
                    "email": "neyamul.hasan@intertek.com",
                    "contact_first_name": "Neyamul",
                    "contact_last_name": "Hasan",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:43.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Bangladesh",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8603,
                        "id": 20,
                        "valid_until": "2026-03-16T00:00:00.000000Z",
                        "created_at": "2024-01-02T00:00:00.000000Z",
                        "updated_at": "2026-03-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8635,
                    "maxio_customer_id": 310382,
                    "reference_id": "01-S27UDKYRCKS-Y",
                    "pdc_id": null,
                    "gateway_aid": "A775EK75",
                    "uuid": "215f574e-e1ab-4a5c-be13-7334f7ca8db0",
                    "type_id": 7,
                    "status": "approved",
                    "name": "SGS Supervise Gozetme Etud Kontrol Servisleri A.S._MRSL",
                    "legal_name": "SGS Supervise Gozetme Etud Kontrol Servisleri A.S._MRSL",
                    "address_1": "IS IStanbul Plaza Baglar Mah. Osmanpasa Cad. No:95 E Girisi/Gunesli 34209 Istanbul Turkey",
                    "address_2": null,
                    "city": "Gunesli",
                    "state": "Istanbul",
                    "location": "US",
                    "zip": "",
                    "phone": "-",
                    "email": "birol.cakmak@sgs.com",
                    "contact_first_name": "Birol",
                    "contact_last_name": "ÇAKMAK",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-07-13T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:49.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "United States",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8635,
                        "id": 21,
                        "valid_until": "2026-04-15T00:00:00.000000Z",
                        "created_at": "2024-01-11T00:00:00.000000Z",
                        "updated_at": "2026-04-14T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8652,
                    "maxio_customer_id": 310399,
                    "reference_id": "01-MX94FCFSRAG-X",
                    "pdc_id": null,
                    "gateway_aid": "A229LO23",
                    "uuid": "27b2aef8-4608-4f5c-a7df-2d58410b88c5",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland LGA Products GmbH_MRSL",
                    "legal_name": "TUV Rheinland LGA Products GmbH_MRSL",
                    "address_1": "Am Grauen Stein 51105 Koeln",
                    "address_2": null,
                    "city": "Koln",
                    "state": "Nordrhein Westfalen",
                    "location": "DE",
                    "zip": "",
                    "phone": "+49 221 8060",
                    "email": "steffen.tuemptner@de.tuv.com",
                    "contact_first_name": "ATA",
                    "contact_last_name": "bayraktar",
                    "website": "https://www.tuv.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-07T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:52.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Germany",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8652,
                        "id": 22,
                        "valid_until": "2026-03-20T00:00:00.000000Z",
                        "created_at": "2024-01-16T00:00:00.000000Z",
                        "updated_at": "2026-03-19T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8600,
                    "maxio_customer_id": 310347,
                    "reference_id": "01-TMEJGAMVSLT-W",
                    "pdc_id": null,
                    "gateway_aid": "A820MS41",
                    "uuid": "a9df7805-cbaa-4aab-b73e-81a0dccd26ad",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV SUD Vietnam_MRSL",
                    "legal_name": "TUV SUD Vietnam_MRSL",
                    "address_1": "Lot III-26, 19/5A Street, Industry Group III, Tan Binh Industrial Park",
                    "address_2": null,
                    "city": "",
                    "state": "Ho Chi Minh City",
                    "location": "VN",
                    "zip": "",
                    "phone": "+842862678507",
                    "email": "minh-thang.le@tuvsud.com",
                    "contact_first_name": "Nguyen",
                    "contact_last_name": "Truc",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:42.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Vietnam",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8600,
                        "id": 23,
                        "valid_until": "2026-01-29T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-01-26T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8661,
                    "maxio_customer_id": 310408,
                    "reference_id": "01-ZJAX393ZNYS-E",
                    "pdc_id": null,
                    "gateway_aid": "A525LH13",
                    "uuid": "f61ec85b-5397-4e5c-8a12-cade64ec5b82",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV SUD Bangladesh (Pvt.) Ltd_MRSL",
                    "legal_name": "TUV SUD Bangladesh (Pvt.) Ltd_MRSL",
                    "address_1": "Level 7 & 8, Update Tower, 01 Shahajalal Ave, 1230",
                    "address_2": null,
                    "city": "",
                    "state": "Dhaka",
                    "location": "BD",
                    "zip": "",
                    "phone": "+880 2-58954115",
                    "email": "Raffaella.Santoro@tuv.it",
                    "contact_first_name": "Shafikul",
                    "contact_last_name": "ISLAM",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:54.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Bangladesh",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8661,
                        "id": 24,
                        "valid_until": "2025-11-12T00:00:00.000000Z",
                        "created_at": "2024-11-30T00:00:00.000000Z",
                        "updated_at": "2025-09-30T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8653,
                    "maxio_customer_id": 310400,
                    "reference_id": "01-VDTWAZAYP43-U",
                    "pdc_id": null,
                    "gateway_aid": "A956NT67",
                    "uuid": "061c1936-d6e3-4385-bfea-ee2b9670a61c",
                    "type_id": 7,
                    "status": "approved",
                    "name": "ToxServices LLC",
                    "legal_name": "ToxServices LLC",
                    "address_1": "1367 Connecticut Avenue, N.W., Suite 300 20036",
                    "address_2": null,
                    "city": "",
                    "state": "Washington",
                    "location": "US",
                    "zip": "",
                    "phone": "(202) 429-8787",
                    "email": "Mwhittaker@toxservices.com",
                    "contact_first_name": "Margaret",
                    "contact_last_name": "Whittaker",
                    "website": "https://www.toxservices.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-13T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:53.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "United States",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8653,
                        "id": 25,
                        "valid_until": "2026-02-05T00:00:00.000000Z",
                        "created_at": "2024-02-19T00:00:00.000000Z",
                        "updated_at": "2026-01-12T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8631,
                    "maxio_customer_id": 310378,
                    "reference_id": "01-S27UDKYVHZL-P",
                    "pdc_id": null,
                    "gateway_aid": "A444NZ79",
                    "uuid": "6836990a-8642-490f-89f7-cc784df0e8bf",
                    "type_id": 7,
                    "status": "approved",
                    "name": "SGS Taiwan Ltd. (Taipei)",
                    "legal_name": "SGS Taiwan Ltd. (Taipei)",
                    "address_1": "31, Wu Chyuan Road, New Taipei Industrial Park, Wu Ku Dist., 24886, New Taipei City Taiwan, Province of China",
                    "address_2": null,
                    "city": "New Taipei City",
                    "state": "New Taipei",
                    "location": "TW",
                    "zip": "",
                    "phone": "-",
                    "email": "Jerry.tung@sgs.com",
                    "contact_first_name": "jerry",
                    "contact_last_name": "tung",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-05-25T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:48.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Taiwan",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8631,
                        "id": 26,
                        "valid_until": "2026-01-12T00:00:00.000000Z",
                        "created_at": "2024-02-29T00:00:00.000000Z",
                        "updated_at": "2025-12-17T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8697,
                    "maxio_customer_id": 310444,
                    "reference_id": "01-BUKVW698S2E-J",
                    "pdc_id": null,
                    "gateway_aid": "A273NP76",
                    "uuid": "919cbdb3-553e-423b-966d-e3a75cf80d9e",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Eurofins Modern Testing Services (Bangladesh) Limited",
                    "legal_name": "Eurofins Modern Testing Services (Bangladesh) Limited",
                    "address_1": "280 East Narsinghpur, Ashulia 1341 Dhaka Bangladesh",
                    "address_2": null,
                    "city": "Dhaka",
                    "state": "Dhaka",
                    "location": "BD",
                    "zip": "",
                    "phone": "-",
                    "email": "zakir@mtsbd.com",
                    "contact_first_name": "Probir",
                    "contact_last_name": "Chandra Das",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2024-03-26T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:20:01.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Bangladesh",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8697,
                        "id": 27,
                        "valid_until": "2026-04-03T00:00:00.000000Z",
                        "created_at": "2025-01-10T00:00:00.000000Z",
                        "updated_at": "2026-04-02T00:00:00.000000Z"
                    }
                },
                {
                    "id": 9114,
                    "maxio_customer_id": 310860,
                    "reference_id": "01-S27UDAGNJHW-W",
                    "pdc_id": null,
                    "gateway_aid": "A438IE31",
                    "uuid": "f5f853da-aba6-4901-9602-e08111c4993e",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland / CCIC (Qingdao) Co., Ltd.",
                    "legal_name": "TUV Rheinland / CCIC (Qingdao) Co., Ltd.",
                    "address_1": "6F, No. 2 Bldg., No. 175 Zhuzhou Road Qingdao 266000 China",
                    "address_2": null,
                    "city": "Qingdao",
                    "state": "Shandong",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "Echo.Xu@tuv.com",
                    "contact_first_name": "Echo",
                    "contact_last_name": "Xu",
                    "website": "https://www.tuv.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2025-01-03T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:21:23.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 9114,
                        "id": 28,
                        "valid_until": "2026-04-08T00:00:00.000000Z",
                        "created_at": "2025-03-17T00:00:00.000000Z",
                        "updated_at": "2026-04-07T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8993,
                    "maxio_customer_id": 310739,
                    "reference_id": "01-2V6NQCSN8HE-M",
                    "pdc_id": null,
                    "gateway_aid": "A254LK97",
                    "uuid": "2ff1860c-c0c5-4220-b2b7-7f6fbd5e9da5",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV SUD Certification and Testing (China) Co., Ltd. Shanghai Branch_MRSL",
                    "legal_name": "TUV SUD Certification and Testing (China) Co., Ltd. Shanghai Branch_MRSL",
                    "address_1": "No. 1999 Du Hui Road, Minhang District, 201108 Shanghai China",
                    "address_2": null,
                    "city": "Shanghai",
                    "state": "Shanghai",
                    "location": "CN",
                    "zip": "",
                    "phone": "+86 21 6141 0123",
                    "email": "Chenghui.Zhang@tuvsud.com",
                    "contact_first_name": "shen",
                    "contact_last_name": "Hui",
                    "website": "https://www.tuvsud.cn/",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:21:00.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8993,
                        "id": 29,
                        "valid_until": "2026-01-09T00:00:00.000000Z",
                        "created_at": "2024-01-17T00:00:00.000000Z",
                        "updated_at": "2026-01-07T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8997,
                    "maxio_customer_id": 310743,
                    "reference_id": "01-WEJAPLNEV6W-H",
                    "pdc_id": null,
                    "gateway_aid": "A548JP59",
                    "uuid": "512bfff6-4ef0-48d2-9e57-2484513817fa",
                    "type_id": 7,
                    "status": "approved",
                    "name": "United Testing Services (Fujian) Co., Ltd",
                    "legal_name": "United Testing Services (Fujian) Co., Ltd",
                    "address_1": "Address: Room 5205, Building C, South of Clothing City, No. 88 Nanyang Road, Lingxiu Town, Shishi, Quanzhou, Fujian, China.",
                    "address_2": null,
                    "city": "Shishi",
                    "state": "Fujian",
                    "location": "CN",
                    "zip": "",
                    "phone": "+86 595 83667715",
                    "email": "mike.wong@fabricschina.com.cn",
                    "contact_first_name": "Mike",
                    "contact_last_name": "User",
                    "website": "https://www.c-uts.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2021-01-26T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:21:01.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8997,
                        "id": 30,
                        "valid_until": "2026-02-01T00:00:00.000000Z",
                        "created_at": "2023-12-26T00:00:00.000000Z",
                        "updated_at": "2026-01-30T00:00:00.000000Z"
                    }
                },
                {
                    "id": 10787,
                    "maxio_customer_id": 312533,
                    "reference_id": "01-HRBL6KCZEDB-L",
                    "pdc_id": null,
                    "gateway_aid": "A576LQ13",
                    "uuid": "5de3557d-458e-4ccd-a876-9877734d4ab1",
                    "type_id": 7,
                    "status": "approved",
                    "name": "CTC ARS TINCTORIA SRL",
                    "legal_name": "CTC ARS TINCTORIA SRL",
                    "address_1": "VIA DEL BOSCO 125  56029",
                    "address_2": null,
                    "city": "Santa Croce sull Arno",
                    "state": "Pisa",
                    "location": "IT",
                    "zip": "",
                    "phone": "+39 0571 35110",
                    "email": "gdefeo@ctcgroupe.com",
                    "contact_first_name": "GUSTAVO",
                    "contact_last_name": "Defeo",
                    "website": "https://www.ctcgroupe.com/en/",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-07T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:26:46.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 10787,
                        "id": 31,
                        "valid_until": "2026-04-07T00:00:00.000000Z",
                        "created_at": "2024-01-15T00:00:00.000000Z",
                        "updated_at": "2026-03-20T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8594,
                    "maxio_customer_id": 310341,
                    "reference_id": "01-S27UDK9KWZR-O",
                    "pdc_id": null,
                    "gateway_aid": "A302YG32",
                    "uuid": "a21868a0-e599-4172-8158-6a2d4530a922",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Services Taiwan Ltd._MRSL",
                    "legal_name": "Intertek Testing Services Taiwan Ltd._MRSL",
                    "address_1": "Floor 10, No.423, Ruiguang Road  Neihu Dist.",
                    "address_2": null,
                    "city": "Taipei",
                    "state": "Taipei",
                    "location": "TW",
                    "zip": "",
                    "phone": "+886 2 66022888",
                    "email": "limei.chu@intertek.com",
                    "contact_first_name": "Limei",
                    "contact_last_name": "Chu",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:41.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Taiwan",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8594,
                        "id": 32,
                        "valid_until": "2026-04-14T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-14T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8660,
                    "maxio_customer_id": 310407,
                    "reference_id": "01-43HF2Y2HCJN-B",
                    "pdc_id": null,
                    "gateway_aid": "A350AD73",
                    "uuid": "2f1af83b-e1a4-414a-90f9-0693967c282e",
                    "type_id": 7,
                    "status": "approved",
                    "name": "FITI Testing & Research Institute",
                    "legal_name": "FITI Testing & Research Institute",
                    "address_1": "79, Magokjungang 8-ro 3-gil, Gangseo-gu",
                    "address_2": null,
                    "city": "Gangseo",
                    "state": "Seoul",
                    "location": "KR",
                    "zip": "",
                    "phone": "+82232998222",
                    "email": "jun_park@fitiglobal.com",
                    "contact_first_name": "Kelvin JeongYoon",
                    "contact_last_name": "Lee",
                    "website": "https://www.fiti.re.kr/en/?sub_num=284",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:54.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "South Korea",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8660,
                        "id": 33,
                        "valid_until": "2026-03-30T00:00:00.000000Z",
                        "created_at": "2023-12-27T00:00:00.000000Z",
                        "updated_at": "2026-03-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 5883,
                    "maxio_customer_id": 307630,
                    "reference_id": "01-S27UD99XAKV-X",
                    "pdc_id": null,
                    "gateway_aid": "A852OE62",
                    "uuid": "29ebf086-5a21-4246-8672-9d670858901a",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Testtex India Laboratories Private Limited",
                    "legal_name": "Testtex India Laboratories Private Limited",
                    "address_1": "301-304 Premsons Industrial Estate, Caves Rd, Jogeshwari East, 400060",
                    "address_2": null,
                    "city": "Mumbai",
                    "state": "Maharashtra",
                    "location": "IN",
                    "zip": "400060",
                    "phone": "+91 22 2825 9190",
                    "email": "meeta@testtex.com",
                    "contact_first_name": "Meeta",
                    "contact_last_name": "Shingala",
                    "website": "https://www.testtex.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:10:44.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 5883,
                        "id": 34,
                        "valid_until": "2025-12-16T00:00:00.000000Z",
                        "created_at": "2023-12-21T00:00:00.000000Z",
                        "updated_at": "2025-12-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8655,
                    "maxio_customer_id": 310402,
                    "reference_id": "01-E94CYGYYWNV-U",
                    "pdc_id": null,
                    "gateway_aid": "A176RO67",
                    "uuid": "8d09254e-3403-4f40-84a4-f5990f4c5b59",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland Bangladesh Pvt. Ltd._MRSL",
                    "legal_name": "TUV Rheinland Bangladesh Pvt. Ltd._MRSL",
                    "address_1": "Road 113/A, Plot 17, Aladdin Tower, 5th to 8 th floor 1212",
                    "address_2": null,
                    "city": "Dhaka",
                    "state": "Dhaka",
                    "location": "BD",
                    "zip": "",
                    "phone": "+88229894904",
                    "email": "Rakesh.Vazirani@tuv.com",
                    "contact_first_name": "Md Wakil",
                    "contact_last_name": "Hossain",
                    "website": "http://www.tuv.com/detox",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-07T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:53.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Bangladesh",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8655,
                        "id": 35,
                        "valid_until": "2026-04-05T00:00:00.000000Z",
                        "created_at": "2024-01-17T00:00:00.000000Z",
                        "updated_at": "2026-03-11T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8622,
                    "maxio_customer_id": 310369,
                    "reference_id": "01-WEJAPXSNQJ7-A",
                    "pdc_id": null,
                    "gateway_aid": "A778MT32",
                    "uuid": "4fcbc012-eef8-4918-a27d-47d3cc1a405a",
                    "type_id": 7,
                    "status": "approved",
                    "name": "UL Italy - IISG Srl_MRSL",
                    "legal_name": "UL Italy - IISG Srl_MRSL",
                    "address_1": "via Europa 28, 22060 Cabiate, Italy",
                    "address_2": null,
                    "city": "Cabiate",
                    "state": "Como",
                    "location": "IT",
                    "zip": "",
                    "phone": "+39.031.8125.000",
                    "email": "luciano.buraschi@ul.com",
                    "contact_first_name": "Domenico",
                    "contact_last_name": "Pelle",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-03-23T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:46.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8622,
                        "id": 36,
                        "valid_until": "2026-03-12T00:00:00.000000Z",
                        "created_at": "2024-01-22T00:00:00.000000Z",
                        "updated_at": "2026-02-24T00:00:00.000000Z"
                    }
                },
                {
                    "id": 9222,
                    "maxio_customer_id": 310968,
                    "reference_id": "01-NWZQ9YBUJCH-S",
                    "pdc_id": null,
                    "gateway_aid": "A778EY21",
                    "uuid": "927e09ba-73a3-4402-8593-08028399b05d",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bay Area Compliance Labs Corp.",
                    "legal_name": "Bay Area Compliance Labs Corp.",
                    "address_1": "6/F, the 3rd Phase of Wan Li Industrial Bldg., Shihua Rd., FuTian",
                    "address_2": null,
                    "city": "Futian",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "",
                    "phone": "+8675533320018",
                    "email": "laura.cortes@baclcorp.com",
                    "contact_first_name": "laura",
                    "contact_last_name": "Cortes",
                    "website": "https://www.baclcorp.com.cn",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-12-18T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:21:43.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 9222,
                        "id": 37,
                        "valid_until": "2026-04-08T00:00:00.000000Z",
                        "created_at": "2024-03-23T00:00:00.000000Z",
                        "updated_at": "2026-03-23T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8639,
                    "maxio_customer_id": 310386,
                    "reference_id": "01-LKV6ZNBBGX3-G",
                    "pdc_id": null,
                    "gateway_aid": "A800GZ98",
                    "uuid": "8f14c048-8bc1-4257-b64c-a3d66d4bd67e",
                    "type_id": 7,
                    "status": "approved",
                    "name": "BUREAU VERITAS CONSUMER PRODUCTS SERVICES LANKA (PRIVATE) LIMITED_MRSL",
                    "legal_name": "BUREAU VERITAS CONSUMER PRODUCTS SERVICES LANKA (PRIVATE) LIMITED_MRSL",
                    "address_1": "NNo.570,Galle road,Katubedda,Sri Lanka",
                    "address_2": null,
                    "city": "Kaduwela",
                    "state": "Western Province",
                    "location": "LK",
                    "zip": "",
                    "phone": "-",
                    "email": "sonali.nakandala@bureauveritas.com",
                    "contact_first_name": "Sanduni",
                    "contact_last_name": "Nakandala",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-09-29T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:50.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Sri Lanka",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8639,
                        "id": 38,
                        "valid_until": "2026-04-06T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-03T00:00:00.000000Z"
                    }
                },
                {
                    "id": 5893,
                    "maxio_customer_id": 307640,
                    "reference_id": "01-E94CY66BUDP-U",
                    "pdc_id": null,
                    "gateway_aid": "A344OJ22",
                    "uuid": "ac420973-b93a-4a2a-93aa-22a24106a0e1",
                    "type_id": 7,
                    "status": "approved",
                    "name": "BUREAU VERITAS SINGAPORE PTE LTD_MRSL",
                    "legal_name": "BUREAU VERITAS SINGAPORE PTE LTD_MRSL",
                    "address_1": "37A, Tampines Street 92,#06-­‐01 Singapore, 528886",
                    "address_2": null,
                    "city": "Singapore City",
                    "state": "Singapore",
                    "location": "SG",
                    "zip": "528886",
                    "phone": "-",
                    "email": "kenny.mak@bureauveritas.com",
                    "contact_first_name": "Ya Nan",
                    "contact_last_name": "Wang",
                    "website": "https://group.bureauveritas.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2022-05-13T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:10:46.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Singapore",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 5893,
                        "id": 39,
                        "valid_until": "2026-03-05T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-03-02T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8630,
                    "maxio_customer_id": 310377,
                    "reference_id": "01-WEJAPXSWJTS-K",
                    "pdc_id": null,
                    "gateway_aid": "A851GA58",
                    "uuid": "afb9e014-db7b-4592-bbf8-af96548ccfb7",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Eurofins MTS Consumer Product Testing (Shanghai) Co. Ltd",
                    "legal_name": "Eurofins MTS Consumer Product Testing (Shanghai) Co. Ltd",
                    "address_1": "No.105 Guangzhong Rd. Zhuanqiao Town, Shanghai",
                    "address_2": null,
                    "city": "Shanghai",
                    "state": "Shanghai",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "viviangu@mts-global.com",
                    "contact_first_name": "Eddie",
                    "contact_last_name": "Zhang",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-05-22T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:48.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8630,
                        "id": 40,
                        "valid_until": "2026-03-30T00:00:00.000000Z",
                        "created_at": "2023-12-22T00:00:00.000000Z",
                        "updated_at": "2026-03-04T00:00:00.000000Z"
                    }
                },
                {
                    "id": 7750,
                    "maxio_customer_id": 309497,
                    "reference_id": "01-9P3HLLPPYNX-Z",
                    "pdc_id": null,
                    "gateway_aid": "A662FL36",
                    "uuid": "5bb6931d-2655-4a04-9964-d56ccc04f387",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland Thailand Ltd._MRSL",
                    "legal_name": "TUV Rheinland Thailand Ltd._MRSL",
                    "address_1": "123/1, Soi Chalongkung 31 Ladkrabang lndustrial Estate Lamplatew, Ladkrabang Bangkok 10520",
                    "address_2": null,
                    "city": "Lat Krabang",
                    "state": "Bangkok",
                    "location": "TH",
                    "zip": "10520",
                    "phone": "+66 2 326-1333",
                    "email": "Rakesh.Vazirani@tuv.com",
                    "contact_first_name": "Nutkritta",
                    "contact_last_name": "Thongdee",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2021-03-26T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:16:58.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Thailand",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 7750,
                        "id": 41,
                        "valid_until": "2026-02-04T00:00:00.000000Z",
                        "created_at": "2023-12-22T00:00:00.000000Z",
                        "updated_at": "2025-12-18T00:00:00.000000Z"
                    }
                },
                {
                    "id": 2094,
                    "maxio_customer_id": 303756,
                    "reference_id": "01-BUKVWT7CHL4-H",
                    "pdc_id": null,
                    "gateway_aid": "A155YG88",
                    "uuid": "42162b76-c772-4463-9d2f-31603764cb32",
                    "type_id": 7,
                    "status": "approved",
                    "name": "VERIS IMPACT",
                    "legal_name": "VERIS IMPACT",
                    "address_1": "B-88, AEES, Gulistan e jauhar, Block-8, Karachi 75290 Pakistan",
                    "address_2": null,
                    "city": "Karachi",
                    "state": "Sindh",
                    "location": "PK",
                    "zip": "",
                    "phone": "",
                    "email": "jamal.gulzar@verisimpact.com",
                    "contact_first_name": "Jamal",
                    "contact_last_name": "Gulzar",
                    "website": "https://www.verisimpact.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2026-03-13T00:00:00.000000Z",
                    "updated_at": "2026-05-12T14:52:31.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Pakistan",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 2094,
                        "id": 42,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2026-04-07T00:00:00.000000Z",
                        "updated_at": "2026-04-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8626,
                    "maxio_customer_id": 310373,
                    "reference_id": "01-NWZQ9M3DYJV-I",
                    "pdc_id": null,
                    "gateway_aid": "A596TF96",
                    "uuid": "cdb999c3-24f2-422a-ac7d-fb59c73bbce8",
                    "type_id": 7,
                    "status": "approved",
                    "name": "SGS-CSTC Standards Technical Services Co., Ltd. Guangzhou Branch",
                    "legal_name": "SGS-CSTC Standards Technical Services Co., Ltd. Guangzhou Branch",
                    "address_1": "198 Kezhu Road, Scientech Park, Guangzhou Economic & Technology Development District, 510663, Guangzhou, China",
                    "address_2": null,
                    "city": "Guangzhou",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "",
                    "phone": "00862082155632",
                    "email": "Ivan.Xie@sgs.com",
                    "contact_first_name": "Liane",
                    "contact_last_name": "liu",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-04-19T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:47.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8626,
                        "id": 43,
                        "valid_until": "2026-04-17T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-14T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8566,
                    "maxio_customer_id": 310313,
                    "reference_id": "01-FBL2N7GV3XN-F",
                    "pdc_id": null,
                    "gateway_aid": "A184OQ79",
                    "uuid": "591df904-4afd-4694-ad6c-e57443f1f3d9",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Services (Tianjin) Ltd.",
                    "legal_name": "Intertek Testing Services (Tianjin) Ltd.",
                    "address_1": "2-4/F Yishanghutong Building No. 7 Guiyuan Road. Huayuan Hi-Tech Park",
                    "address_2": null,
                    "city": "Tianjin",
                    "state": "Tianjin",
                    "location": "CN",
                    "zip": "",
                    "phone": "+86 22 8371 2202",
                    "email": "patrick.gong@intertek.com",
                    "contact_first_name": "Ben",
                    "contact_last_name": "Cheng ZDHC MRSL",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:36.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8566,
                        "id": 44,
                        "valid_until": "2026-04-10T00:00:00.000000Z",
                        "created_at": "2024-05-11T00:00:00.000000Z",
                        "updated_at": "2027-10-04T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8588,
                    "maxio_customer_id": 310335,
                    "reference_id": "01-S27UDK9JDRR-S",
                    "pdc_id": null,
                    "gateway_aid": "A382HL60",
                    "uuid": "8a53e67d-ba82-4b5c-adde-344dcf5a7067",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek India Private Limited (Banglalore)",
                    "legal_name": "Intertek India Private Limited (Banglalore)",
                    "address_1": "No-17/F, Industrial Subrub, Yeshwanthpur, Yeshwanthpur, 560022",
                    "address_2": null,
                    "city": "Bengalooru",
                    "state": "Karnataka",
                    "location": "IN",
                    "zip": "",
                    "phone": "+9140213700",
                    "email": "Aatheeswaran.s@intertek.com",
                    "contact_first_name": "Aatheeswaran",
                    "contact_last_name": "User",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:40.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8588,
                        "id": 45,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-14T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8605,
                    "maxio_customer_id": 310352,
                    "reference_id": "01-TMEJGAMW99X-Y",
                    "pdc_id": null,
                    "gateway_aid": "A202RF74",
                    "uuid": "6becb420-a5c0-4a35-97d1-46385b2a564c",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland Hong Kong Ltd._MRSL",
                    "legal_name": "TUV Rheinland Hong Kong Ltd._MRSL",
                    "address_1": "3-4, 11/F, Fou Wah Industrial Building, 10-16 Pun Shan St, Tsuen Wan",
                    "address_2": null,
                    "city": "Hong Kong",
                    "state": "Hong Kong",
                    "location": "HK",
                    "zip": "",
                    "phone": "+852 2192 1022",
                    "email": "jet.lee@tuv.com",
                    "contact_first_name": "Anthony",
                    "contact_last_name": "TU",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-07T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:43.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Hong Kong SAR China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8605,
                        "id": 46,
                        "valid_until": "2026-04-17T00:00:00.000000Z",
                        "created_at": "2024-01-02T00:00:00.000000Z",
                        "updated_at": "2026-04-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8562,
                    "maxio_customer_id": 310309,
                    "reference_id": "01-E94CYGWMHFQ-T",
                    "pdc_id": null,
                    "gateway_aid": "A885GA11",
                    "uuid": "31f791c4-306c-46d4-b2e1-c75ea3681cdc",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Services Ltd., Shanghai",
                    "legal_name": "Intertek Testing Services Ltd., Shanghai",
                    "address_1": "2/F, Building No. 4 Shanghai Comalong Technology Service Park 889 Yi Shan Road",
                    "address_2": null,
                    "city": "Shanghai",
                    "state": "Shanghai",
                    "location": "CN",
                    "zip": "",
                    "phone": "+86 (21) 6120 6060",
                    "email": "jane.wu@intertek.com",
                    "contact_first_name": "Jane",
                    "contact_last_name": "Wu",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:35.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8562,
                        "id": 47,
                        "valid_until": "2026-04-02T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-02T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8623,
                    "maxio_customer_id": 310370,
                    "reference_id": "01-2V6NQ8XPXTU-N",
                    "pdc_id": null,
                    "gateway_aid": "A113LK71",
                    "uuid": "94a4ec0d-deca-4397-abbe-2d5c6f09bf28",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Services Korea Ltd._MRSL",
                    "legal_name": "Intertek Testing Services Korea Ltd._MRSL",
                    "address_1": "1F, A-Ju digital tower, 7, Achasan-ro 5-gil, Seongdong-gu 04793 Seoul Korea Republic of",
                    "address_2": null,
                    "city": "Seongdong",
                    "state": "Seoul",
                    "location": "KR",
                    "zip": "",
                    "phone": "-",
                    "email": "ryan.kwak@intertek.com",
                    "contact_first_name": "Heloise",
                    "contact_last_name": "Jeong",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-03-24T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:47.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "South Korea",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8623,
                        "id": 48,
                        "valid_until": "2026-04-03T00:00:00.000000Z",
                        "created_at": "2024-02-16T00:00:00.000000Z",
                        "updated_at": "2026-02-19T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8567,
                    "maxio_customer_id": 310314,
                    "reference_id": "01-8ZQM4EKQRV3-B",
                    "pdc_id": null,
                    "gateway_aid": "A904AT31",
                    "uuid": "042f9b98-c0c0-4c76-a85f-75d059a4c9b6",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Brachi Testing Services S.r.l. Unipersonale_MRSL",
                    "legal_name": "Brachi Testing Services S.r.l. Unipersonale_MRSL",
                    "address_1": "Via Fona di Mezzana, 59100",
                    "address_2": null,
                    "city": "Mezzana",
                    "state": "Prato",
                    "location": "IT",
                    "zip": "",
                    "phone": "+390574591343",
                    "email": "giancarlo.diblasi@brachi.it",
                    "contact_first_name": "Giancarlo",
                    "contact_last_name": "Di Blasi",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:36.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8567,
                        "id": 49,
                        "valid_until": "2026-04-13T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-10T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8633,
                    "maxio_customer_id": 310380,
                    "reference_id": "01-ZJAX39WTFF9-R",
                    "pdc_id": null,
                    "gateway_aid": "A840WS25",
                    "uuid": "f31fac18-eefb-49c7-aae5-6b9b6d2f83c9",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer Products Services (Guangzhou) Co.,Ltd_MRSL",
                    "legal_name": "Bureau Veritas Consumer Products Services (Guangzhou) Co.,Ltd_MRSL",
                    "address_1": "No.183, Shi Nan Road, Mei Lin Plaza Block B, Dong",
                    "address_2": null,
                    "city": "Guangzhou",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "nina.ren@bureauveritas.com",
                    "contact_first_name": "Nina",
                    "contact_last_name": "REN",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-06-14T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:49.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8633,
                        "id": 50,
                        "valid_until": "2026-04-01T00:00:00.000000Z",
                        "created_at": "2024-01-30T00:00:00.000000Z",
                        "updated_at": "2026-03-23T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8624,
                    "maxio_customer_id": 310371,
                    "reference_id": "01-TMEJGAYYMHY-G",
                    "pdc_id": null,
                    "gateway_aid": "A532HF62",
                    "uuid": "124965cc-6ec7-421e-ac31-5da3569ebe85",
                    "type_id": 7,
                    "status": "approved",
                    "name": "SGS Vietnam Ltd (Ho Chi Minh)_MRSL",
                    "legal_name": "SGS Vietnam Ltd (Ho Chi Minh)_MRSL",
                    "address_1": "Lot III/21, 19/5A St. Tan Binh Industrial Zone, Tay Thanh 700000",
                    "address_2": null,
                    "city": "Tan Phu",
                    "state": "Ho Chi Minh City",
                    "location": "VN",
                    "zip": "",
                    "phone": "-",
                    "email": "rhodora.quinto@sgs.com",
                    "contact_first_name": "Pham",
                    "contact_last_name": "DUNG",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-04-05T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:47.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Vietnam",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8624,
                        "id": 51,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-26T00:00:00.000000Z",
                        "updated_at": "2026-03-31T00:00:00.000000Z"
                    }
                },
                {
                    "id": 7752,
                    "maxio_customer_id": 309499,
                    "reference_id": "01-TMEJGGMKYL4-U",
                    "pdc_id": null,
                    "gateway_aid": "A380PK51",
                    "uuid": "c03141ee-796e-45c3-a5e1-5a43cee07a2f",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland India (Gurugram) Pvt. Ltd_MRSL",
                    "legal_name": "TUV Rheinland India (Gurugram) Pvt. Ltd_MRSL",
                    "address_1": "Plot no. 330-331, Udyog Vihar – Phase IV, Gurugram – 122015, Haryana, India",
                    "address_2": null,
                    "city": "Gurgaon",
                    "state": "Haryana",
                    "location": "IN",
                    "zip": "122015",
                    "phone": "+91 80 3923 4301",
                    "email": "Shivendra.Parmar@ind.tuv.com",
                    "contact_first_name": "Shivendra",
                    "contact_last_name": "Parmar",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2022-01-05T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:16:59.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 7752,
                        "id": 52,
                        "valid_until": "2026-03-16T00:00:00.000000Z",
                        "created_at": "2024-01-03T00:00:00.000000Z",
                        "updated_at": "2026-03-05T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8561,
                    "maxio_customer_id": 310308,
                    "reference_id": "01-8ZQM4EKZQGH-S",
                    "pdc_id": null,
                    "gateway_aid": "A210ZF97",
                    "uuid": "b922aa67-6b83-458d-be23-ee970e93b795",
                    "type_id": 7,
                    "status": "approved",
                    "name": "ZHEJIANG FANGYUAN TEST GROUP CO., LTD.",
                    "legal_name": "ZHEJIANG FANGYUAN TEST GROUP CO., LTD.",
                    "address_1": "No.300 Xiasha Road, Hangzhou Economic & Technological Development Area. 310018 Hangzhou, Zhejiang",
                    "address_2": null,
                    "city": "Hangzhou",
                    "state": "Zhejiang",
                    "location": "CN",
                    "zip": "",
                    "phone": "+",
                    "email": "slc_tc@163.com",
                    "contact_first_name": "Yahong",
                    "contact_last_name": "Zhang",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2021-03-26T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:35.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8561,
                        "id": 53,
                        "valid_until": "2026-04-17T00:00:00.000000Z",
                        "created_at": "2023-12-28T00:00:00.000000Z",
                        "updated_at": "2026-04-16T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8610,
                    "maxio_customer_id": 310357,
                    "reference_id": "01-3SRBVLSXB8Z-D",
                    "pdc_id": null,
                    "gateway_aid": "A395JH61",
                    "uuid": "bcdfe895-57a8-4f98-bdc4-90a900de5070",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Services Shenzhen Ltd. Guangzhou Branch",
                    "legal_name": "Intertek Testing Services Shenzhen Ltd. Guangzhou Branch",
                    "address_1": "Room 601, No. 8, East BaoYing Road, Huangpu District, Guangzhou 510730,",
                    "address_2": null,
                    "city": "Guangzhou",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "",
                    "phone": "+86 20 28209501",
                    "email": "vivian.px.li@intertek.com",
                    "contact_first_name": "Vivian",
                    "contact_last_name": "Li",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:44.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8610,
                        "id": 54,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-21T00:00:00.000000Z",
                        "updated_at": "2026-04-20T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8636,
                    "maxio_customer_id": 310383,
                    "reference_id": "01-HRBL623CSUQ-H",
                    "pdc_id": null,
                    "gateway_aid": "A342QT20",
                    "uuid": "0fc2a375-0490-4e48-937b-dce8dbed0b81",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer Products Services Vietnam_MRSL",
                    "legal_name": "Bureau Veritas Consumer Products Services Vietnam_MRSL",
                    "address_1": "Lot C7-C9, Conurbation 2, Cat Lai Industrial Zone, Thanh My Loi Ward, District 2, 700000,Ho Chi Minh City, Vietnam",
                    "address_2": null,
                    "city": "Ho Chi Minh City",
                    "state": "Ho Chi Minh City",
                    "location": "VN",
                    "zip": "",
                    "phone": "-",
                    "email": "lina.vo@bureauveritas.com",
                    "contact_first_name": "Suri",
                    "contact_last_name": "Tran",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-07-25T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:49.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Vietnam",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8636,
                        "id": 55,
                        "valid_until": "2026-04-17T00:00:00.000000Z",
                        "created_at": "2023-12-22T00:00:00.000000Z",
                        "updated_at": "2026-02-09T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8625,
                    "maxio_customer_id": 310372,
                    "reference_id": "01-43HF2Y6YTEA-E",
                    "pdc_id": null,
                    "gateway_aid": "A574ZY10",
                    "uuid": "372d85ea-42bc-4aae-a279-db159aa078ee",
                    "type_id": 7,
                    "status": "approved",
                    "name": "SGS-CSTC Standards Technical Services (Shanghai) Co., Ltd._MRSL",
                    "legal_name": "SGS-CSTC Standards Technical Services (Shanghai) Co., Ltd._MRSL",
                    "address_1": "4/F, 4thBuilding No. 889, Yishan Rd, Xuhui District, 200030 Shanghai, China",
                    "address_2": null,
                    "city": "Xuhui",
                    "state": "Shanghai",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "barry.lou@sgs.com",
                    "contact_first_name": "IVEN",
                    "contact_last_name": "DI",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-04-05T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:47.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8625,
                        "id": 56,
                        "valid_until": "2026-04-13T00:00:00.000000Z",
                        "created_at": "2024-01-05T00:00:00.000000Z",
                        "updated_at": "2026-04-08T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8683,
                    "maxio_customer_id": 310430,
                    "reference_id": "01-HRBL6228FJ8-G",
                    "pdc_id": null,
                    "gateway_aid": "A891GF64",
                    "uuid": "e879f052-6547-4474-ab20-0105064ca411",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer Products Services (I) Pvt. Ltd. (Bangalore)_MRSL",
                    "legal_name": "Bureau Veritas Consumer Products Services (I) Pvt. Ltd. (Bangalore)_MRSL",
                    "address_1": "AKR Tech Park, Ground floor, C Block, Survey no 112, Bangalore, 560068,",
                    "address_2": null,
                    "city": "Bangalore",
                    "state": "Karnataka",
                    "location": "IN",
                    "zip": "",
                    "phone": "-",
                    "email": "sudalaimuthu.vs@bureauveritas.com",
                    "contact_first_name": "Sudalaimuthu",
                    "contact_last_name": "VS",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-09-01T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:58.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8683,
                        "id": 57,
                        "valid_until": "2026-04-10T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-03-30T00:00:00.000000Z"
                    }
                },
                {
                    "id": 7742,
                    "maxio_customer_id": 309489,
                    "reference_id": "01-FBL2NNAL9BR-F",
                    "pdc_id": null,
                    "gateway_aid": "A467YQ44",
                    "uuid": "d5ef0f03-b637-4867-8a6c-0c90d9321202",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Eurofins MTS Consumer Product Testing (Dongguan) Co. Ltd",
                    "legal_name": "Eurofins MTS Consumer Product Testing (Dongguan) Co. Ltd",
                    "address_1": "No, 76 Liangping road, Xin jiu wei village, liaobo town, 523400 Dongguan China",
                    "address_2": null,
                    "city": "Dongguan City",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "523400",
                    "phone": "-",
                    "email": "Carol.ke@cpt.eurofinscn.com",
                    "contact_first_name": "CAROL",
                    "contact_last_name": "Ke",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-05-23T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:16:57.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 7742,
                        "id": 58,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-17T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8559,
                    "maxio_customer_id": 310306,
                    "reference_id": "01-CHFY7SAA6R2-Y",
                    "pdc_id": null,
                    "gateway_aid": "A679WF94",
                    "uuid": "151e16f6-d103-4c78-b303-8c7e8336b661",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Centre Testing International Group Co., Ltd. (CTI)",
                    "legal_name": "Centre Testing International Group Co., Ltd. (CTI)",
                    "address_1": "CTI Building, No.4, Liuxian 3rd Road, Xin’an Street, Bao’an District",
                    "address_2": null,
                    "city": "Shenzhen",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "",
                    "phone": "+",
                    "email": "kevin.lu@cti-cert.com",
                    "contact_first_name": "Kevin",
                    "contact_last_name": "Lu",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2021-01-29T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:35.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8559,
                        "id": 59,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-15T00:00:00.000000Z"
                    }
                },
                {
                    "id": 5835,
                    "maxio_customer_id": 307582,
                    "reference_id": "01-8ZQM4BGUY6M-T",
                    "pdc_id": null,
                    "gateway_aid": "A826RC45",
                    "uuid": "f13d4431-8b6d-422e-a91c-4cbbc52987fa",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Nimkartek Technical Services Pvt Ltd",
                    "legal_name": "Nimkartek Technical Services Pvt Ltd",
                    "address_1": "3rd Floor, Narmada, Laxmi Industrial Complex, Vartak Nagar, Pokhran Road 1",
                    "address_2": null,
                    "city": "",
                    "state": "Maharashtra",
                    "location": "IN",
                    "zip": "400606",
                    "phone": "+91 9819641527",
                    "email": "anagha.nimkar@nimkartek.com",
                    "contact_first_name": "Anagha",
                    "contact_last_name": "Nimkar",
                    "website": "https://www.nimkartek.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-06T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:10:35.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 5835,
                        "id": 60,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8662,
                    "maxio_customer_id": 310409,
                    "reference_id": "01-S27UDKGPZMN-X",
                    "pdc_id": null,
                    "gateway_aid": "A743LA72",
                    "uuid": "99e5814e-7e90-4d02-b298-63dc490bd043",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Elle.A.Ci.Ti. srl",
                    "legal_name": "Elle.A.Ci.Ti. srl",
                    "address_1": "Via Leopardi 11a 22075",
                    "address_2": null,
                    "city": "Lurate Caccivio",
                    "state": "Como",
                    "location": "IT",
                    "zip": "",
                    "phone": "+39031492543",
                    "email": "e.scudella@elleaciti.com",
                    "contact_first_name": "Elisa Silvia",
                    "contact_last_name": "Botto",
                    "website": "https://www.elleaciti.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:54.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8662,
                        "id": 61,
                        "valid_until": "2026-04-15T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2027-12-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8569,
                    "maxio_customer_id": 310316,
                    "reference_id": "01-S27UDK6VX3D-J",
                    "pdc_id": null,
                    "gateway_aid": "A460HH65",
                    "uuid": "f2d95b47-df0f-4b1f-99ec-47970a5565f8",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland Vietnam Co., Ltd_MRSL",
                    "legal_name": "TUV Rheinland Vietnam Co., Ltd_MRSL",
                    "address_1": "Centre Point, 106 Nguyễn Văn Trỗi, Phường 8, Phú Nhuận Softlines & Hardlines Laboratory  Hall 10, Road No.1, Quang Trung Software City, Tan Chanh Hiep Ward",
                    "address_2": null,
                    "city": "Phu Nhuan",
                    "state": "Ho Chi Minh City",
                    "location": "VN",
                    "zip": "",
                    "phone": "+84 28 3842 0600",
                    "email": "Linh.dao@tuv.com",
                    "contact_first_name": "Tan Anh",
                    "contact_last_name": "Nguyen Ngo",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-06T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:37.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Vietnam",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8569,
                        "id": 62,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-15T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8628,
                    "maxio_customer_id": 310375,
                    "reference_id": "01-R7UKTVECN3U-G",
                    "pdc_id": null,
                    "gateway_aid": "A459HZ44",
                    "uuid": "e9645cca-9f71-4508-a739-15f3164ff0c8",
                    "type_id": 7,
                    "status": "approved",
                    "name": "CU Inspections & Certifications India Pvt. Ltd",
                    "legal_name": "CU Inspections & Certifications India Pvt. Ltd",
                    "address_1": "23rd Floor, B wing • Arihant Aura • Plot no. 13/1, TTC • Opp. Turbhe Railway Station Thane Belapur Road, MIDC side",
                    "address_2": null,
                    "city": "Navi Mumbai",
                    "state": "Maharashtra",
                    "location": "IN",
                    "zip": "",
                    "phone": "-",
                    "email": "amolp@controlunion.com",
                    "contact_first_name": "Amol",
                    "contact_last_name": "Patil",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-05-12T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:48.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8628,
                        "id": 63,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-14T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8719,
                    "maxio_customer_id": 310465,
                    "reference_id": "01-MX94FCJMAUJ-M",
                    "pdc_id": null,
                    "gateway_aid": "A897PW37",
                    "uuid": "8692ffd3-513f-4f34-9b8a-1b62490a72e8",
                    "type_id": 7,
                    "status": "approved",
                    "name": "ICEA",
                    "legal_name": "ICEA",
                    "address_1": "Via Brugnoli 15",
                    "address_2": null,
                    "city": "Bologna",
                    "state": "Bologna",
                    "location": "IT",
                    "zip": "",
                    "phone": "+39051272986",
                    "email": "paolo.foglia@icea.bio",
                    "contact_first_name": "Francesco",
                    "contact_last_name": "Pazzi",
                    "website": "https://www.icea.bio",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-04-06T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:20:05.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8719,
                        "id": 64,
                        "valid_until": "2025-04-28T00:00:00.000000Z",
                        "created_at": "2025-04-24T00:00:00.000000Z",
                        "updated_at": "2023-07-14T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8629,
                    "maxio_customer_id": 310376,
                    "reference_id": "01-R7UKTVEJY9K-J",
                    "pdc_id": null,
                    "gateway_aid": "A382AD87",
                    "uuid": "1e4f95d8-b4fc-4434-9372-024f8ece9c0e",
                    "type_id": 7,
                    "status": "approved",
                    "name": "UL VS Bangladesh Ltd._MRSL",
                    "legal_name": "UL VS Bangladesh Ltd._MRSL",
                    "address_1": "The Pearl Trade Center (5th, 14th & 15th Floor), Cha-90/3, Progoti Sharani, North Badda. 1212 Dhaka Bangladesh",
                    "address_2": null,
                    "city": "Badda",
                    "state": "Dhaka",
                    "location": "BD",
                    "zip": "",
                    "phone": "-",
                    "email": "Ahammad.Hossen@ul.com",
                    "contact_first_name": "Ahammad",
                    "contact_last_name": "Hossen",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-05-15T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:48.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Bangladesh",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8629,
                        "id": 65,
                        "valid_until": "2024-12-09T00:00:00.000000Z",
                        "created_at": "2023-12-24T00:00:00.000000Z",
                        "updated_at": "2024-12-03T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8632,
                    "maxio_customer_id": 310379,
                    "reference_id": "01-6TWZXQVDXKG-F",
                    "pdc_id": null,
                    "gateway_aid": "A634ZE37",
                    "uuid": "5e43fd51-7ea0-4d61-bfd4-4da9a4a40366",
                    "type_id": 7,
                    "status": "approved",
                    "name": "UL India Private Limited, Gurugram, India_MRSL",
                    "legal_name": "UL India Private Limited, Gurugram, India_MRSL",
                    "address_1": "A12,Infociry,Sector 34, 122001, Gurgaon,Haryana, India",
                    "address_2": null,
                    "city": "Gurgaon",
                    "state": "Haryana",
                    "location": "IN",
                    "zip": "",
                    "phone": "-",
                    "email": "shashi.b.rout@ul.com",
                    "contact_first_name": "Shashi",
                    "contact_last_name": "Rout",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-06-14T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:49.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8632,
                        "id": 66,
                        "valid_until": "2025-01-02T00:00:00.000000Z",
                        "created_at": "2024-12-24T00:00:00.000000Z",
                        "updated_at": "2024-12-23T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8591,
                    "maxio_customer_id": 310338,
                    "reference_id": "01-BUKVW6CCGJJ-A",
                    "pdc_id": null,
                    "gateway_aid": "A981IZ54",
                    "uuid": "35bbdda4-f0d1-46cc-8e06-d0a42bcb2d10",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Eurofins - BLC Leather Technology Centre Ltd",
                    "legal_name": "Eurofins - BLC Leather Technology Centre Ltd",
                    "address_1": "Kings Park Road, Moulton Park NN 3 6JD",
                    "address_2": null,
                    "city": "Northampton",
                    "state": "Northamptonshire",
                    "location": "GB",
                    "zip": "",
                    "phone": "+44 1604 679999",
                    "email": "Georgina.Mawer@cpt.eurofinseu.com",
                    "contact_first_name": "Georgina",
                    "contact_last_name": "Mawer",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-06T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:41.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "United Kingdom",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8591,
                        "id": 67,
                        "valid_until": "2026-04-17T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-16T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8627,
                    "maxio_customer_id": 310374,
                    "reference_id": "01-PYSRKBD4KL7-E",
                    "pdc_id": null,
                    "gateway_aid": "A535AF86",
                    "uuid": "5ed3e4e2-c076-424a-a34a-7e5a0544d49f",
                    "type_id": 7,
                    "status": "approved",
                    "name": "UL VS Shanghai Limited_MRSL",
                    "legal_name": "UL VS Shanghai Limited_MRSL",
                    "address_1": "2F, Building 1, Caohejing Hi Tech Park. No.188, PingFu Road, Xu Hui District, 200231 Shanghai China",
                    "address_2": null,
                    "city": "Shanghai",
                    "state": "Shanghai",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "Sherry.Xue@ul.com",
                    "contact_first_name": "sherry",
                    "contact_last_name": "xue",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-05-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:48.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8627,
                        "id": 69,
                        "valid_until": "2024-04-24T00:00:00.000000Z",
                        "created_at": "2024-01-19T00:00:00.000000Z",
                        "updated_at": "2024-01-18T00:00:00.000000Z"
                    }
                }
            ]
        },
        {
            "id": 3,
            "name": "CTZ Foundational — 1.0.0",
            "version": "1.0.0",
            "ctz_level_id": 1,
            "start_date": "2023-12-19T00:00:00.000000Z",
            "end_date": null,
            "status": "PASSED",
            "expired_at": null,
            "created_at": "2026-05-08T21:42:18.000000Z",
            "updated_at": "2026-05-13T11:27:29.000000Z",
            "ctz_level": {
                "id": 1,
                "name": "Foundational",
                "created_at": "2026-05-08T21:42:17.000000Z",
                "updated_at": "2026-05-08T21:42:17.000000Z"
            },
            "organisations": [
                {
                    "id": 8613,
                    "maxio_customer_id": 310360,
                    "reference_id": "01-TMEJGAMNT76-Z",
                    "pdc_id": null,
                    "gateway_aid": "A718TE34",
                    "uuid": "a137f0fd-60df-47cc-99b6-6db56701d205",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Inditex_MRSL",
                    "legal_name": "Inditex_MRSL",
                    "address_1": "Avda. de la Dioputacion s/n, 15142 Arteixo, A Coruna.",
                    "address_2": null,
                    "city": "Arteijo",
                    "state": "Galicia",
                    "location": "ES",
                    "zip": "",
                    "phone": "0034 981185400",
                    "email": "germangi@inditex.com",
                    "contact_first_name": "Beatriz",
                    "contact_last_name": "Baeza",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-02-21T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:45.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Spain",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8613,
                        "id": 1,
                        "valid_until": "2026-03-16T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2033-10-25T00:00:00.000000Z"
                    }
                },
                {
                    "id": 7753,
                    "maxio_customer_id": 309500,
                    "reference_id": "01-TMEJGGMBW39-E",
                    "pdc_id": null,
                    "gateway_aid": "A339JQ58",
                    "uuid": "8afdf188-2575-4347-aad8-c9f521e188c4",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Test & Innovation Lab",
                    "legal_name": "Test & Innovation Lab",
                    "address_1": "Viale Montegrappa, 320 - PRATO - 59100 - ITALY",
                    "address_2": null,
                    "city": "Prato",
                    "state": "Prato",
                    "location": "IT",
                    "zip": "59100",
                    "phone": "+39 0574 1770001",
                    "email": "giuseppe.bartolini@labtil.com",
                    "contact_first_name": "Andrea",
                    "contact_last_name": "Franchi",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-06-09T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:16:59.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 7753,
                        "id": 2,
                        "valid_until": "2026-03-27T00:00:00.000000Z",
                        "created_at": "2024-01-25T00:00:00.000000Z",
                        "updated_at": "2026-03-25T00:00:00.000000Z"
                    }
                },
                {
                    "id": 7738,
                    "maxio_customer_id": 309485,
                    "reference_id": "01-NWZQ99R2VV8-H",
                    "pdc_id": null,
                    "gateway_aid": "A932KJ49",
                    "uuid": "f538e6ef-c0ae-4f7d-8064-71c784e1cb45",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland Shenzhen Co., Ltd._MRSL",
                    "legal_name": "TUV Rheinland Shenzhen Co., Ltd._MRSL",
                    "address_1": "1F East &2-4F, Cybio Technology Building No. 1, No. 16 Kejibei 2nd Road, High-Tech Industrial Park North, Nanshan District, 518057 Shenzhen, China",
                    "address_2": null,
                    "city": "Shenzhen",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "518057",
                    "phone": "+852 2192 1022",
                    "email": "jet.lee@tuv.com",
                    "contact_first_name": "Nick",
                    "contact_last_name": "Yang",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2022-01-05T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:16:55.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 7738,
                        "id": 3,
                        "valid_until": "2026-04-17T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-16T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8608,
                    "maxio_customer_id": 310355,
                    "reference_id": "01-TMEJGAMMZYV-F",
                    "pdc_id": null,
                    "gateway_aid": "A353QZ62",
                    "uuid": "ff550de3-8165-4abc-86cc-69b706f69f90",
                    "type_id": 7,
                    "status": "approved",
                    "name": "bluesign® Technologies AG",
                    "legal_name": "bluesign® Technologies AG",
                    "address_1": "Moevenstrasse 18, 9015 St. Gallen, Switzerland",
                    "address_2": null,
                    "city": "Saint Gallen",
                    "state": "Sankt Gallen",
                    "location": "CH",
                    "zip": "",
                    "phone": "+41 71 272 29 90",
                    "email": "kurt_schlaepfer@bluesign.com",
                    "contact_first_name": "Kurt",
                    "contact_last_name": "Schäpfer",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-06T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:44.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Switzerland",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8608,
                        "id": 8,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-20T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8673,
                    "maxio_customer_id": 310420,
                    "reference_id": "01-3SRBVLXQG9V-J",
                    "pdc_id": null,
                    "gateway_aid": "A754MT47",
                    "uuid": "1e28b961-cdbf-492a-8b8c-51519010b861",
                    "type_id": 7,
                    "status": "approved",
                    "name": "GCL International",
                    "legal_name": "GCL International",
                    "address_1": "1, St Mark Street, London, E1 8DA, United Kingdom",
                    "address_2": null,
                    "city": "London",
                    "state": "London",
                    "location": "GB",
                    "zip": "",
                    "phone": "+91-8754694888",
                    "email": "pradip@gcl-intl.com",
                    "contact_first_name": "Pradip",
                    "contact_last_name": "Patil",
                    "website": "https://www.gcl.uk/",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2021-12-20T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:56.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "United Kingdom",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8673,
                        "id": 9,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2024-01-11T00:00:00.000000Z",
                        "updated_at": "2026-04-09T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8634,
                    "maxio_customer_id": 310381,
                    "reference_id": "01-S27UDKYCQ3A-W",
                    "pdc_id": null,
                    "gateway_aid": "A346HD39",
                    "uuid": "a6484b22-b794-43d0-9285-3c315b3af1c0",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer Products Services (Shanghai) Co., Ltd._MRSL",
                    "legal_name": "Bureau Veritas Consumer Products Services (Shanghai) Co., Ltd._MRSL",
                    "address_1": "No. 168 GuangHua Road,MinHang District, 201108, Shanghai",
                    "address_2": null,
                    "city": "Shanghai",
                    "state": "Shanghai",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "peter.lu@bureauveritas.com",
                    "contact_first_name": "Steven han",
                    "contact_last_name": "Steven han",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-06-29T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:49.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8634,
                        "id": 10,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-08T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8687,
                    "maxio_customer_id": 310434,
                    "reference_id": "01-S27UDKKD2QR-E",
                    "pdc_id": null,
                    "gateway_aid": "A282WC67",
                    "uuid": "040b5047-76a1-4d29-8df1-6cd83c67f9f0",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer Products Services (Hong Kong) Limited, Taiwan Branch_MRSL",
                    "legal_name": "Bureau Veritas Consumer Products Services (Hong Kong) Limited, Taiwan Branch_MRSL",
                    "address_1": "37, Zhongyang S. Rd., Sec. 2, Beitou, Taipei 112, Taiwan",
                    "address_2": null,
                    "city": "Taipei",
                    "state": "Taipei",
                    "location": "TW",
                    "zip": "",
                    "phone": "-",
                    "email": "Vico.lin@bureauveritas.com",
                    "contact_first_name": "Vico",
                    "contact_last_name": "Lin",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-10-11T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:59.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Taiwan",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8687,
                        "id": 11,
                        "valid_until": "2026-03-24T00:00:00.000000Z",
                        "created_at": "2024-01-10T00:00:00.000000Z",
                        "updated_at": "2026-03-12T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8638,
                    "maxio_customer_id": 310385,
                    "reference_id": "01-76N8MD26GWS-O",
                    "pdc_id": null,
                    "gateway_aid": "A715SZ55",
                    "uuid": "31c0ce0f-d232-4d24-b2a5-8ec1d213b5a3",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer products Services (I) Pvt. Ltd. (Noida)",
                    "legal_name": "Bureau Veritas Consumer products Services (I) Pvt. Ltd. (Noida)",
                    "address_1": "C-19 , Sector-7 201301 Noida India",
                    "address_2": null,
                    "city": "Noida",
                    "state": "Uttar Pradesh",
                    "location": "IN",
                    "zip": "",
                    "phone": "-",
                    "email": "sumanta.swain@bureauveritas.com",
                    "contact_first_name": "Sumanta",
                    "contact_last_name": "Swain",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-09-19T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:50.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8638,
                        "id": 12,
                        "valid_until": "2025-09-25T00:00:00.000000Z",
                        "created_at": "2024-05-31T00:00:00.000000Z",
                        "updated_at": "2025-07-26T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8551,
                    "maxio_customer_id": 310298,
                    "reference_id": "01-WEJAPXHF6V4-V",
                    "pdc_id": null,
                    "gateway_aid": "A549OE34",
                    "uuid": "5afbe0cf-f430-4bd4-bdc3-17427cddb67c",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Services A.S.Turkey",
                    "legal_name": "Intertek Testing Services A.S.Turkey",
                    "address_1": "Merkez Mahallesi, Sanayi Cad. Altındağ Plaza No:23",
                    "address_2": null,
                    "city": "Sanayi",
                    "state": "Istanbul",
                    "location": "US",
                    "zip": "",
                    "phone": "+902124964646",
                    "email": "zeynep.akin@intertek.com",
                    "contact_first_name": "Ben",
                    "contact_last_name": "Cheng ZDHC MRSL",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:33.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "United States",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8551,
                        "id": 13,
                        "valid_until": "2026-03-23T00:00:00.000000Z",
                        "created_at": "2024-01-22T00:00:00.000000Z",
                        "updated_at": "2026-03-17T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8695,
                    "maxio_customer_id": 310442,
                    "reference_id": "01-S27UDKAQZ4J-G",
                    "pdc_id": null,
                    "gateway_aid": "A825AG65",
                    "uuid": "bf446a0f-07c4-4776-a3d4-221cf3596478",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer Products Services (Bangladesh) Ltd._MRSL",
                    "legal_name": "Bureau Veritas Consumer Products Services (Bangladesh) Ltd._MRSL",
                    "address_1": "Plot#130, DEPZ Extension Area, Savar, Dhaka 1349 Bangladesh",
                    "address_2": null,
                    "city": "Savar",
                    "state": "Dhaka",
                    "location": "BD",
                    "zip": "",
                    "phone": "-",
                    "email": "nur.alam@bureauveritas.com",
                    "contact_first_name": "Sharan",
                    "contact_last_name": "Roy",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2024-02-19T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:20:01.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Bangladesh",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8695,
                        "id": 14,
                        "valid_until": "2025-02-13T00:00:00.000000Z",
                        "created_at": "2024-06-29T00:00:00.000000Z",
                        "updated_at": "2025-01-21T00:00:00.000000Z"
                    }
                },
                {
                    "id": 9068,
                    "maxio_customer_id": 310814,
                    "reference_id": "01-S27UDAYQVRK-R",
                    "pdc_id": null,
                    "gateway_aid": "A555PX59",
                    "uuid": "f171c290-f9d4-4a39-9f26-03093b40a5af",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV SUD Certification and Testing (China) Co. Ltd. Xiamen Branch",
                    "legal_name": "TUV SUD Certification and Testing (China) Co. Ltd. Xiamen Branch",
                    "address_1": "Unit 401, No.93 Huli Industrial Park, Meixi Road, Tong’an District 361100, Xiamen China",
                    "address_2": null,
                    "city": "Xiamen",
                    "state": "Fujian",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "nemo.chen@tuvsud.com",
                    "contact_first_name": "chao",
                    "contact_last_name": "chen",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-10-24T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:21:14.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 9068,
                        "id": 15,
                        "valid_until": "2026-01-07T00:00:00.000000Z",
                        "created_at": "2023-12-25T00:00:00.000000Z",
                        "updated_at": "2025-09-15T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8581,
                    "maxio_customer_id": 310328,
                    "reference_id": "01-2V6NQ8T6AHT-F",
                    "pdc_id": null,
                    "gateway_aid": "A752DH57",
                    "uuid": "763fb7d2-476c-4217-9f79-a683052a9361",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek India Pvt Ltd Gurgaon_MRSL",
                    "legal_name": "Intertek India Pvt Ltd Gurgaon_MRSL",
                    "address_1": "Udhog Vihar phase 2, Plot no 290 Gurgaon India",
                    "address_2": null,
                    "city": "Gurgaon",
                    "state": "Haryana",
                    "location": "IN",
                    "zip": "",
                    "phone": "+91 0124 450 3400",
                    "email": "ravindra.s@intertek.com",
                    "contact_first_name": "Ravindra",
                    "contact_last_name": "Singh",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:39.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8581,
                        "id": 16,
                        "valid_until": "2026-02-20T00:00:00.000000Z",
                        "created_at": "2024-05-01T00:00:00.000000Z",
                        "updated_at": "2026-01-31T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8589,
                    "maxio_customer_id": 310336,
                    "reference_id": "01-S27UDK9WJ3K-L",
                    "pdc_id": null,
                    "gateway_aid": "A588PW46",
                    "uuid": "79e11446-97a1-41d5-84c6-ce24af34a8c9",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TEXANLAB LABORATORIES PVT. LTD.",
                    "legal_name": "TEXANLAB LABORATORIES PVT. LTD.",
                    "address_1": "R-855, 1st Floor, T.T.C. Industrial Area, Rabale, 400701",
                    "address_2": null,
                    "city": "Mumbai",
                    "state": "Maharashtra",
                    "location": "IN",
                    "zip": "",
                    "phone": "+91 22 6141 7130",
                    "email": "anitha.balkrishna@texanlabglobal.com",
                    "contact_first_name": "Milind",
                    "contact_last_name": "Marathe",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:40.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8589,
                        "id": 17,
                        "valid_until": "2026-03-31T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-03-30T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8637,
                    "maxio_customer_id": 310384,
                    "reference_id": "01-6TWZXQVEWQQ-M",
                    "pdc_id": null,
                    "gateway_aid": "A384ZL32",
                    "uuid": "958d920f-eff9-4183-9636-b63dbd9a8bd5",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Analytical srl",
                    "legal_name": "Analytical srl",
                    "address_1": "Viale Industria 24 Arzignano 36071 Italy",
                    "address_2": null,
                    "city": "Arzignano",
                    "state": "Vicenza",
                    "location": "IT",
                    "zip": "",
                    "phone": "-",
                    "email": "f.ferrigato@analytical.it",
                    "contact_first_name": "Francesca",
                    "contact_last_name": "Ferrigato",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-07-25T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:49.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8637,
                        "id": 18,
                        "valid_until": "2026-03-11T00:00:00.000000Z",
                        "created_at": "2024-02-20T00:00:00.000000Z",
                        "updated_at": "2026-03-10T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8604,
                    "maxio_customer_id": 310351,
                    "reference_id": "01-CHFY7SHYMZD-P",
                    "pdc_id": null,
                    "gateway_aid": "A888YX20",
                    "uuid": "7641e55d-fd93-4bf8-b511-2944ae04c960",
                    "type_id": 7,
                    "status": "approved",
                    "name": "SGS Global",
                    "legal_name": "SGS Global",
                    "address_1": "4/F On Wui Centre, 25 Lok Yip Road Fanling, N.T., Hong Kong.",
                    "address_2": null,
                    "city": "Hong Kong",
                    "state": "Hong Kong",
                    "location": "HK",
                    "zip": "",
                    "phone": "+852 22048354",
                    "email": "Keith.Tsang@sgs.com",
                    "contact_first_name": "Padmanaban",
                    "contact_last_name": "K S",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:43.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Hong Kong SAR China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8604,
                        "id": 19,
                        "valid_until": "2026-02-26T00:00:00.000000Z",
                        "created_at": "2024-01-04T00:00:00.000000Z",
                        "updated_at": "2026-01-15T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8603,
                    "maxio_customer_id": 310350,
                    "reference_id": "01-76N8MD6QT3C-E",
                    "pdc_id": null,
                    "gateway_aid": "A557RN68",
                    "uuid": "5526c7e5-cef0-4256-9397-5ff00a409ee5",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Service Labtest Bangladesh Ltd._MRSL",
                    "legal_name": "Intertek Testing Service Labtest Bangladesh Ltd._MRSL",
                    "address_1": "Intertek House, Phonix Tower, 407, Tejgoan Industrial Area, 1208",
                    "address_2": null,
                    "city": "Tejgaon",
                    "state": "Dhaka",
                    "location": "BD",
                    "zip": "",
                    "phone": "+8809666776669",
                    "email": "neyamul.hasan@intertek.com",
                    "contact_first_name": "Neyamul",
                    "contact_last_name": "Hasan",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:43.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Bangladesh",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8603,
                        "id": 20,
                        "valid_until": "2026-03-16T00:00:00.000000Z",
                        "created_at": "2024-01-02T00:00:00.000000Z",
                        "updated_at": "2026-03-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8635,
                    "maxio_customer_id": 310382,
                    "reference_id": "01-S27UDKYRCKS-Y",
                    "pdc_id": null,
                    "gateway_aid": "A775EK75",
                    "uuid": "215f574e-e1ab-4a5c-be13-7334f7ca8db0",
                    "type_id": 7,
                    "status": "approved",
                    "name": "SGS Supervise Gozetme Etud Kontrol Servisleri A.S._MRSL",
                    "legal_name": "SGS Supervise Gozetme Etud Kontrol Servisleri A.S._MRSL",
                    "address_1": "IS IStanbul Plaza Baglar Mah. Osmanpasa Cad. No:95 E Girisi/Gunesli 34209 Istanbul Turkey",
                    "address_2": null,
                    "city": "Gunesli",
                    "state": "Istanbul",
                    "location": "US",
                    "zip": "",
                    "phone": "-",
                    "email": "birol.cakmak@sgs.com",
                    "contact_first_name": "Birol",
                    "contact_last_name": "ÇAKMAK",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-07-13T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:49.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "United States",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8635,
                        "id": 21,
                        "valid_until": "2026-04-15T00:00:00.000000Z",
                        "created_at": "2024-01-11T00:00:00.000000Z",
                        "updated_at": "2026-04-14T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8652,
                    "maxio_customer_id": 310399,
                    "reference_id": "01-MX94FCFSRAG-X",
                    "pdc_id": null,
                    "gateway_aid": "A229LO23",
                    "uuid": "27b2aef8-4608-4f5c-a7df-2d58410b88c5",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland LGA Products GmbH_MRSL",
                    "legal_name": "TUV Rheinland LGA Products GmbH_MRSL",
                    "address_1": "Am Grauen Stein 51105 Koeln",
                    "address_2": null,
                    "city": "Koln",
                    "state": "Nordrhein Westfalen",
                    "location": "DE",
                    "zip": "",
                    "phone": "+49 221 8060",
                    "email": "steffen.tuemptner@de.tuv.com",
                    "contact_first_name": "ATA",
                    "contact_last_name": "bayraktar",
                    "website": "https://www.tuv.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-07T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:52.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Germany",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8652,
                        "id": 22,
                        "valid_until": "2026-03-20T00:00:00.000000Z",
                        "created_at": "2024-01-16T00:00:00.000000Z",
                        "updated_at": "2026-03-19T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8600,
                    "maxio_customer_id": 310347,
                    "reference_id": "01-TMEJGAMVSLT-W",
                    "pdc_id": null,
                    "gateway_aid": "A820MS41",
                    "uuid": "a9df7805-cbaa-4aab-b73e-81a0dccd26ad",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV SUD Vietnam_MRSL",
                    "legal_name": "TUV SUD Vietnam_MRSL",
                    "address_1": "Lot III-26, 19/5A Street, Industry Group III, Tan Binh Industrial Park",
                    "address_2": null,
                    "city": "",
                    "state": "Ho Chi Minh City",
                    "location": "VN",
                    "zip": "",
                    "phone": "+842862678507",
                    "email": "minh-thang.le@tuvsud.com",
                    "contact_first_name": "Nguyen",
                    "contact_last_name": "Truc",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:42.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Vietnam",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8600,
                        "id": 23,
                        "valid_until": "2026-01-29T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-01-26T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8661,
                    "maxio_customer_id": 310408,
                    "reference_id": "01-ZJAX393ZNYS-E",
                    "pdc_id": null,
                    "gateway_aid": "A525LH13",
                    "uuid": "f61ec85b-5397-4e5c-8a12-cade64ec5b82",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV SUD Bangladesh (Pvt.) Ltd_MRSL",
                    "legal_name": "TUV SUD Bangladesh (Pvt.) Ltd_MRSL",
                    "address_1": "Level 7 & 8, Update Tower, 01 Shahajalal Ave, 1230",
                    "address_2": null,
                    "city": "",
                    "state": "Dhaka",
                    "location": "BD",
                    "zip": "",
                    "phone": "+880 2-58954115",
                    "email": "Raffaella.Santoro@tuv.it",
                    "contact_first_name": "Shafikul",
                    "contact_last_name": "ISLAM",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:54.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Bangladesh",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8661,
                        "id": 24,
                        "valid_until": "2025-11-12T00:00:00.000000Z",
                        "created_at": "2024-11-30T00:00:00.000000Z",
                        "updated_at": "2025-09-30T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8653,
                    "maxio_customer_id": 310400,
                    "reference_id": "01-VDTWAZAYP43-U",
                    "pdc_id": null,
                    "gateway_aid": "A956NT67",
                    "uuid": "061c1936-d6e3-4385-bfea-ee2b9670a61c",
                    "type_id": 7,
                    "status": "approved",
                    "name": "ToxServices LLC",
                    "legal_name": "ToxServices LLC",
                    "address_1": "1367 Connecticut Avenue, N.W., Suite 300 20036",
                    "address_2": null,
                    "city": "",
                    "state": "Washington",
                    "location": "US",
                    "zip": "",
                    "phone": "(202) 429-8787",
                    "email": "Mwhittaker@toxservices.com",
                    "contact_first_name": "Margaret",
                    "contact_last_name": "Whittaker",
                    "website": "https://www.toxservices.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-13T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:53.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "United States",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8653,
                        "id": 25,
                        "valid_until": "2026-02-05T00:00:00.000000Z",
                        "created_at": "2024-02-19T00:00:00.000000Z",
                        "updated_at": "2026-01-12T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8631,
                    "maxio_customer_id": 310378,
                    "reference_id": "01-S27UDKYVHZL-P",
                    "pdc_id": null,
                    "gateway_aid": "A444NZ79",
                    "uuid": "6836990a-8642-490f-89f7-cc784df0e8bf",
                    "type_id": 7,
                    "status": "approved",
                    "name": "SGS Taiwan Ltd. (Taipei)",
                    "legal_name": "SGS Taiwan Ltd. (Taipei)",
                    "address_1": "31, Wu Chyuan Road, New Taipei Industrial Park, Wu Ku Dist., 24886, New Taipei City Taiwan, Province of China",
                    "address_2": null,
                    "city": "New Taipei City",
                    "state": "New Taipei",
                    "location": "TW",
                    "zip": "",
                    "phone": "-",
                    "email": "Jerry.tung@sgs.com",
                    "contact_first_name": "jerry",
                    "contact_last_name": "tung",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-05-25T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:48.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Taiwan",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8631,
                        "id": 26,
                        "valid_until": "2026-01-12T00:00:00.000000Z",
                        "created_at": "2024-02-29T00:00:00.000000Z",
                        "updated_at": "2025-12-17T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8697,
                    "maxio_customer_id": 310444,
                    "reference_id": "01-BUKVW698S2E-J",
                    "pdc_id": null,
                    "gateway_aid": "A273NP76",
                    "uuid": "919cbdb3-553e-423b-966d-e3a75cf80d9e",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Eurofins Modern Testing Services (Bangladesh) Limited",
                    "legal_name": "Eurofins Modern Testing Services (Bangladesh) Limited",
                    "address_1": "280 East Narsinghpur, Ashulia 1341 Dhaka Bangladesh",
                    "address_2": null,
                    "city": "Dhaka",
                    "state": "Dhaka",
                    "location": "BD",
                    "zip": "",
                    "phone": "-",
                    "email": "zakir@mtsbd.com",
                    "contact_first_name": "Probir",
                    "contact_last_name": "Chandra Das",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2024-03-26T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:20:01.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Bangladesh",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8697,
                        "id": 27,
                        "valid_until": "2026-04-03T00:00:00.000000Z",
                        "created_at": "2025-01-10T00:00:00.000000Z",
                        "updated_at": "2026-04-02T00:00:00.000000Z"
                    }
                },
                {
                    "id": 9114,
                    "maxio_customer_id": 310860,
                    "reference_id": "01-S27UDAGNJHW-W",
                    "pdc_id": null,
                    "gateway_aid": "A438IE31",
                    "uuid": "f5f853da-aba6-4901-9602-e08111c4993e",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland / CCIC (Qingdao) Co., Ltd.",
                    "legal_name": "TUV Rheinland / CCIC (Qingdao) Co., Ltd.",
                    "address_1": "6F, No. 2 Bldg., No. 175 Zhuzhou Road Qingdao 266000 China",
                    "address_2": null,
                    "city": "Qingdao",
                    "state": "Shandong",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "Echo.Xu@tuv.com",
                    "contact_first_name": "Echo",
                    "contact_last_name": "Xu",
                    "website": "https://www.tuv.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2025-01-03T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:21:23.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 9114,
                        "id": 28,
                        "valid_until": "2026-04-08T00:00:00.000000Z",
                        "created_at": "2025-03-17T00:00:00.000000Z",
                        "updated_at": "2026-04-07T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8993,
                    "maxio_customer_id": 310739,
                    "reference_id": "01-2V6NQCSN8HE-M",
                    "pdc_id": null,
                    "gateway_aid": "A254LK97",
                    "uuid": "2ff1860c-c0c5-4220-b2b7-7f6fbd5e9da5",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV SUD Certification and Testing (China) Co., Ltd. Shanghai Branch_MRSL",
                    "legal_name": "TUV SUD Certification and Testing (China) Co., Ltd. Shanghai Branch_MRSL",
                    "address_1": "No. 1999 Du Hui Road, Minhang District, 201108 Shanghai China",
                    "address_2": null,
                    "city": "Shanghai",
                    "state": "Shanghai",
                    "location": "CN",
                    "zip": "",
                    "phone": "+86 21 6141 0123",
                    "email": "Chenghui.Zhang@tuvsud.com",
                    "contact_first_name": "shen",
                    "contact_last_name": "Hui",
                    "website": "https://www.tuvsud.cn/",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:21:00.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8993,
                        "id": 29,
                        "valid_until": "2026-01-09T00:00:00.000000Z",
                        "created_at": "2024-01-17T00:00:00.000000Z",
                        "updated_at": "2026-01-07T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8997,
                    "maxio_customer_id": 310743,
                    "reference_id": "01-WEJAPLNEV6W-H",
                    "pdc_id": null,
                    "gateway_aid": "A548JP59",
                    "uuid": "512bfff6-4ef0-48d2-9e57-2484513817fa",
                    "type_id": 7,
                    "status": "approved",
                    "name": "United Testing Services (Fujian) Co., Ltd",
                    "legal_name": "United Testing Services (Fujian) Co., Ltd",
                    "address_1": "Address: Room 5205, Building C, South of Clothing City, No. 88 Nanyang Road, Lingxiu Town, Shishi, Quanzhou, Fujian, China.",
                    "address_2": null,
                    "city": "Shishi",
                    "state": "Fujian",
                    "location": "CN",
                    "zip": "",
                    "phone": "+86 595 83667715",
                    "email": "mike.wong@fabricschina.com.cn",
                    "contact_first_name": "Mike",
                    "contact_last_name": "User",
                    "website": "https://www.c-uts.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2021-01-26T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:21:01.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8997,
                        "id": 30,
                        "valid_until": "2026-02-01T00:00:00.000000Z",
                        "created_at": "2023-12-26T00:00:00.000000Z",
                        "updated_at": "2026-01-30T00:00:00.000000Z"
                    }
                },
                {
                    "id": 10787,
                    "maxio_customer_id": 312533,
                    "reference_id": "01-HRBL6KCZEDB-L",
                    "pdc_id": null,
                    "gateway_aid": "A576LQ13",
                    "uuid": "5de3557d-458e-4ccd-a876-9877734d4ab1",
                    "type_id": 7,
                    "status": "approved",
                    "name": "CTC ARS TINCTORIA SRL",
                    "legal_name": "CTC ARS TINCTORIA SRL",
                    "address_1": "VIA DEL BOSCO 125  56029",
                    "address_2": null,
                    "city": "Santa Croce sull Arno",
                    "state": "Pisa",
                    "location": "IT",
                    "zip": "",
                    "phone": "+39 0571 35110",
                    "email": "gdefeo@ctcgroupe.com",
                    "contact_first_name": "GUSTAVO",
                    "contact_last_name": "Defeo",
                    "website": "https://www.ctcgroupe.com/en/",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-07T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:26:46.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 10787,
                        "id": 31,
                        "valid_until": "2026-04-07T00:00:00.000000Z",
                        "created_at": "2024-01-15T00:00:00.000000Z",
                        "updated_at": "2026-03-20T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8594,
                    "maxio_customer_id": 310341,
                    "reference_id": "01-S27UDK9KWZR-O",
                    "pdc_id": null,
                    "gateway_aid": "A302YG32",
                    "uuid": "a21868a0-e599-4172-8158-6a2d4530a922",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Services Taiwan Ltd._MRSL",
                    "legal_name": "Intertek Testing Services Taiwan Ltd._MRSL",
                    "address_1": "Floor 10, No.423, Ruiguang Road  Neihu Dist.",
                    "address_2": null,
                    "city": "Taipei",
                    "state": "Taipei",
                    "location": "TW",
                    "zip": "",
                    "phone": "+886 2 66022888",
                    "email": "limei.chu@intertek.com",
                    "contact_first_name": "Limei",
                    "contact_last_name": "Chu",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:41.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Taiwan",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8594,
                        "id": 32,
                        "valid_until": "2026-04-14T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-14T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8660,
                    "maxio_customer_id": 310407,
                    "reference_id": "01-43HF2Y2HCJN-B",
                    "pdc_id": null,
                    "gateway_aid": "A350AD73",
                    "uuid": "2f1af83b-e1a4-414a-90f9-0693967c282e",
                    "type_id": 7,
                    "status": "approved",
                    "name": "FITI Testing & Research Institute",
                    "legal_name": "FITI Testing & Research Institute",
                    "address_1": "79, Magokjungang 8-ro 3-gil, Gangseo-gu",
                    "address_2": null,
                    "city": "Gangseo",
                    "state": "Seoul",
                    "location": "KR",
                    "zip": "",
                    "phone": "+82232998222",
                    "email": "jun_park@fitiglobal.com",
                    "contact_first_name": "Kelvin JeongYoon",
                    "contact_last_name": "Lee",
                    "website": "https://www.fiti.re.kr/en/?sub_num=284",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:54.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "South Korea",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8660,
                        "id": 33,
                        "valid_until": "2026-03-30T00:00:00.000000Z",
                        "created_at": "2023-12-27T00:00:00.000000Z",
                        "updated_at": "2026-03-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 5883,
                    "maxio_customer_id": 307630,
                    "reference_id": "01-S27UD99XAKV-X",
                    "pdc_id": null,
                    "gateway_aid": "A852OE62",
                    "uuid": "29ebf086-5a21-4246-8672-9d670858901a",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Testtex India Laboratories Private Limited",
                    "legal_name": "Testtex India Laboratories Private Limited",
                    "address_1": "301-304 Premsons Industrial Estate, Caves Rd, Jogeshwari East, 400060",
                    "address_2": null,
                    "city": "Mumbai",
                    "state": "Maharashtra",
                    "location": "IN",
                    "zip": "400060",
                    "phone": "+91 22 2825 9190",
                    "email": "meeta@testtex.com",
                    "contact_first_name": "Meeta",
                    "contact_last_name": "Shingala",
                    "website": "https://www.testtex.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:10:44.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 5883,
                        "id": 34,
                        "valid_until": "2025-12-16T00:00:00.000000Z",
                        "created_at": "2023-12-21T00:00:00.000000Z",
                        "updated_at": "2025-12-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8655,
                    "maxio_customer_id": 310402,
                    "reference_id": "01-E94CYGYYWNV-U",
                    "pdc_id": null,
                    "gateway_aid": "A176RO67",
                    "uuid": "8d09254e-3403-4f40-84a4-f5990f4c5b59",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland Bangladesh Pvt. Ltd._MRSL",
                    "legal_name": "TUV Rheinland Bangladesh Pvt. Ltd._MRSL",
                    "address_1": "Road 113/A, Plot 17, Aladdin Tower, 5th to 8 th floor 1212",
                    "address_2": null,
                    "city": "Dhaka",
                    "state": "Dhaka",
                    "location": "BD",
                    "zip": "",
                    "phone": "+88229894904",
                    "email": "Rakesh.Vazirani@tuv.com",
                    "contact_first_name": "Md Wakil",
                    "contact_last_name": "Hossain",
                    "website": "http://www.tuv.com/detox",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-07T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:53.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Bangladesh",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8655,
                        "id": 35,
                        "valid_until": "2026-04-05T00:00:00.000000Z",
                        "created_at": "2024-01-17T00:00:00.000000Z",
                        "updated_at": "2026-03-11T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8622,
                    "maxio_customer_id": 310369,
                    "reference_id": "01-WEJAPXSNQJ7-A",
                    "pdc_id": null,
                    "gateway_aid": "A778MT32",
                    "uuid": "4fcbc012-eef8-4918-a27d-47d3cc1a405a",
                    "type_id": 7,
                    "status": "approved",
                    "name": "UL Italy - IISG Srl_MRSL",
                    "legal_name": "UL Italy - IISG Srl_MRSL",
                    "address_1": "via Europa 28, 22060 Cabiate, Italy",
                    "address_2": null,
                    "city": "Cabiate",
                    "state": "Como",
                    "location": "IT",
                    "zip": "",
                    "phone": "+39.031.8125.000",
                    "email": "luciano.buraschi@ul.com",
                    "contact_first_name": "Domenico",
                    "contact_last_name": "Pelle",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-03-23T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:46.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8622,
                        "id": 36,
                        "valid_until": "2026-03-12T00:00:00.000000Z",
                        "created_at": "2024-01-22T00:00:00.000000Z",
                        "updated_at": "2026-02-24T00:00:00.000000Z"
                    }
                },
                {
                    "id": 9222,
                    "maxio_customer_id": 310968,
                    "reference_id": "01-NWZQ9YBUJCH-S",
                    "pdc_id": null,
                    "gateway_aid": "A778EY21",
                    "uuid": "927e09ba-73a3-4402-8593-08028399b05d",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bay Area Compliance Labs Corp.",
                    "legal_name": "Bay Area Compliance Labs Corp.",
                    "address_1": "6/F, the 3rd Phase of Wan Li Industrial Bldg., Shihua Rd., FuTian",
                    "address_2": null,
                    "city": "Futian",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "",
                    "phone": "+8675533320018",
                    "email": "laura.cortes@baclcorp.com",
                    "contact_first_name": "laura",
                    "contact_last_name": "Cortes",
                    "website": "https://www.baclcorp.com.cn",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-12-18T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:21:43.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 9222,
                        "id": 37,
                        "valid_until": "2026-04-08T00:00:00.000000Z",
                        "created_at": "2024-03-23T00:00:00.000000Z",
                        "updated_at": "2026-03-23T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8639,
                    "maxio_customer_id": 310386,
                    "reference_id": "01-LKV6ZNBBGX3-G",
                    "pdc_id": null,
                    "gateway_aid": "A800GZ98",
                    "uuid": "8f14c048-8bc1-4257-b64c-a3d66d4bd67e",
                    "type_id": 7,
                    "status": "approved",
                    "name": "BUREAU VERITAS CONSUMER PRODUCTS SERVICES LANKA (PRIVATE) LIMITED_MRSL",
                    "legal_name": "BUREAU VERITAS CONSUMER PRODUCTS SERVICES LANKA (PRIVATE) LIMITED_MRSL",
                    "address_1": "NNo.570,Galle road,Katubedda,Sri Lanka",
                    "address_2": null,
                    "city": "Kaduwela",
                    "state": "Western Province",
                    "location": "LK",
                    "zip": "",
                    "phone": "-",
                    "email": "sonali.nakandala@bureauveritas.com",
                    "contact_first_name": "Sanduni",
                    "contact_last_name": "Nakandala",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-09-29T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:50.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Sri Lanka",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8639,
                        "id": 38,
                        "valid_until": "2026-04-06T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-03T00:00:00.000000Z"
                    }
                },
                {
                    "id": 5893,
                    "maxio_customer_id": 307640,
                    "reference_id": "01-E94CY66BUDP-U",
                    "pdc_id": null,
                    "gateway_aid": "A344OJ22",
                    "uuid": "ac420973-b93a-4a2a-93aa-22a24106a0e1",
                    "type_id": 7,
                    "status": "approved",
                    "name": "BUREAU VERITAS SINGAPORE PTE LTD_MRSL",
                    "legal_name": "BUREAU VERITAS SINGAPORE PTE LTD_MRSL",
                    "address_1": "37A, Tampines Street 92,#06-­‐01 Singapore, 528886",
                    "address_2": null,
                    "city": "Singapore City",
                    "state": "Singapore",
                    "location": "SG",
                    "zip": "528886",
                    "phone": "-",
                    "email": "kenny.mak@bureauveritas.com",
                    "contact_first_name": "Ya Nan",
                    "contact_last_name": "Wang",
                    "website": "https://group.bureauveritas.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2022-05-13T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:10:46.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Singapore",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 5893,
                        "id": 39,
                        "valid_until": "2026-03-05T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-03-02T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8630,
                    "maxio_customer_id": 310377,
                    "reference_id": "01-WEJAPXSWJTS-K",
                    "pdc_id": null,
                    "gateway_aid": "A851GA58",
                    "uuid": "afb9e014-db7b-4592-bbf8-af96548ccfb7",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Eurofins MTS Consumer Product Testing (Shanghai) Co. Ltd",
                    "legal_name": "Eurofins MTS Consumer Product Testing (Shanghai) Co. Ltd",
                    "address_1": "No.105 Guangzhong Rd. Zhuanqiao Town, Shanghai",
                    "address_2": null,
                    "city": "Shanghai",
                    "state": "Shanghai",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "viviangu@mts-global.com",
                    "contact_first_name": "Eddie",
                    "contact_last_name": "Zhang",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-05-22T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:48.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8630,
                        "id": 40,
                        "valid_until": "2026-03-30T00:00:00.000000Z",
                        "created_at": "2023-12-22T00:00:00.000000Z",
                        "updated_at": "2026-03-04T00:00:00.000000Z"
                    }
                },
                {
                    "id": 7750,
                    "maxio_customer_id": 309497,
                    "reference_id": "01-9P3HLLPPYNX-Z",
                    "pdc_id": null,
                    "gateway_aid": "A662FL36",
                    "uuid": "5bb6931d-2655-4a04-9964-d56ccc04f387",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland Thailand Ltd._MRSL",
                    "legal_name": "TUV Rheinland Thailand Ltd._MRSL",
                    "address_1": "123/1, Soi Chalongkung 31 Ladkrabang lndustrial Estate Lamplatew, Ladkrabang Bangkok 10520",
                    "address_2": null,
                    "city": "Lat Krabang",
                    "state": "Bangkok",
                    "location": "TH",
                    "zip": "10520",
                    "phone": "+66 2 326-1333",
                    "email": "Rakesh.Vazirani@tuv.com",
                    "contact_first_name": "Nutkritta",
                    "contact_last_name": "Thongdee",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2021-03-26T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:16:58.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Thailand",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 7750,
                        "id": 41,
                        "valid_until": "2026-02-04T00:00:00.000000Z",
                        "created_at": "2023-12-22T00:00:00.000000Z",
                        "updated_at": "2025-12-18T00:00:00.000000Z"
                    }
                },
                {
                    "id": 2094,
                    "maxio_customer_id": 303756,
                    "reference_id": "01-BUKVWT7CHL4-H",
                    "pdc_id": null,
                    "gateway_aid": "A155YG88",
                    "uuid": "42162b76-c772-4463-9d2f-31603764cb32",
                    "type_id": 7,
                    "status": "approved",
                    "name": "VERIS IMPACT",
                    "legal_name": "VERIS IMPACT",
                    "address_1": "B-88, AEES, Gulistan e jauhar, Block-8, Karachi 75290 Pakistan",
                    "address_2": null,
                    "city": "Karachi",
                    "state": "Sindh",
                    "location": "PK",
                    "zip": "",
                    "phone": "",
                    "email": "jamal.gulzar@verisimpact.com",
                    "contact_first_name": "Jamal",
                    "contact_last_name": "Gulzar",
                    "website": "https://www.verisimpact.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2026-03-13T00:00:00.000000Z",
                    "updated_at": "2026-05-12T14:52:31.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Pakistan",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 2094,
                        "id": 42,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2026-04-07T00:00:00.000000Z",
                        "updated_at": "2026-04-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8626,
                    "maxio_customer_id": 310373,
                    "reference_id": "01-NWZQ9M3DYJV-I",
                    "pdc_id": null,
                    "gateway_aid": "A596TF96",
                    "uuid": "cdb999c3-24f2-422a-ac7d-fb59c73bbce8",
                    "type_id": 7,
                    "status": "approved",
                    "name": "SGS-CSTC Standards Technical Services Co., Ltd. Guangzhou Branch",
                    "legal_name": "SGS-CSTC Standards Technical Services Co., Ltd. Guangzhou Branch",
                    "address_1": "198 Kezhu Road, Scientech Park, Guangzhou Economic & Technology Development District, 510663, Guangzhou, China",
                    "address_2": null,
                    "city": "Guangzhou",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "",
                    "phone": "00862082155632",
                    "email": "Ivan.Xie@sgs.com",
                    "contact_first_name": "Liane",
                    "contact_last_name": "liu",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-04-19T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:47.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8626,
                        "id": 43,
                        "valid_until": "2026-04-17T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-14T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8566,
                    "maxio_customer_id": 310313,
                    "reference_id": "01-FBL2N7GV3XN-F",
                    "pdc_id": null,
                    "gateway_aid": "A184OQ79",
                    "uuid": "591df904-4afd-4694-ad6c-e57443f1f3d9",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Services (Tianjin) Ltd.",
                    "legal_name": "Intertek Testing Services (Tianjin) Ltd.",
                    "address_1": "2-4/F Yishanghutong Building No. 7 Guiyuan Road. Huayuan Hi-Tech Park",
                    "address_2": null,
                    "city": "Tianjin",
                    "state": "Tianjin",
                    "location": "CN",
                    "zip": "",
                    "phone": "+86 22 8371 2202",
                    "email": "patrick.gong@intertek.com",
                    "contact_first_name": "Ben",
                    "contact_last_name": "Cheng ZDHC MRSL",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:36.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8566,
                        "id": 44,
                        "valid_until": "2026-04-10T00:00:00.000000Z",
                        "created_at": "2024-05-11T00:00:00.000000Z",
                        "updated_at": "2027-10-04T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8588,
                    "maxio_customer_id": 310335,
                    "reference_id": "01-S27UDK9JDRR-S",
                    "pdc_id": null,
                    "gateway_aid": "A382HL60",
                    "uuid": "8a53e67d-ba82-4b5c-adde-344dcf5a7067",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek India Private Limited (Banglalore)",
                    "legal_name": "Intertek India Private Limited (Banglalore)",
                    "address_1": "No-17/F, Industrial Subrub, Yeshwanthpur, Yeshwanthpur, 560022",
                    "address_2": null,
                    "city": "Bengalooru",
                    "state": "Karnataka",
                    "location": "IN",
                    "zip": "",
                    "phone": "+9140213700",
                    "email": "Aatheeswaran.s@intertek.com",
                    "contact_first_name": "Aatheeswaran",
                    "contact_last_name": "User",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:40.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8588,
                        "id": 45,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-14T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8605,
                    "maxio_customer_id": 310352,
                    "reference_id": "01-TMEJGAMW99X-Y",
                    "pdc_id": null,
                    "gateway_aid": "A202RF74",
                    "uuid": "6becb420-a5c0-4a35-97d1-46385b2a564c",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland Hong Kong Ltd._MRSL",
                    "legal_name": "TUV Rheinland Hong Kong Ltd._MRSL",
                    "address_1": "3-4, 11/F, Fou Wah Industrial Building, 10-16 Pun Shan St, Tsuen Wan",
                    "address_2": null,
                    "city": "Hong Kong",
                    "state": "Hong Kong",
                    "location": "HK",
                    "zip": "",
                    "phone": "+852 2192 1022",
                    "email": "jet.lee@tuv.com",
                    "contact_first_name": "Anthony",
                    "contact_last_name": "TU",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-07T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:43.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Hong Kong SAR China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8605,
                        "id": 46,
                        "valid_until": "2026-04-17T00:00:00.000000Z",
                        "created_at": "2024-01-02T00:00:00.000000Z",
                        "updated_at": "2026-04-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8562,
                    "maxio_customer_id": 310309,
                    "reference_id": "01-E94CYGWMHFQ-T",
                    "pdc_id": null,
                    "gateway_aid": "A885GA11",
                    "uuid": "31f791c4-306c-46d4-b2e1-c75ea3681cdc",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Services Ltd., Shanghai",
                    "legal_name": "Intertek Testing Services Ltd., Shanghai",
                    "address_1": "2/F, Building No. 4 Shanghai Comalong Technology Service Park 889 Yi Shan Road",
                    "address_2": null,
                    "city": "Shanghai",
                    "state": "Shanghai",
                    "location": "CN",
                    "zip": "",
                    "phone": "+86 (21) 6120 6060",
                    "email": "jane.wu@intertek.com",
                    "contact_first_name": "Jane",
                    "contact_last_name": "Wu",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:35.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8562,
                        "id": 47,
                        "valid_until": "2026-04-02T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-02T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8623,
                    "maxio_customer_id": 310370,
                    "reference_id": "01-2V6NQ8XPXTU-N",
                    "pdc_id": null,
                    "gateway_aid": "A113LK71",
                    "uuid": "94a4ec0d-deca-4397-abbe-2d5c6f09bf28",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Services Korea Ltd._MRSL",
                    "legal_name": "Intertek Testing Services Korea Ltd._MRSL",
                    "address_1": "1F, A-Ju digital tower, 7, Achasan-ro 5-gil, Seongdong-gu 04793 Seoul Korea Republic of",
                    "address_2": null,
                    "city": "Seongdong",
                    "state": "Seoul",
                    "location": "KR",
                    "zip": "",
                    "phone": "-",
                    "email": "ryan.kwak@intertek.com",
                    "contact_first_name": "Heloise",
                    "contact_last_name": "Jeong",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-03-24T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:47.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "South Korea",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8623,
                        "id": 48,
                        "valid_until": "2026-04-03T00:00:00.000000Z",
                        "created_at": "2024-02-16T00:00:00.000000Z",
                        "updated_at": "2026-02-19T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8567,
                    "maxio_customer_id": 310314,
                    "reference_id": "01-8ZQM4EKQRV3-B",
                    "pdc_id": null,
                    "gateway_aid": "A904AT31",
                    "uuid": "042f9b98-c0c0-4c76-a85f-75d059a4c9b6",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Brachi Testing Services S.r.l. Unipersonale_MRSL",
                    "legal_name": "Brachi Testing Services S.r.l. Unipersonale_MRSL",
                    "address_1": "Via Fona di Mezzana, 59100",
                    "address_2": null,
                    "city": "Mezzana",
                    "state": "Prato",
                    "location": "IT",
                    "zip": "",
                    "phone": "+390574591343",
                    "email": "giancarlo.diblasi@brachi.it",
                    "contact_first_name": "Giancarlo",
                    "contact_last_name": "Di Blasi",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:36.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8567,
                        "id": 49,
                        "valid_until": "2026-04-13T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-10T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8633,
                    "maxio_customer_id": 310380,
                    "reference_id": "01-ZJAX39WTFF9-R",
                    "pdc_id": null,
                    "gateway_aid": "A840WS25",
                    "uuid": "f31fac18-eefb-49c7-aae5-6b9b6d2f83c9",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer Products Services (Guangzhou) Co.,Ltd_MRSL",
                    "legal_name": "Bureau Veritas Consumer Products Services (Guangzhou) Co.,Ltd_MRSL",
                    "address_1": "No.183, Shi Nan Road, Mei Lin Plaza Block B, Dong",
                    "address_2": null,
                    "city": "Guangzhou",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "nina.ren@bureauveritas.com",
                    "contact_first_name": "Nina",
                    "contact_last_name": "REN",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-06-14T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:49.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8633,
                        "id": 50,
                        "valid_until": "2026-04-01T00:00:00.000000Z",
                        "created_at": "2024-01-30T00:00:00.000000Z",
                        "updated_at": "2026-03-23T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8624,
                    "maxio_customer_id": 310371,
                    "reference_id": "01-TMEJGAYYMHY-G",
                    "pdc_id": null,
                    "gateway_aid": "A532HF62",
                    "uuid": "124965cc-6ec7-421e-ac31-5da3569ebe85",
                    "type_id": 7,
                    "status": "approved",
                    "name": "SGS Vietnam Ltd (Ho Chi Minh)_MRSL",
                    "legal_name": "SGS Vietnam Ltd (Ho Chi Minh)_MRSL",
                    "address_1": "Lot III/21, 19/5A St. Tan Binh Industrial Zone, Tay Thanh 700000",
                    "address_2": null,
                    "city": "Tan Phu",
                    "state": "Ho Chi Minh City",
                    "location": "VN",
                    "zip": "",
                    "phone": "-",
                    "email": "rhodora.quinto@sgs.com",
                    "contact_first_name": "Pham",
                    "contact_last_name": "DUNG",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-04-05T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:47.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Vietnam",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8624,
                        "id": 51,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-26T00:00:00.000000Z",
                        "updated_at": "2026-03-31T00:00:00.000000Z"
                    }
                },
                {
                    "id": 7752,
                    "maxio_customer_id": 309499,
                    "reference_id": "01-TMEJGGMKYL4-U",
                    "pdc_id": null,
                    "gateway_aid": "A380PK51",
                    "uuid": "c03141ee-796e-45c3-a5e1-5a43cee07a2f",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland India (Gurugram) Pvt. Ltd_MRSL",
                    "legal_name": "TUV Rheinland India (Gurugram) Pvt. Ltd_MRSL",
                    "address_1": "Plot no. 330-331, Udyog Vihar – Phase IV, Gurugram – 122015, Haryana, India",
                    "address_2": null,
                    "city": "Gurgaon",
                    "state": "Haryana",
                    "location": "IN",
                    "zip": "122015",
                    "phone": "+91 80 3923 4301",
                    "email": "Shivendra.Parmar@ind.tuv.com",
                    "contact_first_name": "Shivendra",
                    "contact_last_name": "Parmar",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2022-01-05T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:16:59.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 7752,
                        "id": 52,
                        "valid_until": "2026-03-16T00:00:00.000000Z",
                        "created_at": "2024-01-03T00:00:00.000000Z",
                        "updated_at": "2026-03-05T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8561,
                    "maxio_customer_id": 310308,
                    "reference_id": "01-8ZQM4EKZQGH-S",
                    "pdc_id": null,
                    "gateway_aid": "A210ZF97",
                    "uuid": "b922aa67-6b83-458d-be23-ee970e93b795",
                    "type_id": 7,
                    "status": "approved",
                    "name": "ZHEJIANG FANGYUAN TEST GROUP CO., LTD.",
                    "legal_name": "ZHEJIANG FANGYUAN TEST GROUP CO., LTD.",
                    "address_1": "No.300 Xiasha Road, Hangzhou Economic & Technological Development Area. 310018 Hangzhou, Zhejiang",
                    "address_2": null,
                    "city": "Hangzhou",
                    "state": "Zhejiang",
                    "location": "CN",
                    "zip": "",
                    "phone": "+",
                    "email": "slc_tc@163.com",
                    "contact_first_name": "Yahong",
                    "contact_last_name": "Zhang",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2021-03-26T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:35.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8561,
                        "id": 53,
                        "valid_until": "2026-04-17T00:00:00.000000Z",
                        "created_at": "2023-12-28T00:00:00.000000Z",
                        "updated_at": "2026-04-16T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8610,
                    "maxio_customer_id": 310357,
                    "reference_id": "01-3SRBVLSXB8Z-D",
                    "pdc_id": null,
                    "gateway_aid": "A395JH61",
                    "uuid": "bcdfe895-57a8-4f98-bdc4-90a900de5070",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Intertek Testing Services Shenzhen Ltd. Guangzhou Branch",
                    "legal_name": "Intertek Testing Services Shenzhen Ltd. Guangzhou Branch",
                    "address_1": "Room 601, No. 8, East BaoYing Road, Huangpu District, Guangzhou 510730,",
                    "address_2": null,
                    "city": "Guangzhou",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "",
                    "phone": "+86 20 28209501",
                    "email": "vivian.px.li@intertek.com",
                    "contact_first_name": "Vivian",
                    "contact_last_name": "Li",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:44.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8610,
                        "id": 54,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-21T00:00:00.000000Z",
                        "updated_at": "2026-04-20T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8636,
                    "maxio_customer_id": 310383,
                    "reference_id": "01-HRBL623CSUQ-H",
                    "pdc_id": null,
                    "gateway_aid": "A342QT20",
                    "uuid": "0fc2a375-0490-4e48-937b-dce8dbed0b81",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer Products Services Vietnam_MRSL",
                    "legal_name": "Bureau Veritas Consumer Products Services Vietnam_MRSL",
                    "address_1": "Lot C7-C9, Conurbation 2, Cat Lai Industrial Zone, Thanh My Loi Ward, District 2, 700000,Ho Chi Minh City, Vietnam",
                    "address_2": null,
                    "city": "Ho Chi Minh City",
                    "state": "Ho Chi Minh City",
                    "location": "VN",
                    "zip": "",
                    "phone": "-",
                    "email": "lina.vo@bureauveritas.com",
                    "contact_first_name": "Suri",
                    "contact_last_name": "Tran",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-07-25T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:49.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Vietnam",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8636,
                        "id": 55,
                        "valid_until": "2026-04-17T00:00:00.000000Z",
                        "created_at": "2023-12-22T00:00:00.000000Z",
                        "updated_at": "2026-02-09T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8625,
                    "maxio_customer_id": 310372,
                    "reference_id": "01-43HF2Y6YTEA-E",
                    "pdc_id": null,
                    "gateway_aid": "A574ZY10",
                    "uuid": "372d85ea-42bc-4aae-a279-db159aa078ee",
                    "type_id": 7,
                    "status": "approved",
                    "name": "SGS-CSTC Standards Technical Services (Shanghai) Co., Ltd._MRSL",
                    "legal_name": "SGS-CSTC Standards Technical Services (Shanghai) Co., Ltd._MRSL",
                    "address_1": "4/F, 4thBuilding No. 889, Yishan Rd, Xuhui District, 200030 Shanghai, China",
                    "address_2": null,
                    "city": "Xuhui",
                    "state": "Shanghai",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "barry.lou@sgs.com",
                    "contact_first_name": "IVEN",
                    "contact_last_name": "DI",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-04-05T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:47.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8625,
                        "id": 56,
                        "valid_until": "2026-04-13T00:00:00.000000Z",
                        "created_at": "2024-01-05T00:00:00.000000Z",
                        "updated_at": "2026-04-08T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8683,
                    "maxio_customer_id": 310430,
                    "reference_id": "01-HRBL6228FJ8-G",
                    "pdc_id": null,
                    "gateway_aid": "A891GF64",
                    "uuid": "e879f052-6547-4474-ab20-0105064ca411",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Bureau Veritas Consumer Products Services (I) Pvt. Ltd. (Bangalore)_MRSL",
                    "legal_name": "Bureau Veritas Consumer Products Services (I) Pvt. Ltd. (Bangalore)_MRSL",
                    "address_1": "AKR Tech Park, Ground floor, C Block, Survey no 112, Bangalore, 560068,",
                    "address_2": null,
                    "city": "Bangalore",
                    "state": "Karnataka",
                    "location": "IN",
                    "zip": "",
                    "phone": "-",
                    "email": "sudalaimuthu.vs@bureauveritas.com",
                    "contact_first_name": "Sudalaimuthu",
                    "contact_last_name": "VS",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-09-01T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:58.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8683,
                        "id": 57,
                        "valid_until": "2026-04-10T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-03-30T00:00:00.000000Z"
                    }
                },
                {
                    "id": 7742,
                    "maxio_customer_id": 309489,
                    "reference_id": "01-FBL2NNAL9BR-F",
                    "pdc_id": null,
                    "gateway_aid": "A467YQ44",
                    "uuid": "d5ef0f03-b637-4867-8a6c-0c90d9321202",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Eurofins MTS Consumer Product Testing (Dongguan) Co. Ltd",
                    "legal_name": "Eurofins MTS Consumer Product Testing (Dongguan) Co. Ltd",
                    "address_1": "No, 76 Liangping road, Xin jiu wei village, liaobo town, 523400 Dongguan China",
                    "address_2": null,
                    "city": "Dongguan City",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "523400",
                    "phone": "-",
                    "email": "Carol.ke@cpt.eurofinscn.com",
                    "contact_first_name": "CAROL",
                    "contact_last_name": "Ke",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-05-23T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:16:57.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 7742,
                        "id": 58,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-17T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8559,
                    "maxio_customer_id": 310306,
                    "reference_id": "01-CHFY7SAA6R2-Y",
                    "pdc_id": null,
                    "gateway_aid": "A679WF94",
                    "uuid": "151e16f6-d103-4c78-b303-8c7e8336b661",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Centre Testing International Group Co., Ltd. (CTI)",
                    "legal_name": "Centre Testing International Group Co., Ltd. (CTI)",
                    "address_1": "CTI Building, No.4, Liuxian 3rd Road, Xin’an Street, Bao’an District",
                    "address_2": null,
                    "city": "Shenzhen",
                    "state": "Guangdong",
                    "location": "CN",
                    "zip": "",
                    "phone": "+",
                    "email": "kevin.lu@cti-cert.com",
                    "contact_first_name": "Kevin",
                    "contact_last_name": "Lu",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2021-01-29T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:35.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8559,
                        "id": 59,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-15T00:00:00.000000Z"
                    }
                },
                {
                    "id": 5835,
                    "maxio_customer_id": 307582,
                    "reference_id": "01-8ZQM4BGUY6M-T",
                    "pdc_id": null,
                    "gateway_aid": "A826RC45",
                    "uuid": "f13d4431-8b6d-422e-a91c-4cbbc52987fa",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Nimkartek Technical Services Pvt Ltd",
                    "legal_name": "Nimkartek Technical Services Pvt Ltd",
                    "address_1": "3rd Floor, Narmada, Laxmi Industrial Complex, Vartak Nagar, Pokhran Road 1",
                    "address_2": null,
                    "city": "",
                    "state": "Maharashtra",
                    "location": "IN",
                    "zip": "400606",
                    "phone": "+91 9819641527",
                    "email": "anagha.nimkar@nimkartek.com",
                    "contact_first_name": "Anagha",
                    "contact_last_name": "Nimkar",
                    "website": "https://www.nimkartek.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-06T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:10:35.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 5835,
                        "id": 60,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8662,
                    "maxio_customer_id": 310409,
                    "reference_id": "01-S27UDKGPZMN-X",
                    "pdc_id": null,
                    "gateway_aid": "A743LA72",
                    "uuid": "99e5814e-7e90-4d02-b298-63dc490bd043",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Elle.A.Ci.Ti. srl",
                    "legal_name": "Elle.A.Ci.Ti. srl",
                    "address_1": "Via Leopardi 11a 22075",
                    "address_2": null,
                    "city": "Lurate Caccivio",
                    "state": "Como",
                    "location": "IT",
                    "zip": "",
                    "phone": "+39031492543",
                    "email": "e.scudella@elleaciti.com",
                    "contact_first_name": "Elisa Silvia",
                    "contact_last_name": "Botto",
                    "website": "https://www.elleaciti.com",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:54.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8662,
                        "id": 61,
                        "valid_until": "2026-04-15T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2027-12-13T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8569,
                    "maxio_customer_id": 310316,
                    "reference_id": "01-S27UDK6VX3D-J",
                    "pdc_id": null,
                    "gateway_aid": "A460HH65",
                    "uuid": "f2d95b47-df0f-4b1f-99ec-47970a5565f8",
                    "type_id": 7,
                    "status": "approved",
                    "name": "TUV Rheinland Vietnam Co., Ltd_MRSL",
                    "legal_name": "TUV Rheinland Vietnam Co., Ltd_MRSL",
                    "address_1": "Centre Point, 106 Nguyễn Văn Trỗi, Phường 8, Phú Nhuận Softlines & Hardlines Laboratory  Hall 10, Road No.1, Quang Trung Software City, Tan Chanh Hiep Ward",
                    "address_2": null,
                    "city": "Phu Nhuan",
                    "state": "Ho Chi Minh City",
                    "location": "VN",
                    "zip": "",
                    "phone": "+84 28 3842 0600",
                    "email": "Linh.dao@tuv.com",
                    "contact_first_name": "Tan Anh",
                    "contact_last_name": "Nguyen Ngo",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-06T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:37.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Vietnam",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8569,
                        "id": 62,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-15T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8628,
                    "maxio_customer_id": 310375,
                    "reference_id": "01-R7UKTVECN3U-G",
                    "pdc_id": null,
                    "gateway_aid": "A459HZ44",
                    "uuid": "e9645cca-9f71-4508-a739-15f3164ff0c8",
                    "type_id": 7,
                    "status": "approved",
                    "name": "CU Inspections & Certifications India Pvt. Ltd",
                    "legal_name": "CU Inspections & Certifications India Pvt. Ltd",
                    "address_1": "23rd Floor, B wing • Arihant Aura • Plot no. 13/1, TTC • Opp. Turbhe Railway Station Thane Belapur Road, MIDC side",
                    "address_2": null,
                    "city": "Navi Mumbai",
                    "state": "Maharashtra",
                    "location": "IN",
                    "zip": "",
                    "phone": "-",
                    "email": "amolp@controlunion.com",
                    "contact_first_name": "Amol",
                    "contact_last_name": "Patil",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-05-12T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:48.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8628,
                        "id": 63,
                        "valid_until": "2026-04-20T00:00:00.000000Z",
                        "created_at": "2023-12-20T00:00:00.000000Z",
                        "updated_at": "2026-04-14T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8719,
                    "maxio_customer_id": 310465,
                    "reference_id": "01-MX94FCJMAUJ-M",
                    "pdc_id": null,
                    "gateway_aid": "A897PW37",
                    "uuid": "8692ffd3-513f-4f34-9b8a-1b62490a72e8",
                    "type_id": 7,
                    "status": "approved",
                    "name": "ICEA",
                    "legal_name": "ICEA",
                    "address_1": "Via Brugnoli 15",
                    "address_2": null,
                    "city": "Bologna",
                    "state": "Bologna",
                    "location": "IT",
                    "zip": "",
                    "phone": "+39051272986",
                    "email": "paolo.foglia@icea.bio",
                    "contact_first_name": "Francesco",
                    "contact_last_name": "Pazzi",
                    "website": "https://www.icea.bio",
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-04-06T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:20:05.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8719,
                        "id": 64,
                        "valid_until": "2025-04-28T00:00:00.000000Z",
                        "created_at": "2025-04-24T00:00:00.000000Z",
                        "updated_at": "2023-07-14T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8629,
                    "maxio_customer_id": 310376,
                    "reference_id": "01-R7UKTVEJY9K-J",
                    "pdc_id": null,
                    "gateway_aid": "A382AD87",
                    "uuid": "1e4f95d8-b4fc-4434-9372-024f8ece9c0e",
                    "type_id": 7,
                    "status": "approved",
                    "name": "UL VS Bangladesh Ltd._MRSL",
                    "legal_name": "UL VS Bangladesh Ltd._MRSL",
                    "address_1": "The Pearl Trade Center (5th, 14th & 15th Floor), Cha-90/3, Progoti Sharani, North Badda. 1212 Dhaka Bangladesh",
                    "address_2": null,
                    "city": "Badda",
                    "state": "Dhaka",
                    "location": "BD",
                    "zip": "",
                    "phone": "-",
                    "email": "Ahammad.Hossen@ul.com",
                    "contact_first_name": "Ahammad",
                    "contact_last_name": "Hossen",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-05-15T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:48.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Bangladesh",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8629,
                        "id": 65,
                        "valid_until": "2024-12-09T00:00:00.000000Z",
                        "created_at": "2023-12-24T00:00:00.000000Z",
                        "updated_at": "2024-12-03T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8632,
                    "maxio_customer_id": 310379,
                    "reference_id": "01-6TWZXQVDXKG-F",
                    "pdc_id": null,
                    "gateway_aid": "A634ZE37",
                    "uuid": "5e43fd51-7ea0-4d61-bfd4-4da9a4a40366",
                    "type_id": 7,
                    "status": "approved",
                    "name": "UL India Private Limited, Gurugram, India_MRSL",
                    "legal_name": "UL India Private Limited, Gurugram, India_MRSL",
                    "address_1": "A12,Infociry,Sector 34, 122001, Gurgaon,Haryana, India",
                    "address_2": null,
                    "city": "Gurgaon",
                    "state": "Haryana",
                    "location": "IN",
                    "zip": "",
                    "phone": "-",
                    "email": "shashi.b.rout@ul.com",
                    "contact_first_name": "Shashi",
                    "contact_last_name": "Rout",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-06-14T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:49.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "India",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8632,
                        "id": 66,
                        "valid_until": "2025-01-02T00:00:00.000000Z",
                        "created_at": "2024-12-24T00:00:00.000000Z",
                        "updated_at": "2024-12-23T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8591,
                    "maxio_customer_id": 310338,
                    "reference_id": "01-BUKVW6CCGJJ-A",
                    "pdc_id": null,
                    "gateway_aid": "A981IZ54",
                    "uuid": "35bbdda4-f0d1-46cc-8e06-d0a42bcb2d10",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Eurofins - BLC Leather Technology Centre Ltd",
                    "legal_name": "Eurofins - BLC Leather Technology Centre Ltd",
                    "address_1": "Kings Park Road, Moulton Park NN 3 6JD",
                    "address_2": null,
                    "city": "Northampton",
                    "state": "Northamptonshire",
                    "location": "GB",
                    "zip": "",
                    "phone": "+44 1604 679999",
                    "email": "Georgina.Mawer@cpt.eurofinseu.com",
                    "contact_first_name": "Georgina",
                    "contact_last_name": "Mawer",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-06T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:41.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "United Kingdom",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8591,
                        "id": 67,
                        "valid_until": "2026-04-17T00:00:00.000000Z",
                        "created_at": "2023-12-19T00:00:00.000000Z",
                        "updated_at": "2026-04-16T00:00:00.000000Z"
                    }
                },
                {
                    "id": 8627,
                    "maxio_customer_id": 310374,
                    "reference_id": "01-PYSRKBD4KL7-E",
                    "pdc_id": null,
                    "gateway_aid": "A535AF86",
                    "uuid": "5ed3e4e2-c076-424a-a34a-7e5a0544d49f",
                    "type_id": 7,
                    "status": "approved",
                    "name": "UL VS Shanghai Limited_MRSL",
                    "legal_name": "UL VS Shanghai Limited_MRSL",
                    "address_1": "2F, Building 1, Caohejing Hi Tech Park. No.188, PingFu Road, Xu Hui District, 200231 Shanghai China",
                    "address_2": null,
                    "city": "Shanghai",
                    "state": "Shanghai",
                    "location": "CN",
                    "zip": "",
                    "phone": "-",
                    "email": "Sherry.Xue@ul.com",
                    "contact_first_name": "sherry",
                    "contact_last_name": "xue",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2023-05-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:48.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "China",
                    "pivot": {
                        "ctz_standard_id": 3,
                        "organisation_id": 8627,
                        "id": 69,
                        "valid_until": "2024-04-24T00:00:00.000000Z",
                        "created_at": "2024-01-19T00:00:00.000000Z",
                        "updated_at": "2024-01-18T00:00:00.000000Z"
                    }
                }
            ]
        }
    ]
}
 

Request      

GET api/organisation/{organisation_id}/chemical/certification/ctz-standard

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 6

page   integer  optional    

the page number to show. Example: 1

filter[ctz_level_id]   integer  optional    

Filter column ctz_level_id by any accepted value. Filter by CTZ level ID Example: 3

filter[organisations.id]   integer  optional    

Filter column organisations.id by any accepted value. Filter by assigned organisation ID Example: 16

filter[status]   string  optional    

Filter column status by any accepted value. Filter by status Example: alias

filter[start_date]   date  optional    

Filter column start_date by any accepted value. Filter by start date Example: labore

filter[end_date]   date  optional    

Filter column end_date by any accepted value. Filter by end date Example: voluptatibus

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. Filter by created at Example: omnis

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. Filter by updated at Example: repellat

search   string  optional    

Search in all of these columns: name, version Example: facilis

sort   string  optional    

sort by any accepted column: name, version, status, start_date, end_date, created_at, updated_at. prefix a "-" before the column name to sort in descending order Example: name

column   string  optional    

get a distinct list of filterable values for any of the columns: name, version, status, ctz_level_id. Example: name

Show

requires authentication

Show a CTZ Standard

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/ctz-standard/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/organisation/1/chemical/certification/ctz-standard/3"
);

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": 3,
        "name": "CTZ Foundational — 1.0.0",
        "version": "1.0.0",
        "ctz_level_id": 1,
        "start_date": "2023-12-19T00:00:00.000000Z",
        "end_date": null,
        "status": "PASSED",
        "expired_at": null,
        "created_at": "2026-05-08T21:42:18.000000Z",
        "updated_at": "2026-05-13T11:27:29.000000Z",
        "ctz_level": {
            "id": 1,
            "name": "Foundational",
            "created_at": "2026-05-08T21:42:17.000000Z",
            "updated_at": "2026-05-08T21:42:17.000000Z"
        },
        "organisations": [
            {
                "id": 8613,
                "maxio_customer_id": 310360,
                "reference_id": "01-TMEJGAMNT76-Z",
                "pdc_id": null,
                "gateway_aid": "A718TE34",
                "uuid": "a137f0fd-60df-47cc-99b6-6db56701d205",
                "type_id": 7,
                "status": "approved",
                "name": "Inditex_MRSL",
                "legal_name": "Inditex_MRSL",
                "address_1": "Avda. de la Dioputacion s/n, 15142 Arteixo, A Coruna.",
                "address_2": null,
                "city": "Arteijo",
                "state": "Galicia",
                "location": "ES",
                "zip": "",
                "phone": "0034 981185400",
                "email": "germangi@inditex.com",
                "contact_first_name": "Beatriz",
                "contact_last_name": "Baeza",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-02-21T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:45.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Spain",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8613,
                    "id": 1,
                    "valid_until": "2026-03-16T00:00:00.000000Z",
                    "created_at": "2023-12-20T00:00:00.000000Z",
                    "updated_at": "2033-10-25T00:00:00.000000Z"
                }
            },
            {
                "id": 7753,
                "maxio_customer_id": 309500,
                "reference_id": "01-TMEJGGMBW39-E",
                "pdc_id": null,
                "gateway_aid": "A339JQ58",
                "uuid": "8afdf188-2575-4347-aad8-c9f521e188c4",
                "type_id": 7,
                "status": "approved",
                "name": "Test & Innovation Lab",
                "legal_name": "Test & Innovation Lab",
                "address_1": "Viale Montegrappa, 320 - PRATO - 59100 - ITALY",
                "address_2": null,
                "city": "Prato",
                "state": "Prato",
                "location": "IT",
                "zip": "59100",
                "phone": "+39 0574 1770001",
                "email": "giuseppe.bartolini@labtil.com",
                "contact_first_name": "Andrea",
                "contact_last_name": "Franchi",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-06-09T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:16:59.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Italy",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 7753,
                    "id": 2,
                    "valid_until": "2026-03-27T00:00:00.000000Z",
                    "created_at": "2024-01-25T00:00:00.000000Z",
                    "updated_at": "2026-03-25T00:00:00.000000Z"
                }
            },
            {
                "id": 7738,
                "maxio_customer_id": 309485,
                "reference_id": "01-NWZQ99R2VV8-H",
                "pdc_id": null,
                "gateway_aid": "A932KJ49",
                "uuid": "f538e6ef-c0ae-4f7d-8064-71c784e1cb45",
                "type_id": 7,
                "status": "approved",
                "name": "TUV Rheinland Shenzhen Co., Ltd._MRSL",
                "legal_name": "TUV Rheinland Shenzhen Co., Ltd._MRSL",
                "address_1": "1F East &2-4F, Cybio Technology Building No. 1, No. 16 Kejibei 2nd Road, High-Tech Industrial Park North, Nanshan District, 518057 Shenzhen, China",
                "address_2": null,
                "city": "Shenzhen",
                "state": "Guangdong",
                "location": "CN",
                "zip": "518057",
                "phone": "+852 2192 1022",
                "email": "jet.lee@tuv.com",
                "contact_first_name": "Nick",
                "contact_last_name": "Yang",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2022-01-05T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:16:55.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 7738,
                    "id": 3,
                    "valid_until": "2026-04-17T00:00:00.000000Z",
                    "created_at": "2023-12-19T00:00:00.000000Z",
                    "updated_at": "2026-04-16T00:00:00.000000Z"
                }
            },
            {
                "id": 8608,
                "maxio_customer_id": 310355,
                "reference_id": "01-TMEJGAMMZYV-F",
                "pdc_id": null,
                "gateway_aid": "A353QZ62",
                "uuid": "ff550de3-8165-4abc-86cc-69b706f69f90",
                "type_id": 7,
                "status": "approved",
                "name": "bluesign® Technologies AG",
                "legal_name": "bluesign® Technologies AG",
                "address_1": "Moevenstrasse 18, 9015 St. Gallen, Switzerland",
                "address_2": null,
                "city": "Saint Gallen",
                "state": "Sankt Gallen",
                "location": "CH",
                "zip": "",
                "phone": "+41 71 272 29 90",
                "email": "kurt_schlaepfer@bluesign.com",
                "contact_first_name": "Kurt",
                "contact_last_name": "Schäpfer",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-06T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:44.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Switzerland",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8608,
                    "id": 8,
                    "valid_until": "2026-04-20T00:00:00.000000Z",
                    "created_at": "2023-12-19T00:00:00.000000Z",
                    "updated_at": "2026-04-20T00:00:00.000000Z"
                }
            },
            {
                "id": 8673,
                "maxio_customer_id": 310420,
                "reference_id": "01-3SRBVLXQG9V-J",
                "pdc_id": null,
                "gateway_aid": "A754MT47",
                "uuid": "1e28b961-cdbf-492a-8b8c-51519010b861",
                "type_id": 7,
                "status": "approved",
                "name": "GCL International",
                "legal_name": "GCL International",
                "address_1": "1, St Mark Street, London, E1 8DA, United Kingdom",
                "address_2": null,
                "city": "London",
                "state": "London",
                "location": "GB",
                "zip": "",
                "phone": "+91-8754694888",
                "email": "pradip@gcl-intl.com",
                "contact_first_name": "Pradip",
                "contact_last_name": "Patil",
                "website": "https://www.gcl.uk/",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2021-12-20T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:56.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "United Kingdom",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8673,
                    "id": 9,
                    "valid_until": "2026-04-20T00:00:00.000000Z",
                    "created_at": "2024-01-11T00:00:00.000000Z",
                    "updated_at": "2026-04-09T00:00:00.000000Z"
                }
            },
            {
                "id": 8634,
                "maxio_customer_id": 310381,
                "reference_id": "01-S27UDKYCQ3A-W",
                "pdc_id": null,
                "gateway_aid": "A346HD39",
                "uuid": "a6484b22-b794-43d0-9285-3c315b3af1c0",
                "type_id": 7,
                "status": "approved",
                "name": "Bureau Veritas Consumer Products Services (Shanghai) Co., Ltd._MRSL",
                "legal_name": "Bureau Veritas Consumer Products Services (Shanghai) Co., Ltd._MRSL",
                "address_1": "No. 168 GuangHua Road,MinHang District, 201108, Shanghai",
                "address_2": null,
                "city": "Shanghai",
                "state": "Shanghai",
                "location": "CN",
                "zip": "",
                "phone": "-",
                "email": "peter.lu@bureauveritas.com",
                "contact_first_name": "Steven han",
                "contact_last_name": "Steven han",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-06-29T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:49.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8634,
                    "id": 10,
                    "valid_until": "2026-04-20T00:00:00.000000Z",
                    "created_at": "2023-12-19T00:00:00.000000Z",
                    "updated_at": "2026-04-08T00:00:00.000000Z"
                }
            },
            {
                "id": 8687,
                "maxio_customer_id": 310434,
                "reference_id": "01-S27UDKKD2QR-E",
                "pdc_id": null,
                "gateway_aid": "A282WC67",
                "uuid": "040b5047-76a1-4d29-8df1-6cd83c67f9f0",
                "type_id": 7,
                "status": "approved",
                "name": "Bureau Veritas Consumer Products Services (Hong Kong) Limited, Taiwan Branch_MRSL",
                "legal_name": "Bureau Veritas Consumer Products Services (Hong Kong) Limited, Taiwan Branch_MRSL",
                "address_1": "37, Zhongyang S. Rd., Sec. 2, Beitou, Taipei 112, Taiwan",
                "address_2": null,
                "city": "Taipei",
                "state": "Taipei",
                "location": "TW",
                "zip": "",
                "phone": "-",
                "email": "Vico.lin@bureauveritas.com",
                "contact_first_name": "Vico",
                "contact_last_name": "Lin",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-10-11T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:59.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Taiwan",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8687,
                    "id": 11,
                    "valid_until": "2026-03-24T00:00:00.000000Z",
                    "created_at": "2024-01-10T00:00:00.000000Z",
                    "updated_at": "2026-03-12T00:00:00.000000Z"
                }
            },
            {
                "id": 8638,
                "maxio_customer_id": 310385,
                "reference_id": "01-76N8MD26GWS-O",
                "pdc_id": null,
                "gateway_aid": "A715SZ55",
                "uuid": "31c0ce0f-d232-4d24-b2a5-8ec1d213b5a3",
                "type_id": 7,
                "status": "approved",
                "name": "Bureau Veritas Consumer products Services (I) Pvt. Ltd. (Noida)",
                "legal_name": "Bureau Veritas Consumer products Services (I) Pvt. Ltd. (Noida)",
                "address_1": "C-19 , Sector-7 201301 Noida India",
                "address_2": null,
                "city": "Noida",
                "state": "Uttar Pradesh",
                "location": "IN",
                "zip": "",
                "phone": "-",
                "email": "sumanta.swain@bureauveritas.com",
                "contact_first_name": "Sumanta",
                "contact_last_name": "Swain",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-09-19T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:50.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "India",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8638,
                    "id": 12,
                    "valid_until": "2025-09-25T00:00:00.000000Z",
                    "created_at": "2024-05-31T00:00:00.000000Z",
                    "updated_at": "2025-07-26T00:00:00.000000Z"
                }
            },
            {
                "id": 8551,
                "maxio_customer_id": 310298,
                "reference_id": "01-WEJAPXHF6V4-V",
                "pdc_id": null,
                "gateway_aid": "A549OE34",
                "uuid": "5afbe0cf-f430-4bd4-bdc3-17427cddb67c",
                "type_id": 7,
                "status": "approved",
                "name": "Intertek Testing Services A.S.Turkey",
                "legal_name": "Intertek Testing Services A.S.Turkey",
                "address_1": "Merkez Mahallesi, Sanayi Cad. Altındağ Plaza No:23",
                "address_2": null,
                "city": "Sanayi",
                "state": "Istanbul",
                "location": "US",
                "zip": "",
                "phone": "+902124964646",
                "email": "zeynep.akin@intertek.com",
                "contact_first_name": "Ben",
                "contact_last_name": "Cheng ZDHC MRSL",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:33.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "United States",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8551,
                    "id": 13,
                    "valid_until": "2026-03-23T00:00:00.000000Z",
                    "created_at": "2024-01-22T00:00:00.000000Z",
                    "updated_at": "2026-03-17T00:00:00.000000Z"
                }
            },
            {
                "id": 8695,
                "maxio_customer_id": 310442,
                "reference_id": "01-S27UDKAQZ4J-G",
                "pdc_id": null,
                "gateway_aid": "A825AG65",
                "uuid": "bf446a0f-07c4-4776-a3d4-221cf3596478",
                "type_id": 7,
                "status": "approved",
                "name": "Bureau Veritas Consumer Products Services (Bangladesh) Ltd._MRSL",
                "legal_name": "Bureau Veritas Consumer Products Services (Bangladesh) Ltd._MRSL",
                "address_1": "Plot#130, DEPZ Extension Area, Savar, Dhaka 1349 Bangladesh",
                "address_2": null,
                "city": "Savar",
                "state": "Dhaka",
                "location": "BD",
                "zip": "",
                "phone": "-",
                "email": "nur.alam@bureauveritas.com",
                "contact_first_name": "Sharan",
                "contact_last_name": "Roy",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2024-02-19T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:20:01.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Bangladesh",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8695,
                    "id": 14,
                    "valid_until": "2025-02-13T00:00:00.000000Z",
                    "created_at": "2024-06-29T00:00:00.000000Z",
                    "updated_at": "2025-01-21T00:00:00.000000Z"
                }
            },
            {
                "id": 9068,
                "maxio_customer_id": 310814,
                "reference_id": "01-S27UDAYQVRK-R",
                "pdc_id": null,
                "gateway_aid": "A555PX59",
                "uuid": "f171c290-f9d4-4a39-9f26-03093b40a5af",
                "type_id": 7,
                "status": "approved",
                "name": "TUV SUD Certification and Testing (China) Co. Ltd. Xiamen Branch",
                "legal_name": "TUV SUD Certification and Testing (China) Co. Ltd. Xiamen Branch",
                "address_1": "Unit 401, No.93 Huli Industrial Park, Meixi Road, Tong’an District 361100, Xiamen China",
                "address_2": null,
                "city": "Xiamen",
                "state": "Fujian",
                "location": "CN",
                "zip": "",
                "phone": "-",
                "email": "nemo.chen@tuvsud.com",
                "contact_first_name": "chao",
                "contact_last_name": "chen",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-10-24T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:21:14.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 9068,
                    "id": 15,
                    "valid_until": "2026-01-07T00:00:00.000000Z",
                    "created_at": "2023-12-25T00:00:00.000000Z",
                    "updated_at": "2025-09-15T00:00:00.000000Z"
                }
            },
            {
                "id": 8581,
                "maxio_customer_id": 310328,
                "reference_id": "01-2V6NQ8T6AHT-F",
                "pdc_id": null,
                "gateway_aid": "A752DH57",
                "uuid": "763fb7d2-476c-4217-9f79-a683052a9361",
                "type_id": 7,
                "status": "approved",
                "name": "Intertek India Pvt Ltd Gurgaon_MRSL",
                "legal_name": "Intertek India Pvt Ltd Gurgaon_MRSL",
                "address_1": "Udhog Vihar phase 2, Plot no 290 Gurgaon India",
                "address_2": null,
                "city": "Gurgaon",
                "state": "Haryana",
                "location": "IN",
                "zip": "",
                "phone": "+91 0124 450 3400",
                "email": "ravindra.s@intertek.com",
                "contact_first_name": "Ravindra",
                "contact_last_name": "Singh",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:39.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "India",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8581,
                    "id": 16,
                    "valid_until": "2026-02-20T00:00:00.000000Z",
                    "created_at": "2024-05-01T00:00:00.000000Z",
                    "updated_at": "2026-01-31T00:00:00.000000Z"
                }
            },
            {
                "id": 8589,
                "maxio_customer_id": 310336,
                "reference_id": "01-S27UDK9WJ3K-L",
                "pdc_id": null,
                "gateway_aid": "A588PW46",
                "uuid": "79e11446-97a1-41d5-84c6-ce24af34a8c9",
                "type_id": 7,
                "status": "approved",
                "name": "TEXANLAB LABORATORIES PVT. LTD.",
                "legal_name": "TEXANLAB LABORATORIES PVT. LTD.",
                "address_1": "R-855, 1st Floor, T.T.C. Industrial Area, Rabale, 400701",
                "address_2": null,
                "city": "Mumbai",
                "state": "Maharashtra",
                "location": "IN",
                "zip": "",
                "phone": "+91 22 6141 7130",
                "email": "anitha.balkrishna@texanlabglobal.com",
                "contact_first_name": "Milind",
                "contact_last_name": "Marathe",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:40.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "India",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8589,
                    "id": 17,
                    "valid_until": "2026-03-31T00:00:00.000000Z",
                    "created_at": "2023-12-20T00:00:00.000000Z",
                    "updated_at": "2026-03-30T00:00:00.000000Z"
                }
            },
            {
                "id": 8637,
                "maxio_customer_id": 310384,
                "reference_id": "01-6TWZXQVEWQQ-M",
                "pdc_id": null,
                "gateway_aid": "A384ZL32",
                "uuid": "958d920f-eff9-4183-9636-b63dbd9a8bd5",
                "type_id": 7,
                "status": "approved",
                "name": "Analytical srl",
                "legal_name": "Analytical srl",
                "address_1": "Viale Industria 24 Arzignano 36071 Italy",
                "address_2": null,
                "city": "Arzignano",
                "state": "Vicenza",
                "location": "IT",
                "zip": "",
                "phone": "-",
                "email": "f.ferrigato@analytical.it",
                "contact_first_name": "Francesca",
                "contact_last_name": "Ferrigato",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-07-25T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:49.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Italy",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8637,
                    "id": 18,
                    "valid_until": "2026-03-11T00:00:00.000000Z",
                    "created_at": "2024-02-20T00:00:00.000000Z",
                    "updated_at": "2026-03-10T00:00:00.000000Z"
                }
            },
            {
                "id": 8604,
                "maxio_customer_id": 310351,
                "reference_id": "01-CHFY7SHYMZD-P",
                "pdc_id": null,
                "gateway_aid": "A888YX20",
                "uuid": "7641e55d-fd93-4bf8-b511-2944ae04c960",
                "type_id": 7,
                "status": "approved",
                "name": "SGS Global",
                "legal_name": "SGS Global",
                "address_1": "4/F On Wui Centre, 25 Lok Yip Road Fanling, N.T., Hong Kong.",
                "address_2": null,
                "city": "Hong Kong",
                "state": "Hong Kong",
                "location": "HK",
                "zip": "",
                "phone": "+852 22048354",
                "email": "Keith.Tsang@sgs.com",
                "contact_first_name": "Padmanaban",
                "contact_last_name": "K S",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:43.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Hong Kong SAR China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8604,
                    "id": 19,
                    "valid_until": "2026-02-26T00:00:00.000000Z",
                    "created_at": "2024-01-04T00:00:00.000000Z",
                    "updated_at": "2026-01-15T00:00:00.000000Z"
                }
            },
            {
                "id": 8603,
                "maxio_customer_id": 310350,
                "reference_id": "01-76N8MD6QT3C-E",
                "pdc_id": null,
                "gateway_aid": "A557RN68",
                "uuid": "5526c7e5-cef0-4256-9397-5ff00a409ee5",
                "type_id": 7,
                "status": "approved",
                "name": "Intertek Testing Service Labtest Bangladesh Ltd._MRSL",
                "legal_name": "Intertek Testing Service Labtest Bangladesh Ltd._MRSL",
                "address_1": "Intertek House, Phonix Tower, 407, Tejgoan Industrial Area, 1208",
                "address_2": null,
                "city": "Tejgaon",
                "state": "Dhaka",
                "location": "BD",
                "zip": "",
                "phone": "+8809666776669",
                "email": "neyamul.hasan@intertek.com",
                "contact_first_name": "Neyamul",
                "contact_last_name": "Hasan",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:43.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Bangladesh",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8603,
                    "id": 20,
                    "valid_until": "2026-03-16T00:00:00.000000Z",
                    "created_at": "2024-01-02T00:00:00.000000Z",
                    "updated_at": "2026-03-13T00:00:00.000000Z"
                }
            },
            {
                "id": 8635,
                "maxio_customer_id": 310382,
                "reference_id": "01-S27UDKYRCKS-Y",
                "pdc_id": null,
                "gateway_aid": "A775EK75",
                "uuid": "215f574e-e1ab-4a5c-be13-7334f7ca8db0",
                "type_id": 7,
                "status": "approved",
                "name": "SGS Supervise Gozetme Etud Kontrol Servisleri A.S._MRSL",
                "legal_name": "SGS Supervise Gozetme Etud Kontrol Servisleri A.S._MRSL",
                "address_1": "IS IStanbul Plaza Baglar Mah. Osmanpasa Cad. No:95 E Girisi/Gunesli 34209 Istanbul Turkey",
                "address_2": null,
                "city": "Gunesli",
                "state": "Istanbul",
                "location": "US",
                "zip": "",
                "phone": "-",
                "email": "birol.cakmak@sgs.com",
                "contact_first_name": "Birol",
                "contact_last_name": "ÇAKMAK",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-07-13T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:49.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "United States",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8635,
                    "id": 21,
                    "valid_until": "2026-04-15T00:00:00.000000Z",
                    "created_at": "2024-01-11T00:00:00.000000Z",
                    "updated_at": "2026-04-14T00:00:00.000000Z"
                }
            },
            {
                "id": 8652,
                "maxio_customer_id": 310399,
                "reference_id": "01-MX94FCFSRAG-X",
                "pdc_id": null,
                "gateway_aid": "A229LO23",
                "uuid": "27b2aef8-4608-4f5c-a7df-2d58410b88c5",
                "type_id": 7,
                "status": "approved",
                "name": "TUV Rheinland LGA Products GmbH_MRSL",
                "legal_name": "TUV Rheinland LGA Products GmbH_MRSL",
                "address_1": "Am Grauen Stein 51105 Koeln",
                "address_2": null,
                "city": "Koln",
                "state": "Nordrhein Westfalen",
                "location": "DE",
                "zip": "",
                "phone": "+49 221 8060",
                "email": "steffen.tuemptner@de.tuv.com",
                "contact_first_name": "ATA",
                "contact_last_name": "bayraktar",
                "website": "https://www.tuv.com",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-07T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:52.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Germany",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8652,
                    "id": 22,
                    "valid_until": "2026-03-20T00:00:00.000000Z",
                    "created_at": "2024-01-16T00:00:00.000000Z",
                    "updated_at": "2026-03-19T00:00:00.000000Z"
                }
            },
            {
                "id": 8600,
                "maxio_customer_id": 310347,
                "reference_id": "01-TMEJGAMVSLT-W",
                "pdc_id": null,
                "gateway_aid": "A820MS41",
                "uuid": "a9df7805-cbaa-4aab-b73e-81a0dccd26ad",
                "type_id": 7,
                "status": "approved",
                "name": "TUV SUD Vietnam_MRSL",
                "legal_name": "TUV SUD Vietnam_MRSL",
                "address_1": "Lot III-26, 19/5A Street, Industry Group III, Tan Binh Industrial Park",
                "address_2": null,
                "city": "",
                "state": "Ho Chi Minh City",
                "location": "VN",
                "zip": "",
                "phone": "+842862678507",
                "email": "minh-thang.le@tuvsud.com",
                "contact_first_name": "Nguyen",
                "contact_last_name": "Truc",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:42.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Vietnam",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8600,
                    "id": 23,
                    "valid_until": "2026-01-29T00:00:00.000000Z",
                    "created_at": "2023-12-19T00:00:00.000000Z",
                    "updated_at": "2026-01-26T00:00:00.000000Z"
                }
            },
            {
                "id": 8661,
                "maxio_customer_id": 310408,
                "reference_id": "01-ZJAX393ZNYS-E",
                "pdc_id": null,
                "gateway_aid": "A525LH13",
                "uuid": "f61ec85b-5397-4e5c-8a12-cade64ec5b82",
                "type_id": 7,
                "status": "approved",
                "name": "TUV SUD Bangladesh (Pvt.) Ltd_MRSL",
                "legal_name": "TUV SUD Bangladesh (Pvt.) Ltd_MRSL",
                "address_1": "Level 7 & 8, Update Tower, 01 Shahajalal Ave, 1230",
                "address_2": null,
                "city": "",
                "state": "Dhaka",
                "location": "BD",
                "zip": "",
                "phone": "+880 2-58954115",
                "email": "Raffaella.Santoro@tuv.it",
                "contact_first_name": "Shafikul",
                "contact_last_name": "ISLAM",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:54.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Bangladesh",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8661,
                    "id": 24,
                    "valid_until": "2025-11-12T00:00:00.000000Z",
                    "created_at": "2024-11-30T00:00:00.000000Z",
                    "updated_at": "2025-09-30T00:00:00.000000Z"
                }
            },
            {
                "id": 8653,
                "maxio_customer_id": 310400,
                "reference_id": "01-VDTWAZAYP43-U",
                "pdc_id": null,
                "gateway_aid": "A956NT67",
                "uuid": "061c1936-d6e3-4385-bfea-ee2b9670a61c",
                "type_id": 7,
                "status": "approved",
                "name": "ToxServices LLC",
                "legal_name": "ToxServices LLC",
                "address_1": "1367 Connecticut Avenue, N.W., Suite 300 20036",
                "address_2": null,
                "city": "",
                "state": "Washington",
                "location": "US",
                "zip": "",
                "phone": "(202) 429-8787",
                "email": "Mwhittaker@toxservices.com",
                "contact_first_name": "Margaret",
                "contact_last_name": "Whittaker",
                "website": "https://www.toxservices.com",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-13T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:53.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "United States",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8653,
                    "id": 25,
                    "valid_until": "2026-02-05T00:00:00.000000Z",
                    "created_at": "2024-02-19T00:00:00.000000Z",
                    "updated_at": "2026-01-12T00:00:00.000000Z"
                }
            },
            {
                "id": 8631,
                "maxio_customer_id": 310378,
                "reference_id": "01-S27UDKYVHZL-P",
                "pdc_id": null,
                "gateway_aid": "A444NZ79",
                "uuid": "6836990a-8642-490f-89f7-cc784df0e8bf",
                "type_id": 7,
                "status": "approved",
                "name": "SGS Taiwan Ltd. (Taipei)",
                "legal_name": "SGS Taiwan Ltd. (Taipei)",
                "address_1": "31, Wu Chyuan Road, New Taipei Industrial Park, Wu Ku Dist., 24886, New Taipei City Taiwan, Province of China",
                "address_2": null,
                "city": "New Taipei City",
                "state": "New Taipei",
                "location": "TW",
                "zip": "",
                "phone": "-",
                "email": "Jerry.tung@sgs.com",
                "contact_first_name": "jerry",
                "contact_last_name": "tung",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-05-25T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:48.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Taiwan",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8631,
                    "id": 26,
                    "valid_until": "2026-01-12T00:00:00.000000Z",
                    "created_at": "2024-02-29T00:00:00.000000Z",
                    "updated_at": "2025-12-17T00:00:00.000000Z"
                }
            },
            {
                "id": 8697,
                "maxio_customer_id": 310444,
                "reference_id": "01-BUKVW698S2E-J",
                "pdc_id": null,
                "gateway_aid": "A273NP76",
                "uuid": "919cbdb3-553e-423b-966d-e3a75cf80d9e",
                "type_id": 7,
                "status": "approved",
                "name": "Eurofins Modern Testing Services (Bangladesh) Limited",
                "legal_name": "Eurofins Modern Testing Services (Bangladesh) Limited",
                "address_1": "280 East Narsinghpur, Ashulia 1341 Dhaka Bangladesh",
                "address_2": null,
                "city": "Dhaka",
                "state": "Dhaka",
                "location": "BD",
                "zip": "",
                "phone": "-",
                "email": "zakir@mtsbd.com",
                "contact_first_name": "Probir",
                "contact_last_name": "Chandra Das",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2024-03-26T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:20:01.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Bangladesh",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8697,
                    "id": 27,
                    "valid_until": "2026-04-03T00:00:00.000000Z",
                    "created_at": "2025-01-10T00:00:00.000000Z",
                    "updated_at": "2026-04-02T00:00:00.000000Z"
                }
            },
            {
                "id": 9114,
                "maxio_customer_id": 310860,
                "reference_id": "01-S27UDAGNJHW-W",
                "pdc_id": null,
                "gateway_aid": "A438IE31",
                "uuid": "f5f853da-aba6-4901-9602-e08111c4993e",
                "type_id": 7,
                "status": "approved",
                "name": "TUV Rheinland / CCIC (Qingdao) Co., Ltd.",
                "legal_name": "TUV Rheinland / CCIC (Qingdao) Co., Ltd.",
                "address_1": "6F, No. 2 Bldg., No. 175 Zhuzhou Road Qingdao 266000 China",
                "address_2": null,
                "city": "Qingdao",
                "state": "Shandong",
                "location": "CN",
                "zip": "",
                "phone": "-",
                "email": "Echo.Xu@tuv.com",
                "contact_first_name": "Echo",
                "contact_last_name": "Xu",
                "website": "https://www.tuv.com",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2025-01-03T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:21:23.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 9114,
                    "id": 28,
                    "valid_until": "2026-04-08T00:00:00.000000Z",
                    "created_at": "2025-03-17T00:00:00.000000Z",
                    "updated_at": "2026-04-07T00:00:00.000000Z"
                }
            },
            {
                "id": 8993,
                "maxio_customer_id": 310739,
                "reference_id": "01-2V6NQCSN8HE-M",
                "pdc_id": null,
                "gateway_aid": "A254LK97",
                "uuid": "2ff1860c-c0c5-4220-b2b7-7f6fbd5e9da5",
                "type_id": 7,
                "status": "approved",
                "name": "TUV SUD Certification and Testing (China) Co., Ltd. Shanghai Branch_MRSL",
                "legal_name": "TUV SUD Certification and Testing (China) Co., Ltd. Shanghai Branch_MRSL",
                "address_1": "No. 1999 Du Hui Road, Minhang District, 201108 Shanghai China",
                "address_2": null,
                "city": "Shanghai",
                "state": "Shanghai",
                "location": "CN",
                "zip": "",
                "phone": "+86 21 6141 0123",
                "email": "Chenghui.Zhang@tuvsud.com",
                "contact_first_name": "shen",
                "contact_last_name": "Hui",
                "website": "https://www.tuvsud.cn/",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:21:00.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8993,
                    "id": 29,
                    "valid_until": "2026-01-09T00:00:00.000000Z",
                    "created_at": "2024-01-17T00:00:00.000000Z",
                    "updated_at": "2026-01-07T00:00:00.000000Z"
                }
            },
            {
                "id": 8997,
                "maxio_customer_id": 310743,
                "reference_id": "01-WEJAPLNEV6W-H",
                "pdc_id": null,
                "gateway_aid": "A548JP59",
                "uuid": "512bfff6-4ef0-48d2-9e57-2484513817fa",
                "type_id": 7,
                "status": "approved",
                "name": "United Testing Services (Fujian) Co., Ltd",
                "legal_name": "United Testing Services (Fujian) Co., Ltd",
                "address_1": "Address: Room 5205, Building C, South of Clothing City, No. 88 Nanyang Road, Lingxiu Town, Shishi, Quanzhou, Fujian, China.",
                "address_2": null,
                "city": "Shishi",
                "state": "Fujian",
                "location": "CN",
                "zip": "",
                "phone": "+86 595 83667715",
                "email": "mike.wong@fabricschina.com.cn",
                "contact_first_name": "Mike",
                "contact_last_name": "User",
                "website": "https://www.c-uts.com",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2021-01-26T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:21:01.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8997,
                    "id": 30,
                    "valid_until": "2026-02-01T00:00:00.000000Z",
                    "created_at": "2023-12-26T00:00:00.000000Z",
                    "updated_at": "2026-01-30T00:00:00.000000Z"
                }
            },
            {
                "id": 10787,
                "maxio_customer_id": 312533,
                "reference_id": "01-HRBL6KCZEDB-L",
                "pdc_id": null,
                "gateway_aid": "A576LQ13",
                "uuid": "5de3557d-458e-4ccd-a876-9877734d4ab1",
                "type_id": 7,
                "status": "approved",
                "name": "CTC ARS TINCTORIA SRL",
                "legal_name": "CTC ARS TINCTORIA SRL",
                "address_1": "VIA DEL BOSCO 125  56029",
                "address_2": null,
                "city": "Santa Croce sull Arno",
                "state": "Pisa",
                "location": "IT",
                "zip": "",
                "phone": "+39 0571 35110",
                "email": "gdefeo@ctcgroupe.com",
                "contact_first_name": "GUSTAVO",
                "contact_last_name": "Defeo",
                "website": "https://www.ctcgroupe.com/en/",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-07T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:26:46.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Italy",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 10787,
                    "id": 31,
                    "valid_until": "2026-04-07T00:00:00.000000Z",
                    "created_at": "2024-01-15T00:00:00.000000Z",
                    "updated_at": "2026-03-20T00:00:00.000000Z"
                }
            },
            {
                "id": 8594,
                "maxio_customer_id": 310341,
                "reference_id": "01-S27UDK9KWZR-O",
                "pdc_id": null,
                "gateway_aid": "A302YG32",
                "uuid": "a21868a0-e599-4172-8158-6a2d4530a922",
                "type_id": 7,
                "status": "approved",
                "name": "Intertek Testing Services Taiwan Ltd._MRSL",
                "legal_name": "Intertek Testing Services Taiwan Ltd._MRSL",
                "address_1": "Floor 10, No.423, Ruiguang Road  Neihu Dist.",
                "address_2": null,
                "city": "Taipei",
                "state": "Taipei",
                "location": "TW",
                "zip": "",
                "phone": "+886 2 66022888",
                "email": "limei.chu@intertek.com",
                "contact_first_name": "Limei",
                "contact_last_name": "Chu",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:41.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Taiwan",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8594,
                    "id": 32,
                    "valid_until": "2026-04-14T00:00:00.000000Z",
                    "created_at": "2023-12-20T00:00:00.000000Z",
                    "updated_at": "2026-04-14T00:00:00.000000Z"
                }
            },
            {
                "id": 8660,
                "maxio_customer_id": 310407,
                "reference_id": "01-43HF2Y2HCJN-B",
                "pdc_id": null,
                "gateway_aid": "A350AD73",
                "uuid": "2f1af83b-e1a4-414a-90f9-0693967c282e",
                "type_id": 7,
                "status": "approved",
                "name": "FITI Testing & Research Institute",
                "legal_name": "FITI Testing & Research Institute",
                "address_1": "79, Magokjungang 8-ro 3-gil, Gangseo-gu",
                "address_2": null,
                "city": "Gangseo",
                "state": "Seoul",
                "location": "KR",
                "zip": "",
                "phone": "+82232998222",
                "email": "jun_park@fitiglobal.com",
                "contact_first_name": "Kelvin JeongYoon",
                "contact_last_name": "Lee",
                "website": "https://www.fiti.re.kr/en/?sub_num=284",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:54.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "South Korea",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8660,
                    "id": 33,
                    "valid_until": "2026-03-30T00:00:00.000000Z",
                    "created_at": "2023-12-27T00:00:00.000000Z",
                    "updated_at": "2026-03-13T00:00:00.000000Z"
                }
            },
            {
                "id": 5883,
                "maxio_customer_id": 307630,
                "reference_id": "01-S27UD99XAKV-X",
                "pdc_id": null,
                "gateway_aid": "A852OE62",
                "uuid": "29ebf086-5a21-4246-8672-9d670858901a",
                "type_id": 7,
                "status": "approved",
                "name": "Testtex India Laboratories Private Limited",
                "legal_name": "Testtex India Laboratories Private Limited",
                "address_1": "301-304 Premsons Industrial Estate, Caves Rd, Jogeshwari East, 400060",
                "address_2": null,
                "city": "Mumbai",
                "state": "Maharashtra",
                "location": "IN",
                "zip": "400060",
                "phone": "+91 22 2825 9190",
                "email": "meeta@testtex.com",
                "contact_first_name": "Meeta",
                "contact_last_name": "Shingala",
                "website": "https://www.testtex.com",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:10:44.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "India",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 5883,
                    "id": 34,
                    "valid_until": "2025-12-16T00:00:00.000000Z",
                    "created_at": "2023-12-21T00:00:00.000000Z",
                    "updated_at": "2025-12-13T00:00:00.000000Z"
                }
            },
            {
                "id": 8655,
                "maxio_customer_id": 310402,
                "reference_id": "01-E94CYGYYWNV-U",
                "pdc_id": null,
                "gateway_aid": "A176RO67",
                "uuid": "8d09254e-3403-4f40-84a4-f5990f4c5b59",
                "type_id": 7,
                "status": "approved",
                "name": "TUV Rheinland Bangladesh Pvt. Ltd._MRSL",
                "legal_name": "TUV Rheinland Bangladesh Pvt. Ltd._MRSL",
                "address_1": "Road 113/A, Plot 17, Aladdin Tower, 5th to 8 th floor 1212",
                "address_2": null,
                "city": "Dhaka",
                "state": "Dhaka",
                "location": "BD",
                "zip": "",
                "phone": "+88229894904",
                "email": "Rakesh.Vazirani@tuv.com",
                "contact_first_name": "Md Wakil",
                "contact_last_name": "Hossain",
                "website": "http://www.tuv.com/detox",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-07T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:53.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Bangladesh",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8655,
                    "id": 35,
                    "valid_until": "2026-04-05T00:00:00.000000Z",
                    "created_at": "2024-01-17T00:00:00.000000Z",
                    "updated_at": "2026-03-11T00:00:00.000000Z"
                }
            },
            {
                "id": 8622,
                "maxio_customer_id": 310369,
                "reference_id": "01-WEJAPXSNQJ7-A",
                "pdc_id": null,
                "gateway_aid": "A778MT32",
                "uuid": "4fcbc012-eef8-4918-a27d-47d3cc1a405a",
                "type_id": 7,
                "status": "approved",
                "name": "UL Italy - IISG Srl_MRSL",
                "legal_name": "UL Italy - IISG Srl_MRSL",
                "address_1": "via Europa 28, 22060 Cabiate, Italy",
                "address_2": null,
                "city": "Cabiate",
                "state": "Como",
                "location": "IT",
                "zip": "",
                "phone": "+39.031.8125.000",
                "email": "luciano.buraschi@ul.com",
                "contact_first_name": "Domenico",
                "contact_last_name": "Pelle",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-03-23T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:46.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Italy",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8622,
                    "id": 36,
                    "valid_until": "2026-03-12T00:00:00.000000Z",
                    "created_at": "2024-01-22T00:00:00.000000Z",
                    "updated_at": "2026-02-24T00:00:00.000000Z"
                }
            },
            {
                "id": 9222,
                "maxio_customer_id": 310968,
                "reference_id": "01-NWZQ9YBUJCH-S",
                "pdc_id": null,
                "gateway_aid": "A778EY21",
                "uuid": "927e09ba-73a3-4402-8593-08028399b05d",
                "type_id": 7,
                "status": "approved",
                "name": "Bay Area Compliance Labs Corp.",
                "legal_name": "Bay Area Compliance Labs Corp.",
                "address_1": "6/F, the 3rd Phase of Wan Li Industrial Bldg., Shihua Rd., FuTian",
                "address_2": null,
                "city": "Futian",
                "state": "Guangdong",
                "location": "CN",
                "zip": "",
                "phone": "+8675533320018",
                "email": "laura.cortes@baclcorp.com",
                "contact_first_name": "laura",
                "contact_last_name": "Cortes",
                "website": "https://www.baclcorp.com.cn",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-12-18T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:21:43.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 9222,
                    "id": 37,
                    "valid_until": "2026-04-08T00:00:00.000000Z",
                    "created_at": "2024-03-23T00:00:00.000000Z",
                    "updated_at": "2026-03-23T00:00:00.000000Z"
                }
            },
            {
                "id": 8639,
                "maxio_customer_id": 310386,
                "reference_id": "01-LKV6ZNBBGX3-G",
                "pdc_id": null,
                "gateway_aid": "A800GZ98",
                "uuid": "8f14c048-8bc1-4257-b64c-a3d66d4bd67e",
                "type_id": 7,
                "status": "approved",
                "name": "BUREAU VERITAS CONSUMER PRODUCTS SERVICES LANKA (PRIVATE) LIMITED_MRSL",
                "legal_name": "BUREAU VERITAS CONSUMER PRODUCTS SERVICES LANKA (PRIVATE) LIMITED_MRSL",
                "address_1": "NNo.570,Galle road,Katubedda,Sri Lanka",
                "address_2": null,
                "city": "Kaduwela",
                "state": "Western Province",
                "location": "LK",
                "zip": "",
                "phone": "-",
                "email": "sonali.nakandala@bureauveritas.com",
                "contact_first_name": "Sanduni",
                "contact_last_name": "Nakandala",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-09-29T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:50.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Sri Lanka",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8639,
                    "id": 38,
                    "valid_until": "2026-04-06T00:00:00.000000Z",
                    "created_at": "2023-12-19T00:00:00.000000Z",
                    "updated_at": "2026-04-03T00:00:00.000000Z"
                }
            },
            {
                "id": 5893,
                "maxio_customer_id": 307640,
                "reference_id": "01-E94CY66BUDP-U",
                "pdc_id": null,
                "gateway_aid": "A344OJ22",
                "uuid": "ac420973-b93a-4a2a-93aa-22a24106a0e1",
                "type_id": 7,
                "status": "approved",
                "name": "BUREAU VERITAS SINGAPORE PTE LTD_MRSL",
                "legal_name": "BUREAU VERITAS SINGAPORE PTE LTD_MRSL",
                "address_1": "37A, Tampines Street 92,#06-­‐01 Singapore, 528886",
                "address_2": null,
                "city": "Singapore City",
                "state": "Singapore",
                "location": "SG",
                "zip": "528886",
                "phone": "-",
                "email": "kenny.mak@bureauveritas.com",
                "contact_first_name": "Ya Nan",
                "contact_last_name": "Wang",
                "website": "https://group.bureauveritas.com",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2022-05-13T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:10:46.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Singapore",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 5893,
                    "id": 39,
                    "valid_until": "2026-03-05T00:00:00.000000Z",
                    "created_at": "2023-12-19T00:00:00.000000Z",
                    "updated_at": "2026-03-02T00:00:00.000000Z"
                }
            },
            {
                "id": 8630,
                "maxio_customer_id": 310377,
                "reference_id": "01-WEJAPXSWJTS-K",
                "pdc_id": null,
                "gateway_aid": "A851GA58",
                "uuid": "afb9e014-db7b-4592-bbf8-af96548ccfb7",
                "type_id": 7,
                "status": "approved",
                "name": "Eurofins MTS Consumer Product Testing (Shanghai) Co. Ltd",
                "legal_name": "Eurofins MTS Consumer Product Testing (Shanghai) Co. Ltd",
                "address_1": "No.105 Guangzhong Rd. Zhuanqiao Town, Shanghai",
                "address_2": null,
                "city": "Shanghai",
                "state": "Shanghai",
                "location": "CN",
                "zip": "",
                "phone": "-",
                "email": "viviangu@mts-global.com",
                "contact_first_name": "Eddie",
                "contact_last_name": "Zhang",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-05-22T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:48.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8630,
                    "id": 40,
                    "valid_until": "2026-03-30T00:00:00.000000Z",
                    "created_at": "2023-12-22T00:00:00.000000Z",
                    "updated_at": "2026-03-04T00:00:00.000000Z"
                }
            },
            {
                "id": 7750,
                "maxio_customer_id": 309497,
                "reference_id": "01-9P3HLLPPYNX-Z",
                "pdc_id": null,
                "gateway_aid": "A662FL36",
                "uuid": "5bb6931d-2655-4a04-9964-d56ccc04f387",
                "type_id": 7,
                "status": "approved",
                "name": "TUV Rheinland Thailand Ltd._MRSL",
                "legal_name": "TUV Rheinland Thailand Ltd._MRSL",
                "address_1": "123/1, Soi Chalongkung 31 Ladkrabang lndustrial Estate Lamplatew, Ladkrabang Bangkok 10520",
                "address_2": null,
                "city": "Lat Krabang",
                "state": "Bangkok",
                "location": "TH",
                "zip": "10520",
                "phone": "+66 2 326-1333",
                "email": "Rakesh.Vazirani@tuv.com",
                "contact_first_name": "Nutkritta",
                "contact_last_name": "Thongdee",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2021-03-26T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:16:58.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Thailand",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 7750,
                    "id": 41,
                    "valid_until": "2026-02-04T00:00:00.000000Z",
                    "created_at": "2023-12-22T00:00:00.000000Z",
                    "updated_at": "2025-12-18T00:00:00.000000Z"
                }
            },
            {
                "id": 2094,
                "maxio_customer_id": 303756,
                "reference_id": "01-BUKVWT7CHL4-H",
                "pdc_id": null,
                "gateway_aid": "A155YG88",
                "uuid": "42162b76-c772-4463-9d2f-31603764cb32",
                "type_id": 7,
                "status": "approved",
                "name": "VERIS IMPACT",
                "legal_name": "VERIS IMPACT",
                "address_1": "B-88, AEES, Gulistan e jauhar, Block-8, Karachi 75290 Pakistan",
                "address_2": null,
                "city": "Karachi",
                "state": "Sindh",
                "location": "PK",
                "zip": "",
                "phone": "",
                "email": "jamal.gulzar@verisimpact.com",
                "contact_first_name": "Jamal",
                "contact_last_name": "Gulzar",
                "website": "https://www.verisimpact.com",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2026-03-13T00:00:00.000000Z",
                "updated_at": "2026-05-12T14:52:31.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Pakistan",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 2094,
                    "id": 42,
                    "valid_until": "2026-04-20T00:00:00.000000Z",
                    "created_at": "2026-04-07T00:00:00.000000Z",
                    "updated_at": "2026-04-13T00:00:00.000000Z"
                }
            },
            {
                "id": 8626,
                "maxio_customer_id": 310373,
                "reference_id": "01-NWZQ9M3DYJV-I",
                "pdc_id": null,
                "gateway_aid": "A596TF96",
                "uuid": "cdb999c3-24f2-422a-ac7d-fb59c73bbce8",
                "type_id": 7,
                "status": "approved",
                "name": "SGS-CSTC Standards Technical Services Co., Ltd. Guangzhou Branch",
                "legal_name": "SGS-CSTC Standards Technical Services Co., Ltd. Guangzhou Branch",
                "address_1": "198 Kezhu Road, Scientech Park, Guangzhou Economic & Technology Development District, 510663, Guangzhou, China",
                "address_2": null,
                "city": "Guangzhou",
                "state": "Guangdong",
                "location": "CN",
                "zip": "",
                "phone": "00862082155632",
                "email": "Ivan.Xie@sgs.com",
                "contact_first_name": "Liane",
                "contact_last_name": "liu",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-04-19T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:47.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8626,
                    "id": 43,
                    "valid_until": "2026-04-17T00:00:00.000000Z",
                    "created_at": "2023-12-20T00:00:00.000000Z",
                    "updated_at": "2026-04-14T00:00:00.000000Z"
                }
            },
            {
                "id": 8566,
                "maxio_customer_id": 310313,
                "reference_id": "01-FBL2N7GV3XN-F",
                "pdc_id": null,
                "gateway_aid": "A184OQ79",
                "uuid": "591df904-4afd-4694-ad6c-e57443f1f3d9",
                "type_id": 7,
                "status": "approved",
                "name": "Intertek Testing Services (Tianjin) Ltd.",
                "legal_name": "Intertek Testing Services (Tianjin) Ltd.",
                "address_1": "2-4/F Yishanghutong Building No. 7 Guiyuan Road. Huayuan Hi-Tech Park",
                "address_2": null,
                "city": "Tianjin",
                "state": "Tianjin",
                "location": "CN",
                "zip": "",
                "phone": "+86 22 8371 2202",
                "email": "patrick.gong@intertek.com",
                "contact_first_name": "Ben",
                "contact_last_name": "Cheng ZDHC MRSL",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:36.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8566,
                    "id": 44,
                    "valid_until": "2026-04-10T00:00:00.000000Z",
                    "created_at": "2024-05-11T00:00:00.000000Z",
                    "updated_at": "2027-10-04T00:00:00.000000Z"
                }
            },
            {
                "id": 8588,
                "maxio_customer_id": 310335,
                "reference_id": "01-S27UDK9JDRR-S",
                "pdc_id": null,
                "gateway_aid": "A382HL60",
                "uuid": "8a53e67d-ba82-4b5c-adde-344dcf5a7067",
                "type_id": 7,
                "status": "approved",
                "name": "Intertek India Private Limited (Banglalore)",
                "legal_name": "Intertek India Private Limited (Banglalore)",
                "address_1": "No-17/F, Industrial Subrub, Yeshwanthpur, Yeshwanthpur, 560022",
                "address_2": null,
                "city": "Bengalooru",
                "state": "Karnataka",
                "location": "IN",
                "zip": "",
                "phone": "+9140213700",
                "email": "Aatheeswaran.s@intertek.com",
                "contact_first_name": "Aatheeswaran",
                "contact_last_name": "User",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:40.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "India",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8588,
                    "id": 45,
                    "valid_until": "2026-04-20T00:00:00.000000Z",
                    "created_at": "2023-12-20T00:00:00.000000Z",
                    "updated_at": "2026-04-14T00:00:00.000000Z"
                }
            },
            {
                "id": 8605,
                "maxio_customer_id": 310352,
                "reference_id": "01-TMEJGAMW99X-Y",
                "pdc_id": null,
                "gateway_aid": "A202RF74",
                "uuid": "6becb420-a5c0-4a35-97d1-46385b2a564c",
                "type_id": 7,
                "status": "approved",
                "name": "TUV Rheinland Hong Kong Ltd._MRSL",
                "legal_name": "TUV Rheinland Hong Kong Ltd._MRSL",
                "address_1": "3-4, 11/F, Fou Wah Industrial Building, 10-16 Pun Shan St, Tsuen Wan",
                "address_2": null,
                "city": "Hong Kong",
                "state": "Hong Kong",
                "location": "HK",
                "zip": "",
                "phone": "+852 2192 1022",
                "email": "jet.lee@tuv.com",
                "contact_first_name": "Anthony",
                "contact_last_name": "TU",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-07T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:43.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Hong Kong SAR China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8605,
                    "id": 46,
                    "valid_until": "2026-04-17T00:00:00.000000Z",
                    "created_at": "2024-01-02T00:00:00.000000Z",
                    "updated_at": "2026-04-13T00:00:00.000000Z"
                }
            },
            {
                "id": 8562,
                "maxio_customer_id": 310309,
                "reference_id": "01-E94CYGWMHFQ-T",
                "pdc_id": null,
                "gateway_aid": "A885GA11",
                "uuid": "31f791c4-306c-46d4-b2e1-c75ea3681cdc",
                "type_id": 7,
                "status": "approved",
                "name": "Intertek Testing Services Ltd., Shanghai",
                "legal_name": "Intertek Testing Services Ltd., Shanghai",
                "address_1": "2/F, Building No. 4 Shanghai Comalong Technology Service Park 889 Yi Shan Road",
                "address_2": null,
                "city": "Shanghai",
                "state": "Shanghai",
                "location": "CN",
                "zip": "",
                "phone": "+86 (21) 6120 6060",
                "email": "jane.wu@intertek.com",
                "contact_first_name": "Jane",
                "contact_last_name": "Wu",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:35.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8562,
                    "id": 47,
                    "valid_until": "2026-04-02T00:00:00.000000Z",
                    "created_at": "2023-12-20T00:00:00.000000Z",
                    "updated_at": "2026-04-02T00:00:00.000000Z"
                }
            },
            {
                "id": 8623,
                "maxio_customer_id": 310370,
                "reference_id": "01-2V6NQ8XPXTU-N",
                "pdc_id": null,
                "gateway_aid": "A113LK71",
                "uuid": "94a4ec0d-deca-4397-abbe-2d5c6f09bf28",
                "type_id": 7,
                "status": "approved",
                "name": "Intertek Testing Services Korea Ltd._MRSL",
                "legal_name": "Intertek Testing Services Korea Ltd._MRSL",
                "address_1": "1F, A-Ju digital tower, 7, Achasan-ro 5-gil, Seongdong-gu 04793 Seoul Korea Republic of",
                "address_2": null,
                "city": "Seongdong",
                "state": "Seoul",
                "location": "KR",
                "zip": "",
                "phone": "-",
                "email": "ryan.kwak@intertek.com",
                "contact_first_name": "Heloise",
                "contact_last_name": "Jeong",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-03-24T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:47.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "South Korea",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8623,
                    "id": 48,
                    "valid_until": "2026-04-03T00:00:00.000000Z",
                    "created_at": "2024-02-16T00:00:00.000000Z",
                    "updated_at": "2026-02-19T00:00:00.000000Z"
                }
            },
            {
                "id": 8567,
                "maxio_customer_id": 310314,
                "reference_id": "01-8ZQM4EKQRV3-B",
                "pdc_id": null,
                "gateway_aid": "A904AT31",
                "uuid": "042f9b98-c0c0-4c76-a85f-75d059a4c9b6",
                "type_id": 7,
                "status": "approved",
                "name": "Brachi Testing Services S.r.l. Unipersonale_MRSL",
                "legal_name": "Brachi Testing Services S.r.l. Unipersonale_MRSL",
                "address_1": "Via Fona di Mezzana, 59100",
                "address_2": null,
                "city": "Mezzana",
                "state": "Prato",
                "location": "IT",
                "zip": "",
                "phone": "+390574591343",
                "email": "giancarlo.diblasi@brachi.it",
                "contact_first_name": "Giancarlo",
                "contact_last_name": "Di Blasi",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:36.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Italy",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8567,
                    "id": 49,
                    "valid_until": "2026-04-13T00:00:00.000000Z",
                    "created_at": "2023-12-20T00:00:00.000000Z",
                    "updated_at": "2026-04-10T00:00:00.000000Z"
                }
            },
            {
                "id": 8633,
                "maxio_customer_id": 310380,
                "reference_id": "01-ZJAX39WTFF9-R",
                "pdc_id": null,
                "gateway_aid": "A840WS25",
                "uuid": "f31fac18-eefb-49c7-aae5-6b9b6d2f83c9",
                "type_id": 7,
                "status": "approved",
                "name": "Bureau Veritas Consumer Products Services (Guangzhou) Co.,Ltd_MRSL",
                "legal_name": "Bureau Veritas Consumer Products Services (Guangzhou) Co.,Ltd_MRSL",
                "address_1": "No.183, Shi Nan Road, Mei Lin Plaza Block B, Dong",
                "address_2": null,
                "city": "Guangzhou",
                "state": "Guangdong",
                "location": "CN",
                "zip": "",
                "phone": "-",
                "email": "nina.ren@bureauveritas.com",
                "contact_first_name": "Nina",
                "contact_last_name": "REN",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-06-14T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:49.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8633,
                    "id": 50,
                    "valid_until": "2026-04-01T00:00:00.000000Z",
                    "created_at": "2024-01-30T00:00:00.000000Z",
                    "updated_at": "2026-03-23T00:00:00.000000Z"
                }
            },
            {
                "id": 8624,
                "maxio_customer_id": 310371,
                "reference_id": "01-TMEJGAYYMHY-G",
                "pdc_id": null,
                "gateway_aid": "A532HF62",
                "uuid": "124965cc-6ec7-421e-ac31-5da3569ebe85",
                "type_id": 7,
                "status": "approved",
                "name": "SGS Vietnam Ltd (Ho Chi Minh)_MRSL",
                "legal_name": "SGS Vietnam Ltd (Ho Chi Minh)_MRSL",
                "address_1": "Lot III/21, 19/5A St. Tan Binh Industrial Zone, Tay Thanh 700000",
                "address_2": null,
                "city": "Tan Phu",
                "state": "Ho Chi Minh City",
                "location": "VN",
                "zip": "",
                "phone": "-",
                "email": "rhodora.quinto@sgs.com",
                "contact_first_name": "Pham",
                "contact_last_name": "DUNG",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-04-05T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:47.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Vietnam",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8624,
                    "id": 51,
                    "valid_until": "2026-04-20T00:00:00.000000Z",
                    "created_at": "2023-12-26T00:00:00.000000Z",
                    "updated_at": "2026-03-31T00:00:00.000000Z"
                }
            },
            {
                "id": 7752,
                "maxio_customer_id": 309499,
                "reference_id": "01-TMEJGGMKYL4-U",
                "pdc_id": null,
                "gateway_aid": "A380PK51",
                "uuid": "c03141ee-796e-45c3-a5e1-5a43cee07a2f",
                "type_id": 7,
                "status": "approved",
                "name": "TUV Rheinland India (Gurugram) Pvt. Ltd_MRSL",
                "legal_name": "TUV Rheinland India (Gurugram) Pvt. Ltd_MRSL",
                "address_1": "Plot no. 330-331, Udyog Vihar – Phase IV, Gurugram – 122015, Haryana, India",
                "address_2": null,
                "city": "Gurgaon",
                "state": "Haryana",
                "location": "IN",
                "zip": "122015",
                "phone": "+91 80 3923 4301",
                "email": "Shivendra.Parmar@ind.tuv.com",
                "contact_first_name": "Shivendra",
                "contact_last_name": "Parmar",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2022-01-05T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:16:59.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "India",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 7752,
                    "id": 52,
                    "valid_until": "2026-03-16T00:00:00.000000Z",
                    "created_at": "2024-01-03T00:00:00.000000Z",
                    "updated_at": "2026-03-05T00:00:00.000000Z"
                }
            },
            {
                "id": 8561,
                "maxio_customer_id": 310308,
                "reference_id": "01-8ZQM4EKZQGH-S",
                "pdc_id": null,
                "gateway_aid": "A210ZF97",
                "uuid": "b922aa67-6b83-458d-be23-ee970e93b795",
                "type_id": 7,
                "status": "approved",
                "name": "ZHEJIANG FANGYUAN TEST GROUP CO., LTD.",
                "legal_name": "ZHEJIANG FANGYUAN TEST GROUP CO., LTD.",
                "address_1": "No.300 Xiasha Road, Hangzhou Economic & Technological Development Area. 310018 Hangzhou, Zhejiang",
                "address_2": null,
                "city": "Hangzhou",
                "state": "Zhejiang",
                "location": "CN",
                "zip": "",
                "phone": "+",
                "email": "slc_tc@163.com",
                "contact_first_name": "Yahong",
                "contact_last_name": "Zhang",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2021-03-26T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:35.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8561,
                    "id": 53,
                    "valid_until": "2026-04-17T00:00:00.000000Z",
                    "created_at": "2023-12-28T00:00:00.000000Z",
                    "updated_at": "2026-04-16T00:00:00.000000Z"
                }
            },
            {
                "id": 8610,
                "maxio_customer_id": 310357,
                "reference_id": "01-3SRBVLSXB8Z-D",
                "pdc_id": null,
                "gateway_aid": "A395JH61",
                "uuid": "bcdfe895-57a8-4f98-bdc4-90a900de5070",
                "type_id": 7,
                "status": "approved",
                "name": "Intertek Testing Services Shenzhen Ltd. Guangzhou Branch",
                "legal_name": "Intertek Testing Services Shenzhen Ltd. Guangzhou Branch",
                "address_1": "Room 601, No. 8, East BaoYing Road, Huangpu District, Guangzhou 510730,",
                "address_2": null,
                "city": "Guangzhou",
                "state": "Guangdong",
                "location": "CN",
                "zip": "",
                "phone": "+86 20 28209501",
                "email": "vivian.px.li@intertek.com",
                "contact_first_name": "Vivian",
                "contact_last_name": "Li",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:44.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8610,
                    "id": 54,
                    "valid_until": "2026-04-20T00:00:00.000000Z",
                    "created_at": "2023-12-21T00:00:00.000000Z",
                    "updated_at": "2026-04-20T00:00:00.000000Z"
                }
            },
            {
                "id": 8636,
                "maxio_customer_id": 310383,
                "reference_id": "01-HRBL623CSUQ-H",
                "pdc_id": null,
                "gateway_aid": "A342QT20",
                "uuid": "0fc2a375-0490-4e48-937b-dce8dbed0b81",
                "type_id": 7,
                "status": "approved",
                "name": "Bureau Veritas Consumer Products Services Vietnam_MRSL",
                "legal_name": "Bureau Veritas Consumer Products Services Vietnam_MRSL",
                "address_1": "Lot C7-C9, Conurbation 2, Cat Lai Industrial Zone, Thanh My Loi Ward, District 2, 700000,Ho Chi Minh City, Vietnam",
                "address_2": null,
                "city": "Ho Chi Minh City",
                "state": "Ho Chi Minh City",
                "location": "VN",
                "zip": "",
                "phone": "-",
                "email": "lina.vo@bureauveritas.com",
                "contact_first_name": "Suri",
                "contact_last_name": "Tran",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-07-25T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:49.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Vietnam",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8636,
                    "id": 55,
                    "valid_until": "2026-04-17T00:00:00.000000Z",
                    "created_at": "2023-12-22T00:00:00.000000Z",
                    "updated_at": "2026-02-09T00:00:00.000000Z"
                }
            },
            {
                "id": 8625,
                "maxio_customer_id": 310372,
                "reference_id": "01-43HF2Y6YTEA-E",
                "pdc_id": null,
                "gateway_aid": "A574ZY10",
                "uuid": "372d85ea-42bc-4aae-a279-db159aa078ee",
                "type_id": 7,
                "status": "approved",
                "name": "SGS-CSTC Standards Technical Services (Shanghai) Co., Ltd._MRSL",
                "legal_name": "SGS-CSTC Standards Technical Services (Shanghai) Co., Ltd._MRSL",
                "address_1": "4/F, 4thBuilding No. 889, Yishan Rd, Xuhui District, 200030 Shanghai, China",
                "address_2": null,
                "city": "Xuhui",
                "state": "Shanghai",
                "location": "CN",
                "zip": "",
                "phone": "-",
                "email": "barry.lou@sgs.com",
                "contact_first_name": "IVEN",
                "contact_last_name": "DI",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-04-05T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:47.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8625,
                    "id": 56,
                    "valid_until": "2026-04-13T00:00:00.000000Z",
                    "created_at": "2024-01-05T00:00:00.000000Z",
                    "updated_at": "2026-04-08T00:00:00.000000Z"
                }
            },
            {
                "id": 8683,
                "maxio_customer_id": 310430,
                "reference_id": "01-HRBL6228FJ8-G",
                "pdc_id": null,
                "gateway_aid": "A891GF64",
                "uuid": "e879f052-6547-4474-ab20-0105064ca411",
                "type_id": 7,
                "status": "approved",
                "name": "Bureau Veritas Consumer Products Services (I) Pvt. Ltd. (Bangalore)_MRSL",
                "legal_name": "Bureau Veritas Consumer Products Services (I) Pvt. Ltd. (Bangalore)_MRSL",
                "address_1": "AKR Tech Park, Ground floor, C Block, Survey no 112, Bangalore, 560068,",
                "address_2": null,
                "city": "Bangalore",
                "state": "Karnataka",
                "location": "IN",
                "zip": "",
                "phone": "-",
                "email": "sudalaimuthu.vs@bureauveritas.com",
                "contact_first_name": "Sudalaimuthu",
                "contact_last_name": "VS",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-09-01T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:58.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "India",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8683,
                    "id": 57,
                    "valid_until": "2026-04-10T00:00:00.000000Z",
                    "created_at": "2023-12-19T00:00:00.000000Z",
                    "updated_at": "2026-03-30T00:00:00.000000Z"
                }
            },
            {
                "id": 7742,
                "maxio_customer_id": 309489,
                "reference_id": "01-FBL2NNAL9BR-F",
                "pdc_id": null,
                "gateway_aid": "A467YQ44",
                "uuid": "d5ef0f03-b637-4867-8a6c-0c90d9321202",
                "type_id": 7,
                "status": "approved",
                "name": "Eurofins MTS Consumer Product Testing (Dongguan) Co. Ltd",
                "legal_name": "Eurofins MTS Consumer Product Testing (Dongguan) Co. Ltd",
                "address_1": "No, 76 Liangping road, Xin jiu wei village, liaobo town, 523400 Dongguan China",
                "address_2": null,
                "city": "Dongguan City",
                "state": "Guangdong",
                "location": "CN",
                "zip": "523400",
                "phone": "-",
                "email": "Carol.ke@cpt.eurofinscn.com",
                "contact_first_name": "CAROL",
                "contact_last_name": "Ke",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-05-23T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:16:57.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 7742,
                    "id": 58,
                    "valid_until": "2026-04-20T00:00:00.000000Z",
                    "created_at": "2023-12-19T00:00:00.000000Z",
                    "updated_at": "2026-04-17T00:00:00.000000Z"
                }
            },
            {
                "id": 8559,
                "maxio_customer_id": 310306,
                "reference_id": "01-CHFY7SAA6R2-Y",
                "pdc_id": null,
                "gateway_aid": "A679WF94",
                "uuid": "151e16f6-d103-4c78-b303-8c7e8336b661",
                "type_id": 7,
                "status": "approved",
                "name": "Centre Testing International Group Co., Ltd. (CTI)",
                "legal_name": "Centre Testing International Group Co., Ltd. (CTI)",
                "address_1": "CTI Building, No.4, Liuxian 3rd Road, Xin’an Street, Bao’an District",
                "address_2": null,
                "city": "Shenzhen",
                "state": "Guangdong",
                "location": "CN",
                "zip": "",
                "phone": "+",
                "email": "kevin.lu@cti-cert.com",
                "contact_first_name": "Kevin",
                "contact_last_name": "Lu",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2021-01-29T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:35.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8559,
                    "id": 59,
                    "valid_until": "2026-04-20T00:00:00.000000Z",
                    "created_at": "2023-12-19T00:00:00.000000Z",
                    "updated_at": "2026-04-15T00:00:00.000000Z"
                }
            },
            {
                "id": 5835,
                "maxio_customer_id": 307582,
                "reference_id": "01-8ZQM4BGUY6M-T",
                "pdc_id": null,
                "gateway_aid": "A826RC45",
                "uuid": "f13d4431-8b6d-422e-a91c-4cbbc52987fa",
                "type_id": 7,
                "status": "approved",
                "name": "Nimkartek Technical Services Pvt Ltd",
                "legal_name": "Nimkartek Technical Services Pvt Ltd",
                "address_1": "3rd Floor, Narmada, Laxmi Industrial Complex, Vartak Nagar, Pokhran Road 1",
                "address_2": null,
                "city": "",
                "state": "Maharashtra",
                "location": "IN",
                "zip": "400606",
                "phone": "+91 9819641527",
                "email": "anagha.nimkar@nimkartek.com",
                "contact_first_name": "Anagha",
                "contact_last_name": "Nimkar",
                "website": "https://www.nimkartek.com",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-06T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:10:35.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "India",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 5835,
                    "id": 60,
                    "valid_until": "2026-04-20T00:00:00.000000Z",
                    "created_at": "2023-12-20T00:00:00.000000Z",
                    "updated_at": "2026-04-13T00:00:00.000000Z"
                }
            },
            {
                "id": 8662,
                "maxio_customer_id": 310409,
                "reference_id": "01-S27UDKGPZMN-X",
                "pdc_id": null,
                "gateway_aid": "A743LA72",
                "uuid": "99e5814e-7e90-4d02-b298-63dc490bd043",
                "type_id": 7,
                "status": "approved",
                "name": "Elle.A.Ci.Ti. srl",
                "legal_name": "Elle.A.Ci.Ti. srl",
                "address_1": "Via Leopardi 11a 22075",
                "address_2": null,
                "city": "Lurate Caccivio",
                "state": "Como",
                "location": "IT",
                "zip": "",
                "phone": "+39031492543",
                "email": "e.scudella@elleaciti.com",
                "contact_first_name": "Elisa Silvia",
                "contact_last_name": "Botto",
                "website": "https://www.elleaciti.com",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:54.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Italy",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8662,
                    "id": 61,
                    "valid_until": "2026-04-15T00:00:00.000000Z",
                    "created_at": "2023-12-19T00:00:00.000000Z",
                    "updated_at": "2027-12-13T00:00:00.000000Z"
                }
            },
            {
                "id": 8569,
                "maxio_customer_id": 310316,
                "reference_id": "01-S27UDK6VX3D-J",
                "pdc_id": null,
                "gateway_aid": "A460HH65",
                "uuid": "f2d95b47-df0f-4b1f-99ec-47970a5565f8",
                "type_id": 7,
                "status": "approved",
                "name": "TUV Rheinland Vietnam Co., Ltd_MRSL",
                "legal_name": "TUV Rheinland Vietnam Co., Ltd_MRSL",
                "address_1": "Centre Point, 106 Nguyễn Văn Trỗi, Phường 8, Phú Nhuận Softlines & Hardlines Laboratory  Hall 10, Road No.1, Quang Trung Software City, Tan Chanh Hiep Ward",
                "address_2": null,
                "city": "Phu Nhuan",
                "state": "Ho Chi Minh City",
                "location": "VN",
                "zip": "",
                "phone": "+84 28 3842 0600",
                "email": "Linh.dao@tuv.com",
                "contact_first_name": "Tan Anh",
                "contact_last_name": "Nguyen Ngo",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-06T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:37.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Vietnam",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8569,
                    "id": 62,
                    "valid_until": "2026-04-20T00:00:00.000000Z",
                    "created_at": "2023-12-19T00:00:00.000000Z",
                    "updated_at": "2026-04-15T00:00:00.000000Z"
                }
            },
            {
                "id": 8628,
                "maxio_customer_id": 310375,
                "reference_id": "01-R7UKTVECN3U-G",
                "pdc_id": null,
                "gateway_aid": "A459HZ44",
                "uuid": "e9645cca-9f71-4508-a739-15f3164ff0c8",
                "type_id": 7,
                "status": "approved",
                "name": "CU Inspections & Certifications India Pvt. Ltd",
                "legal_name": "CU Inspections & Certifications India Pvt. Ltd",
                "address_1": "23rd Floor, B wing • Arihant Aura • Plot no. 13/1, TTC • Opp. Turbhe Railway Station Thane Belapur Road, MIDC side",
                "address_2": null,
                "city": "Navi Mumbai",
                "state": "Maharashtra",
                "location": "IN",
                "zip": "",
                "phone": "-",
                "email": "amolp@controlunion.com",
                "contact_first_name": "Amol",
                "contact_last_name": "Patil",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-05-12T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:48.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "India",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8628,
                    "id": 63,
                    "valid_until": "2026-04-20T00:00:00.000000Z",
                    "created_at": "2023-12-20T00:00:00.000000Z",
                    "updated_at": "2026-04-14T00:00:00.000000Z"
                }
            },
            {
                "id": 8719,
                "maxio_customer_id": 310465,
                "reference_id": "01-MX94FCJMAUJ-M",
                "pdc_id": null,
                "gateway_aid": "A897PW37",
                "uuid": "8692ffd3-513f-4f34-9b8a-1b62490a72e8",
                "type_id": 7,
                "status": "approved",
                "name": "ICEA",
                "legal_name": "ICEA",
                "address_1": "Via Brugnoli 15",
                "address_2": null,
                "city": "Bologna",
                "state": "Bologna",
                "location": "IT",
                "zip": "",
                "phone": "+39051272986",
                "email": "paolo.foglia@icea.bio",
                "contact_first_name": "Francesco",
                "contact_last_name": "Pazzi",
                "website": "https://www.icea.bio",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-04-06T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:20:05.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Italy",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8719,
                    "id": 64,
                    "valid_until": "2025-04-28T00:00:00.000000Z",
                    "created_at": "2025-04-24T00:00:00.000000Z",
                    "updated_at": "2023-07-14T00:00:00.000000Z"
                }
            },
            {
                "id": 8629,
                "maxio_customer_id": 310376,
                "reference_id": "01-R7UKTVEJY9K-J",
                "pdc_id": null,
                "gateway_aid": "A382AD87",
                "uuid": "1e4f95d8-b4fc-4434-9372-024f8ece9c0e",
                "type_id": 7,
                "status": "approved",
                "name": "UL VS Bangladesh Ltd._MRSL",
                "legal_name": "UL VS Bangladesh Ltd._MRSL",
                "address_1": "The Pearl Trade Center (5th, 14th & 15th Floor), Cha-90/3, Progoti Sharani, North Badda. 1212 Dhaka Bangladesh",
                "address_2": null,
                "city": "Badda",
                "state": "Dhaka",
                "location": "BD",
                "zip": "",
                "phone": "-",
                "email": "Ahammad.Hossen@ul.com",
                "contact_first_name": "Ahammad",
                "contact_last_name": "Hossen",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-05-15T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:48.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Bangladesh",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8629,
                    "id": 65,
                    "valid_until": "2024-12-09T00:00:00.000000Z",
                    "created_at": "2023-12-24T00:00:00.000000Z",
                    "updated_at": "2024-12-03T00:00:00.000000Z"
                }
            },
            {
                "id": 8632,
                "maxio_customer_id": 310379,
                "reference_id": "01-6TWZXQVDXKG-F",
                "pdc_id": null,
                "gateway_aid": "A634ZE37",
                "uuid": "5e43fd51-7ea0-4d61-bfd4-4da9a4a40366",
                "type_id": 7,
                "status": "approved",
                "name": "UL India Private Limited, Gurugram, India_MRSL",
                "legal_name": "UL India Private Limited, Gurugram, India_MRSL",
                "address_1": "A12,Infociry,Sector 34, 122001, Gurgaon,Haryana, India",
                "address_2": null,
                "city": "Gurgaon",
                "state": "Haryana",
                "location": "IN",
                "zip": "",
                "phone": "-",
                "email": "shashi.b.rout@ul.com",
                "contact_first_name": "Shashi",
                "contact_last_name": "Rout",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-06-14T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:49.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "India",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8632,
                    "id": 66,
                    "valid_until": "2025-01-02T00:00:00.000000Z",
                    "created_at": "2024-12-24T00:00:00.000000Z",
                    "updated_at": "2024-12-23T00:00:00.000000Z"
                }
            },
            {
                "id": 8591,
                "maxio_customer_id": 310338,
                "reference_id": "01-BUKVW6CCGJJ-A",
                "pdc_id": null,
                "gateway_aid": "A981IZ54",
                "uuid": "35bbdda4-f0d1-46cc-8e06-d0a42bcb2d10",
                "type_id": 7,
                "status": "approved",
                "name": "Eurofins - BLC Leather Technology Centre Ltd",
                "legal_name": "Eurofins - BLC Leather Technology Centre Ltd",
                "address_1": "Kings Park Road, Moulton Park NN 3 6JD",
                "address_2": null,
                "city": "Northampton",
                "state": "Northamptonshire",
                "location": "GB",
                "zip": "",
                "phone": "+44 1604 679999",
                "email": "Georgina.Mawer@cpt.eurofinseu.com",
                "contact_first_name": "Georgina",
                "contact_last_name": "Mawer",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-06T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:41.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "United Kingdom",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8591,
                    "id": 67,
                    "valid_until": "2026-04-17T00:00:00.000000Z",
                    "created_at": "2023-12-19T00:00:00.000000Z",
                    "updated_at": "2026-04-16T00:00:00.000000Z"
                }
            },
            {
                "id": 8627,
                "maxio_customer_id": 310374,
                "reference_id": "01-PYSRKBD4KL7-E",
                "pdc_id": null,
                "gateway_aid": "A535AF86",
                "uuid": "5ed3e4e2-c076-424a-a34a-7e5a0544d49f",
                "type_id": 7,
                "status": "approved",
                "name": "UL VS Shanghai Limited_MRSL",
                "legal_name": "UL VS Shanghai Limited_MRSL",
                "address_1": "2F, Building 1, Caohejing Hi Tech Park. No.188, PingFu Road, Xu Hui District, 200231 Shanghai China",
                "address_2": null,
                "city": "Shanghai",
                "state": "Shanghai",
                "location": "CN",
                "zip": "",
                "phone": "-",
                "email": "Sherry.Xue@ul.com",
                "contact_first_name": "sherry",
                "contact_last_name": "xue",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2023-05-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:48.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "China",
                "pivot": {
                    "ctz_standard_id": 3,
                    "organisation_id": 8627,
                    "id": 69,
                    "valid_until": "2024-04-24T00:00:00.000000Z",
                    "created_at": "2024-01-19T00:00:00.000000Z",
                    "updated_at": "2024-01-18T00:00:00.000000Z"
                }
            }
        ]
    }
}
 

Request      

GET api/organisation/{organisation_id}/chemical/certification/ctz-standard/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the ctz standard. Example: 3

Store

requires authentication

Create a new CTZ Standard

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/ctz-standard" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"dzne\",
    \"version\": \"klbgiwmp\",
    \"start_date\": \"2026-05-21T16:14:53\",
    \"end_date\": \"2026-05-21T16:14:53\",
    \"status\": \"FAILED\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/ctz-standard"
);

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

let body = {
    "name": "dzne",
    "version": "klbgiwmp",
    "start_date": "2026-05-21T16:14:53",
    "end_date": "2026-05-21T16:14:53",
    "status": "FAILED"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 3,
        "name": "CTZ Foundational — 1.0.0",
        "version": "1.0.0",
        "ctz_level_id": 1,
        "start_date": "2023-12-19T00:00:00.000000Z",
        "end_date": null,
        "status": "PASSED",
        "expired_at": null,
        "created_at": "2026-05-08T21:42:18.000000Z",
        "updated_at": "2026-05-13T11:27:29.000000Z"
    }
}
 

Request      

POST api/organisation/{organisation_id}/chemical/certification/ctz-standard

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: dzne

version   string     

Must not be greater than 255 characters. Example: klbgiwmp

organisations   string[]  optional    

The id of an existing record in the organisations table.

ctz_level_id   string  optional    

The id of an existing record in the ctz_levels table.

start_date   string     

Must be a valid date. Example: 2026-05-21T16:14:53

end_date   string  optional    

Must be a valid date. Example: 2026-05-21T16:14:53

status   string     

Example: FAILED

Must be one of:
  • FAILED
  • PASSED

Update

requires authentication

Update a CTZ Standard

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/ctz-standard/3" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"zabizuktiucaryemlnp\",
    \"version\": \"aemtcrdgmffpo\",
    \"start_date\": \"2026-05-21T16:14:53\",
    \"end_date\": \"2026-05-21T16:14:53\",
    \"status\": \"PASSED\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/ctz-standard/3"
);

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

let body = {
    "name": "zabizuktiucaryemlnp",
    "version": "aemtcrdgmffpo",
    "start_date": "2026-05-21T16:14:53",
    "end_date": "2026-05-21T16:14:53",
    "status": "PASSED"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 3,
        "name": "CTZ Foundational — 1.0.0",
        "version": "1.0.0",
        "ctz_level_id": 1,
        "start_date": "2023-12-19T00:00:00.000000Z",
        "end_date": null,
        "status": "PASSED",
        "expired_at": null,
        "created_at": "2026-05-08T21:42:18.000000Z",
        "updated_at": "2026-05-13T11:27:29.000000Z"
    }
}
 

Request      

PUT api/organisation/{organisation_id}/chemical/certification/ctz-standard/{id}

PATCH api/organisation/{organisation_id}/chemical/certification/ctz-standard/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the ctz standard. Example: 3

Body Parameters

name   string     

Must not be greater than 255 characters. Example: zabizuktiucaryemlnp

version   string     

Must not be greater than 255 characters. Example: aemtcrdgmffpo

organisations   string[]  optional    

The id of an existing record in the organisations table.

ctz_level_id   string  optional    

The id of an existing record in the ctz_levels table.

start_date   string     

Must be a valid date. Example: 2026-05-21T16:14:53

end_date   string  optional    

Must be a valid date. Example: 2026-05-21T16:14:53

status   string     

Example: PASSED

Must be one of:
  • FAILED
  • PASSED

Destroy

requires authentication

Delete a CTZ Standard

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/ctz-standard/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/organisation/1/chemical/certification/ctz-standard/3"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/organisation/{organisation_id}/chemical/certification/ctz-standard/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the ctz standard. Example: 3

Certification Bodies/V1

CTZ Standard

List CTZ standards

requires authentication

Returns a paginated list of CTZ standards for this certification body.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/ctz-standard?per_page=6&page=1&filter%5Bname%5D=enim&filter%5Bversion%5D=4&filter%5Bctz_level_id%5D=6&filter%5Bctz_level_name%5D=sit&filter%5Bstatus%5D=FAILED&filter%5Bstart_date%5D=%3D+2026-05-27+16%3A14%3A54&filter%5Bend_date%5D=%3C%3D+2026-06-09+16%3A14%3A54&filter%5Bcreated_at%5D=%3D+2026-06-03+16%3A14%3A54&filter%5Bupdated_at%5D=%3C%3D+2026-06-05+16%3A14%3A54&search=reiciendis&sort=name&column=name" \
    --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/certification-bodies/v1/1/ctz-standard"
);

const params = {
    "per_page": "6",
    "page": "1",
    "filter[name]": "enim",
    "filter[version]": "4",
    "filter[ctz_level_id]": "6",
    "filter[ctz_level_name]": "sit",
    "filter[status]": "FAILED",
    "filter[start_date]": "= 2026-05-27 16:14:54",
    "filter[end_date]": "<= 2026-06-09 16:14:54",
    "filter[created_at]": "= 2026-06-03 16:14:54",
    "filter[updated_at]": "<= 2026-06-05 16:14:54",
    "search": "reiciendis",
    "sort": "name",
    "column": "name",
};
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": 3,
            "name": "CTZ Foundational — 1.0.0",
            "version": "1.0.0",
            "start_date": "2023-12-19T00:00:00.000000Z",
            "end_date": null,
            "status": "PASSED",
            "expired_at": null,
            "ctz_level_id": 1,
            "ctz_level_name": "Foundational"
        },
        {
            "id": 3,
            "name": "CTZ Foundational — 1.0.0",
            "version": "1.0.0",
            "start_date": "2023-12-19T00:00:00.000000Z",
            "end_date": null,
            "status": "PASSED",
            "expired_at": null,
            "ctz_level_id": 1,
            "ctz_level_name": "Foundational"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/certification-bodies/v1/{organisation_id}/ctz-standard

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 6

page   integer  optional    

the page number to show. Example: 1

filter[name]   string  optional    

Filter column name by any accepted value. Filter by CTZ standard name Example: enim

filter[version]   integer  optional    

Filter column version by any accepted value. Filter by CTZ standard version Example: 4

filter[ctz_level_id]   integer  optional    

Filter column ctz_level_id by any accepted value. Filter by CTZ level ID Example: 6

filter[ctz_level_name]   string  optional    

Filter column ctz_level_name by any accepted value. Filter by CTZ level name Example: sit

filter[status]   string  optional    

Filter column status by any accepted value. Matches exact value. Example: FAILED

Must be one of:
  • FAILED
  • PASSED
filter[start_date]   datetime  optional    

Filter column start_date by any accepted value. Filter by start date of CTZ standard validity period Example: = 2026-05-27 16:14:54

filter[end_date]   datetime  optional    

Filter column end_date by any accepted value. Filter by end date of CTZ standard validity period Example: <= 2026-06-09 16:14:54

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. Filter by CTZ standard created date Example: = 2026-06-03 16:14:54

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. Filter by CTZ standard updated date Example: <= 2026-06-05 16:14:54

search   string  optional    

Search in all of these columns: name, version, ctz_level_name Example: reiciendis

sort   string  optional    

sort by any accepted column: name, version, status, ctz_level_id, ctz_level_name, start_date, end_date, created_at, updated_at. prefix a "-" before the column name to sort in descending order Example: name

column   string  optional    

get a distinct list of filterable values for any of the columns: name, ctz_level_id, ctz_level_name, version, status, start_date, end_date, created_at, updated_at. Example: name

MRSL Standard

List MRSL standards

requires authentication

Returns a paginated list of MRSL standards for this certification body.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/mrsl-standard?per_page=17&page=1&filter%5Bname%5D=facere&filter%5Bversion%5D=6&filter%5Bconformance_level_id%5D=8&filter%5Bconformance_level_name%5D=et&filter%5Bstatus%5D=FAILED&filter%5Bstart_date%5D=%3C+2026-05-26+16%3A14%3A54&filter%5Bend_date%5D=%3C+2026-06-03+16%3A14%3A54&filter%5Bcreated_at%5D=%3C+2026-06-10+16%3A14%3A54&filter%5Bupdated_at%5D=%3D+2026-06-18+16%3A14%3A54&search=voluptatum&sort=name&column=name" \
    --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/certification-bodies/v1/1/mrsl-standard"
);

const params = {
    "per_page": "17",
    "page": "1",
    "filter[name]": "facere",
    "filter[version]": "6",
    "filter[conformance_level_id]": "8",
    "filter[conformance_level_name]": "et",
    "filter[status]": "FAILED",
    "filter[start_date]": "< 2026-05-26 16:14:54",
    "filter[end_date]": "< 2026-06-03 16:14:54",
    "filter[created_at]": "< 2026-06-10 16:14:54",
    "filter[updated_at]": "= 2026-06-18 16:14:54",
    "search": "voluptatum",
    "sort": "name",
    "column": "name",
};
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,
            "reference_id": "30-HRBQFLXEEXU-K",
            "name": "Brachi Testing Services",
            "version": "ZDHC MRSL v2.0",
            "start_date": "2020-08-12T00:00:00.000000Z",
            "end_date": "2024-06-01T00:00:00.000000Z",
            "status": "PASSED",
            "expired_at": "2026-05-12T15:01:47.000000Z",
            "conformance_level_id": 1,
            "conformance_level_name": "Level 1"
        },
        {
            "id": 1,
            "reference_id": "30-HRBQFLXEEXU-K",
            "name": "Brachi Testing Services",
            "version": "ZDHC MRSL v2.0",
            "start_date": "2020-08-12T00:00:00.000000Z",
            "end_date": "2024-06-01T00:00:00.000000Z",
            "status": "PASSED",
            "expired_at": "2026-05-12T15:01:47.000000Z",
            "conformance_level_id": 1,
            "conformance_level_name": "Level 1"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/certification-bodies/v1/{organisation_id}/mrsl-standard

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 17

page   integer  optional    

the page number to show. Example: 1

filter[name]   string  optional    

Filter column name by any accepted value. Filter by MRSL standard name Example: facere

filter[version]   integer  optional    

Filter column version by any accepted value. Filter by MRSL standard version Example: 6

filter[conformance_level_id]   integer  optional    

Filter column conformance_level_id by any accepted value. Filter by conformance level ID Example: 8

filter[conformance_level_name]   string  optional    

Filter column conformance_level_name by any accepted value. Filter by conformance level name Example: et

filter[status]   string  optional    

Filter column status by any accepted value. Matches exact value. Example: FAILED

Must be one of:
  • FAILED
  • PASSED
filter[start_date]   datetime  optional    

Filter column start_date by any accepted value. Filter by start date of MRSL standard validity period Example: < 2026-05-26 16:14:54

filter[end_date]   datetime  optional    

Filter column end_date by any accepted value. Filter by end date of MRSL standard validity period Example: < 2026-06-03 16:14:54

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. Filter by MRSL standard created date Example: < 2026-06-10 16:14:54

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. Filter by MRSL standard updated date Example: = 2026-06-18 16:14:54

search   string  optional    

Search in all of these columns: name, version, conformance_level_name Example: voluptatum

sort   string  optional    

sort by any accepted column: name, version, status, conformance_level_id, conformance_level_name, start_date, end_date, created_at, updated_at. prefix a "-" before the column name to sort in descending order Example: name

column   string  optional    

get a distinct list of filterable values for any of the columns: name, conformance_level_id, conformance_level_name, version, status, start_date, end_date, created_at, updated_at. Example: name

Product Assignment

List product assignments

requires authentication

Returns a paginated list of product assignments for this certification body.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/product-assignment?per_page=2&page=1&filter%5Bproduct_id%5D=1&filter%5Bproduct_reference_id%5D=et&filter%5Bproduct_name%5D=non&filter%5Bproduct_alternate_names%5D=cumque&filter%5Bassignment_status%5D=UNDER_REVIEW&filter%5Bformulator_id%5D=9&filter%5Bformulator_reference_id%5D=recusandae&filter%5Bformulator_name%5D=rerum&filter%5Bmrsl_level_id%5D=15&filter%5Bctz_level_id%5D=11&filter%5Bassigned_at%5D=%3C+2026-06-12+16%3A14%3A54&filter%5Bupdated_at%5D=%3E%3D+2026-06-12+16%3A14%3A54&filter%5Bproduct_use_types_id%5D=10&filter%5Bproduct_categories_id%5D=10&search=atque&sort=id&column=id" \
    --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/certification-bodies/v1/1/product-assignment"
);

const params = {
    "per_page": "2",
    "page": "1",
    "filter[product_id]": "1",
    "filter[product_reference_id]": "et",
    "filter[product_name]": "non",
    "filter[product_alternate_names]": "cumque",
    "filter[assignment_status]": "UNDER_REVIEW",
    "filter[formulator_id]": "9",
    "filter[formulator_reference_id]": "recusandae",
    "filter[formulator_name]": "rerum",
    "filter[mrsl_level_id]": "15",
    "filter[ctz_level_id]": "11",
    "filter[assigned_at]": "< 2026-06-12 16:14:54",
    "filter[updated_at]": ">= 2026-06-12 16:14:54",
    "filter[product_use_types_id]": "10",
    "filter[product_categories_id]": "10",
    "search": "atque",
    "sort": "id",
    "column": "id",
};
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,
            "product_id": 1,
            "product_reference_id": "20-Z4289ZZUE9-W",
            "product_name": "A-POLE G-2 [P214AG76]",
            "product_description": null,
            "product_alternate_names": [
                "P214AG76"
            ],
            "formulator_id": 5905,
            "formulator_reference_id": "01-3SRBVESEWXG-W",
            "formulator_name": "Nicca Chemical Co., Ltd.",
            "assignment_status": null,
            "mrsl_level_id": null,
            "mrsl_level_name": null,
            "ctz_level_id": null,
            "ctz_level_name": null,
            "assigned_at": null,
            "updated_at": null
        },
        {
            "id": null,
            "product_id": 1,
            "product_reference_id": "20-Z4289ZZUE9-W",
            "product_name": "A-POLE G-2 [P214AG76]",
            "product_description": null,
            "product_alternate_names": [
                "P214AG76"
            ],
            "formulator_id": 5905,
            "formulator_reference_id": "01-3SRBVESEWXG-W",
            "formulator_name": "Nicca Chemical Co., Ltd.",
            "assignment_status": null,
            "mrsl_level_id": null,
            "mrsl_level_name": null,
            "ctz_level_id": null,
            "ctz_level_name": null,
            "assigned_at": null,
            "updated_at": 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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/certification-bodies/v1/{organisation_id}/product-assignment

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 2

page   integer  optional    

the page number to show. Example: 1

filter[product_id]   integer  optional    

Filter column product_id by any accepted value. Filter by product ID Example: 1

filter[product_reference_id]   string  optional    

Filter column product_reference_id by any accepted value. Filter by product reference ID Example: et

filter[product_name]   string  optional    

Filter column product_name by any accepted value. Filter by product name Example: non

filter[product_alternate_names]   string  optional    

Filter column product_alternate_names by any accepted value. Filter by product alternate names Example: cumque

filter[assignment_status]   string  optional    

Filter column assignment_status by any accepted value. Matches exact value. Example: UNDER_REVIEW

Must be one of:
  • UNDER_REVIEW
  • ACCEPTED
  • EXPIRED
  • DECLINED
filter[formulator_id]   integer  optional    

Filter column formulator_id by any accepted value. Filter by formulator (product owner organisation) ID Example: 9

filter[formulator_reference_id]   string  optional    

Filter column formulator_reference_id by any accepted value. Filter by formulator (product owner organisation) reference ID Example: recusandae

filter[formulator_name]   string  optional    

Filter column formulator_name by any accepted value. Filter by formulator (product owner organisation) name Example: rerum

filter[mrsl_level_id]   integer  optional    

Filter column mrsl_level_id by any accepted value. Filter by MRSL level IDs from assignment (pivot max conformance level) Example: 15

filter[ctz_level_id]   integer  optional    

Filter column ctz_level_id by any accepted value. Filter by CTZ level IDs from assignment (pivot max CTZ level) Example: 11

filter[assigned_at]   datetime  optional    

Filter column assigned_at by any accepted value. Filter by assignment created date Example: < 2026-06-12 16:14:54

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. Filter by assignment updated date Example: >= 2026-06-12 16:14:54

filter[product_use_types_id]   integer  optional    

Filter column product_use_types_id by any accepted value. Filter by use type ID (multiple selection allowed) Example: 10

filter[product_categories_id]   integer  optional    

Filter column product_categories_id by any accepted value. Filter by product category ID (multiple selection allowed) Example: 10

search   string  optional    

Search in all of these columns: product_id, product_reference_id, product_name, product_alternate_names, formulator_name, formulator_reference_id Example: atque

sort   string  optional    

sort by any accepted column: id, product_id, product_reference_id, product_name, product_description, product_alternate_names, formulator_id, formulator_reference_id, formulator_name, assignment_status, mrsl_level_id, mrsl_level_name, ctz_level_id, ctz_level_name, assigned_at, updated_at. prefix a "-" before the column name to sort in descending order Example: id

column   string  optional    

get a distinct list of filterable values for any of the columns: id, product_id, product_reference_id, product_name, product_description, product_alternate_names, formulator_id, formulator_reference_id, formulator_name, assignment_status, mrsl_level_id, mrsl_level_name, ctz_level_id, ctz_level_name, assigned_at, updated_at. Example: id

Update a product assignment's certifications

requires authentication

The certifications array in the request body is the complete desired state for this assignment. After a successful call, the assignment holds exactly those certifications (MRSL rows, and CTZ rows where applicable). Anything already stored on the assignment that is not included in the request is removed or deactivated server-side—omitting an existing certification therefore deletes it from the assignment's active set.

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/product-assignment/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"certifications\": [
        {
            \"mrsl_standard_id\": 1,
            \"ctz_standard_id\": 1,
            \"safety_data_sheet_id\": 1
        }
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/product-assignment/1"
);

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

let body = {
    "certifications": [
        {
            "mrsl_standard_id": 1,
            "ctz_standard_id": 1,
            "safety_data_sheet_id": 1
        }
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "assignment_status": "ACCEPTED",
        "product": {
            "id": 212878,
            "reference_id": "20-CRTLJRJLKP-O",
            "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
            "alternate_names": [
                "P397IA55"
            ],
            "description": null,
            "version": 1,
            "status": "PUBLISHED",
            "formulator": {
                "id": 6267,
                "name": "Meghmani Dyes and Intermediates LLP",
                "reference_id": "01-76N8M6UUCZG-Y"
            },
            "safety_data_sheets": [
                {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                }
            ],
            "sds_url": null,
            "website_url": null
        },
        "current_max_mrsl_certification": {
            "id": 15779,
            "mrsl_standard": {
                "id": 281,
                "reference_id": "30-MX97SXPN7QK-T",
                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                "version": "ZDHC MRSL v3.1",
                "start_date": "2020-03-20T00:00:00.000000Z",
                "end_date": "2198-08-31T00:00:00.000000Z",
                "status": "PASSED",
                "expired_at": null,
                "conformance_level_id": 3,
                "conformance_level_name": "Level 3"
            },
            "safety_data_sheet": {
                "id": 84327,
                "file_name": "MSDS YELLOW RNL 150%.pdf",
                "version": 1,
                "locale": "en",
                "uploaded_by": {
                    "id": 6267,
                    "name": "Meghmani Dyes and Intermediates LLP",
                    "reference_id": "01-76N8M6UUCZG-Y"
                },
                "file_url": null
            },
            "status": "ACTIVE",
            "valid_until": null,
            "expired_at": null
        },
        "current_max_ctz_certification": null,
        "mrsl_certifications": [
            {
                "id": 1,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 308,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 553,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 15779,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2027-01-31T00:00:00.000000Z",
                "expired_at": null
            },
            {
                "id": 98662,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-01-31T00:00:00.000000Z",
                "expired_at": "2025-01-31T23:59:59.000000Z"
            },
            {
                "id": 224448,
                "mrsl_standard": {
                    "id": 243,
                    "reference_id": "30-MX97SE4TFV6-Z",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v2.0",
                    "start_date": "2017-12-05T00:00:00.000000Z",
                    "end_date": "2024-06-01T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": "2026-05-12T15:01:47.000000Z",
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2024-01-31T00:00:00.000000Z",
                "expired_at": "2024-01-31T23:59:59.000000Z"
            }
        ],
        "ctz_certifications": [
            {
                "id": 265324,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null
            },
            {
                "id": 274036,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null
            },
            {
                "id": 274037,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null
            },
            {
                "id": 274038,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null
            },
            {
                "id": 550773,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2026-03-06T00:00:00.000000Z",
                "expired_at": "2026-03-06T23:59:59.000000Z"
            },
            {
                "id": 658121,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z"
            },
            {
                "id": 658122,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z"
            },
            {
                "id": 658123,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z"
            },
            {
                "id": 658857,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z"
            },
            {
                "id": 658858,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z"
            },
            {
                "id": 658859,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z"
            }
        ],
        "assigned_at": "2026-05-14T19:42:10.000000Z",
        "updated_at": "2026-05-14T19:42:10.000000Z"
    }
}
 

Request      

PUT api/certification-bodies/v1/{organisation_id}/product-assignment/{id}

PATCH api/certification-bodies/v1/{organisation_id}/product-assignment/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product assignment. Example: 1

Body Parameters

certifications   object[]  optional    

Array of certifications to update. Always a combination of MRSL+Safety Data Sheet or CTZ+Safety Data Sheet.

mrsl_standard_id   integer  optional    

MRSL standard ID (integer, must exist in the database and be assigned to the requesting certification body). Example: 1

ctz_standard_id   integer  optional    

CTZ standard ID (integer, must exist in the database and be assigned to the requesting certification body). Note that the the assignment must have an MRSL certification with a conformance level of at least Level 2 from the same certification body trying to create the CTZ certification. The ctz_standard_id of an existing record in the ctz_standard_organisation table. Example: 1

safety_data_sheet_id   integer     

Safety data sheet ID (integer, must exist in the database). This will be the safety data sheet the certifications are based on. The id of an existing record in the safety_data_sheets table. Example: 1

Bulk-update product assignments

requires authentication

Each element of certifications includes an assignment_id (product assignment row for this CB). Rows are grouped by that id: for each assignment, the rows with matching assignment_id form the complete desired state for that assignment only. After the call, each touched assignment holds exactly those certifications (same replace semantics as the single update endpoint).

The response data is a summary object (counts and IDs), not a product-assignment API resource collection.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/product-assignment/bulk-update" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"certifications\": [
        {
            \"assignment_id\": 1,
            \"mrsl_standard_id\": 1,
            \"ctz_standard_id\": 1,
            \"safety_data_sheet_id\": 1
        }
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/product-assignment/bulk-update"
);

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

let body = {
    "certifications": [
        {
            "assignment_id": 1,
            "mrsl_standard_id": 1,
            "ctz_standard_id": 1,
            "safety_data_sheet_id": 1
        }
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, All submitted IDs were eligible and are now updated.):


{
    "message": "Product assignments updated successfully",
    "data": {
        "submitted_count": 2,
        "updated_count": 2,
        "updated_ids": [
            101,
            102
        ],
        "not_updateable_count": 0,
        "errors": []
    }
}
 

Example response (200, Some submitted IDs could not be updated (e.g. declined between validation and persistence); those IDs appear under `errors`. Same response shape as full success.):


{
    "message": "Product assignments partially updated",
    "data": {
        "submitted_count": 2,
        "updated_count": 1,
        "updated_ids": [
            101
        ],
        "not_updateable_count": 1,
        "errors": [
            {
                "assignment_id": 102,
                "error": "Product assignment is already declined"
            }
        ]
    }
}
 

Request      

POST api/certification-bodies/v1/{organisation_id}/product-assignment/bulk-update

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

certifications   object[]  optional    

Array of certification rows. Each row includes assignment_id (product assignment for this certification body). MRSL and/or CTZ fields apply to that assignment only.

assignment_id   integer     

Assignment ID (integer, must exist in the database) and be assigned to the requesting certification body) wich you want to certify. Example: 1

mrsl_standard_id   integer  optional    

MRSL standard ID (integer, must exist in the database and be assigned to the requesting certification body). Example: 1

ctz_standard_id   integer  optional    

CTZ standard ID (integer, must exist in the database and be assigned to the requesting certification body). Note that the the assignment must have an MRSL certification with a conformance level of at least Level 2 from the same certification body trying to create the CTZ certification. Example: 1

safety_data_sheet_id   integer     

Safety data sheet ID (integer, must exist in the database). This will be the safety data sheet the certifications are based on. Example: 1

Decline a product assignment

requires authentication

Marks the assignment identified in the URL as declined for this certification body.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/product-assignment/1/decline" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"reason\": \"Unable to process at this time.\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/product-assignment/1/decline"
);

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

let body = {
    "reason": "Unable to process at this time."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "assignment_status": "ACCEPTED",
        "product": {
            "id": 212878,
            "reference_id": "20-CRTLJRJLKP-O",
            "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
            "alternate_names": [
                "P397IA55"
            ],
            "description": null,
            "version": 1,
            "status": "PUBLISHED",
            "formulator": {
                "id": 6267,
                "name": "Meghmani Dyes and Intermediates LLP",
                "reference_id": "01-76N8M6UUCZG-Y"
            },
            "safety_data_sheets": [
                {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                }
            ],
            "sds_url": null,
            "website_url": null
        },
        "current_max_mrsl_certification": {
            "id": 15779,
            "mrsl_standard": {
                "id": 281,
                "reference_id": "30-MX97SXPN7QK-T",
                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                "version": "ZDHC MRSL v3.1",
                "start_date": "2020-03-20T00:00:00.000000Z",
                "end_date": "2198-08-31T00:00:00.000000Z",
                "status": "PASSED",
                "expired_at": null,
                "conformance_level_id": 3,
                "conformance_level_name": "Level 3"
            },
            "safety_data_sheet": {
                "id": 84327,
                "file_name": "MSDS YELLOW RNL 150%.pdf",
                "version": 1,
                "locale": "en",
                "uploaded_by": {
                    "id": 6267,
                    "name": "Meghmani Dyes and Intermediates LLP",
                    "reference_id": "01-76N8M6UUCZG-Y"
                },
                "file_url": null
            },
            "status": "ACTIVE",
            "valid_until": null,
            "expired_at": null
        },
        "current_max_ctz_certification": null,
        "mrsl_certifications": [
            {
                "id": 1,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 308,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 553,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 15779,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2027-01-31T00:00:00.000000Z",
                "expired_at": null
            },
            {
                "id": 98662,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-01-31T00:00:00.000000Z",
                "expired_at": "2025-01-31T23:59:59.000000Z"
            },
            {
                "id": 224448,
                "mrsl_standard": {
                    "id": 243,
                    "reference_id": "30-MX97SE4TFV6-Z",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v2.0",
                    "start_date": "2017-12-05T00:00:00.000000Z",
                    "end_date": "2024-06-01T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": "2026-05-12T15:01:47.000000Z",
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2024-01-31T00:00:00.000000Z",
                "expired_at": "2024-01-31T23:59:59.000000Z"
            }
        ],
        "ctz_certifications": [
            {
                "id": 265324,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null
            },
            {
                "id": 274036,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null
            },
            {
                "id": 274037,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null
            },
            {
                "id": 274038,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null
            },
            {
                "id": 550773,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2026-03-06T00:00:00.000000Z",
                "expired_at": "2026-03-06T23:59:59.000000Z"
            },
            {
                "id": 658121,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z"
            },
            {
                "id": 658122,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z"
            },
            {
                "id": 658123,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z"
            },
            {
                "id": 658857,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z"
            },
            {
                "id": 658858,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z"
            },
            {
                "id": 658859,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z"
            }
        ],
        "assigned_at": "2026-05-14T19:42:10.000000Z",
        "updated_at": "2026-05-14T19:42:10.000000Z"
    }
}
 

Request      

POST api/certification-bodies/v1/{organisation_id}/product-assignment/{product_assignment_id}/decline

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

product_assignment_id   integer     

The ID of the product assignment. Example: 1

Body Parameters

reason   string     

Decline reason. Must not be greater than 255 characters. Example: Unable to process at this time.

Bulk-decline product assignments

requires authentication

Marks several assignments as declined in one request. Assignments that are already declined are skipped.

The response data is a summary object (counts and IDs), not a product-assignment API resource collection.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/product-assignment/bulk-decline" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"assignment_ids\": [
        101
    ],
    \"reason\": \"Unable to process at this time.\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/product-assignment/bulk-decline"
);

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

let body = {
    "assignment_ids": [
        101
    ],
    "reason": "Unable to process at this time."
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, All submitted IDs were eligible and are now declined.):


{
    "message": "Product assignments declined successfully",
    "data": {
        "submitted_count": 2,
        "declined_count": 2,
        "declined_ids": [
            101,
            102
        ],
        "already_declined_count": 0,
        "already_declined_ids": []
    }
}
 

Example response (200, Some IDs were already declined; they are listed under `already_declined_ids` (same response shape).):


{
    "message": "Product assignments partially declined",
    "data": {
        "submitted_count": 2,
        "declined_count": 1,
        "declined_ids": [
            101
        ],
        "already_declined_count": 1,
        "already_declined_ids": [
            102
        ]
    }
}
 

Request      

POST api/certification-bodies/v1/{organisation_id}/product-assignment/bulk-decline

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

assignment_ids   integer[]     

Single assignment ID (integer, distinct, must exist in the the database and be assigned to the requesting certification body).

reason   string     

Shared decline reason for every assignment that changes state. Must not be greater than 255 characters. Example: Unable to process at this time.

Get a product assignment

requires authentication

Returns one assignment, including related certification and product data.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/product-assignment/1" \
    --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/certification-bodies/v1/1/product-assignment/1"
);

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,
        "assignment_status": "ACCEPTED",
        "product": {
            "id": 212878,
            "reference_id": "20-CRTLJRJLKP-O",
            "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
            "alternate_names": [
                "P397IA55"
            ],
            "description": null,
            "version": 1,
            "status": "PUBLISHED",
            "formulator": {
                "id": 6267,
                "name": "Meghmani Dyes and Intermediates LLP",
                "reference_id": "01-76N8M6UUCZG-Y"
            },
            "safety_data_sheets": [
                {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                }
            ],
            "sds_url": null,
            "website_url": null
        },
        "current_max_mrsl_certification": {
            "id": 15779,
            "mrsl_standard": {
                "id": 281,
                "reference_id": "30-MX97SXPN7QK-T",
                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                "version": "ZDHC MRSL v3.1",
                "start_date": "2020-03-20T00:00:00.000000Z",
                "end_date": "2198-08-31T00:00:00.000000Z",
                "status": "PASSED",
                "expired_at": null,
                "conformance_level_id": 3,
                "conformance_level_name": "Level 3"
            },
            "safety_data_sheet": {
                "id": 84327,
                "file_name": "MSDS YELLOW RNL 150%.pdf",
                "version": 1,
                "locale": "en",
                "uploaded_by": {
                    "id": 6267,
                    "name": "Meghmani Dyes and Intermediates LLP",
                    "reference_id": "01-76N8M6UUCZG-Y"
                },
                "file_url": null
            },
            "status": "ACTIVE",
            "valid_until": null,
            "expired_at": null
        },
        "current_max_ctz_certification": null,
        "mrsl_certifications": [
            {
                "id": 1,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 308,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 553,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 15779,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2027-01-31T00:00:00.000000Z",
                "expired_at": null
            },
            {
                "id": 98662,
                "mrsl_standard": {
                    "id": 281,
                    "reference_id": "30-MX97SXPN7QK-T",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v3.1",
                    "start_date": "2020-03-20T00:00:00.000000Z",
                    "end_date": "2198-08-31T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": null,
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-01-31T00:00:00.000000Z",
                "expired_at": "2025-01-31T23:59:59.000000Z"
            },
            {
                "id": 224448,
                "mrsl_standard": {
                    "id": 243,
                    "reference_id": "30-MX97SE4TFV6-Z",
                    "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                    "version": "ZDHC MRSL v2.0",
                    "start_date": "2017-12-05T00:00:00.000000Z",
                    "end_date": "2024-06-01T00:00:00.000000Z",
                    "status": "PASSED",
                    "expired_at": "2026-05-12T15:01:47.000000Z",
                    "conformance_level_id": 3,
                    "conformance_level_name": "Level 3"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2024-01-31T00:00:00.000000Z",
                "expired_at": "2024-01-31T23:59:59.000000Z"
            }
        ],
        "ctz_certifications": [
            {
                "id": 265324,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null
            },
            {
                "id": 274036,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null
            },
            {
                "id": 274037,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null
            },
            {
                "id": 274038,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null
            },
            {
                "id": 550773,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2026-03-06T00:00:00.000000Z",
                "expired_at": "2026-03-06T23:59:59.000000Z"
            },
            {
                "id": 658121,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z"
            },
            {
                "id": 658122,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z"
            },
            {
                "id": 658123,
                "ctz_standard": {
                    "id": 4,
                    "name": "CTZ Prov. Progressive — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 2,
                    "ctz_level_name": "Prov. Progressive"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z"
            },
            {
                "id": 658857,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z"
            },
            {
                "id": 658858,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z"
            },
            {
                "id": 658859,
                "ctz_standard": {
                    "id": 3,
                    "name": "CTZ Foundational — 1.0.0",
                    "version": "1.0.0",
                    "start_date": "2023-12-19T00:00:00.000000Z",
                    "end_date": null,
                    "status": "PASSED",
                    "expired_at": null,
                    "ctz_level_id": 1,
                    "ctz_level_name": "Foundational"
                },
                "safety_data_sheet": {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "version": 1,
                    "locale": "en",
                    "uploaded_by": {
                        "id": 6267,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "reference_id": "01-76N8M6UUCZG-Y"
                    },
                    "file_url": null
                },
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z"
            }
        ],
        "assigned_at": "2026-05-14T19:42:10.000000Z",
        "updated_at": "2026-05-14T19:42:10.000000Z"
    }
}
 

Request      

GET api/certification-bodies/v1/{organisation_id}/product-assignment/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product assignment. Example: 1

Download a safety data sheet

requires authentication

Returns the SDS file for the chemical product linked to the given assignment.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/certification-bodies/v1/1/product-assignment/impedit/safety-data-sheet/1" \
    --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/certification-bodies/v1/1/product-assignment/impedit/safety-data-sheet/1"
);

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):


file
 

Request      

GET api/certification-bodies/v1/{organisation_id}/product-assignment/{product_assignment_id}/safety-data-sheet/{safetyDataSheet_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

product_assignment_id   string     

The ID of the product assignment. Example: impedit

safetyDataSheet_id   integer     

The ID of the safetyDataSheet. Example: 1

Chemical

Chemcheck Report

Show

requires authentication

Show the chemcheck report as a pdf

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/1/chemcheck-report" \
    --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/organisation/1/chemical/product/1/chemcheck-report"
);

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):


content of the pdf
 

Request      

GET api/organisation/{organisation_id}/chemical/product/{product_id}/chemcheck-report

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

product_id   integer     

The ID of the product. Example: 1

Chemcheck Summary Report

Show

requires authentication

Show the ChemCheck Summary report as a PDF.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/chemcheck-summary-report/1" \
    --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/organisation/1/chemical/chemcheck-summary-report/1"
);

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):


content of the pdf
 

Request      

GET api/organisation/{organisation_id}/chemical/chemcheck-summary-report/{subject_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

subject_id   integer     

The ID of the subject. Example: 1

Activity logs

Index

requires authentication

List available activity logs for chemical actions

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/activity-logs?sort=context-%3Eproduct_id&filter%5Bproduct_id%5D=20&filter%5Bproduct_reference_id%5D=totam&filter%5Bmrsl_standard_name%5D=voluptatem&filter%5Bmrsl_standard_reference_id%5D=voluptate&filter%5Bctz_standard_name%5D=voluptatem&filter%5Baction_type%5D=iure&filter%5Buser_name%5D=perspiciatis&filter%5Bcreated_at%5D=fugit&column=context-%3Eproduct_id&search=error&page=1&per_page=14" \
    --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/organisation/1/chemical/product/activity-logs"
);

const params = {
    "sort": "context->product_id",
    "filter[product_id]": "20",
    "filter[product_reference_id]": "totam",
    "filter[mrsl_standard_name]": "voluptatem",
    "filter[mrsl_standard_reference_id]": "voluptate",
    "filter[ctz_standard_name]": "voluptatem",
    "filter[action_type]": "iure",
    "filter[user_name]": "perspiciatis",
    "filter[created_at]": "fugit",
    "column": "context->product_id",
    "search": "error",
    "page": "1",
    "per_page": "14",
};
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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 82
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/organisation/{organisation_id}/chemical/product/activity-logs

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

sort   string  optional    

sort by any accepted column: context->product_id, context->product_name, context->mrsl_standard_name, context->ctz_standard_name, context->action_type, context->user_name, context->organisation_id, message, created_at. prefix a "-" before the column name to sort in descending order Example: context->product_id

filter[product_id]   integer  optional    

Filter column product_id by any accepted value. Filter by product ID Example: 20

filter[product_reference_id]   string  optional    

Filter column product_reference_id by any accepted value. Filter by product reference ID Example: totam

filter[mrsl_standard_name]   string  optional    

Filter column mrsl_standard_name by any accepted value. Filter by MRSL standard name Example: voluptatem

filter[mrsl_standard_reference_id]   string  optional    

Filter column mrsl_standard_reference_id by any accepted value. Filter by MRSL standard reference ID Example: voluptate

filter[ctz_standard_name]   string  optional    

Filter column ctz_standard_name by any accepted value. Filter by CTZ standard name Example: voluptatem

filter[action_type]   string  optional    

Filter column action_type by any accepted value. Filter by action type Example: iure

filter[user_name]   string  optional    

Filter column user_name by any accepted value. Filter by user name Example: perspiciatis

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. Filter by created date Example: fugit

column   string  optional    

get a distinct list of filterable values for any of the columns: context->product_id, context->product_reference_id, context->product_name, context->mrsl_standard_name, context->mrsl_standard_reference_id, context->ctz_standard_name, context->action_type, context->user_name, context->organisation_id, message, created_at. Example: context->product_id

search   string  optional    

Search in all of these columns: message Example: error

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 14

Inventory

Bulk Store

requires authentication

Create or update one or more chemical inventories and their products in a single request.

Inventories can only be submitted or modified within 45 days after the end of the reporting month. The submission window closes at the end of that period (the last eligible day is 45 days after the month ends).

For example, for April 2026 (reporting month ending 30 April 2026), the window closes on 14 June 2026. Requests for a reporting period after this date are rejected.

When the window has closed, the API responds with 422 Unprocessable Entity and a message such as: The deadline for submitting or modifying inventory for April 2026 has passed. Solution providers should surface this error to suppliers so they understand that resubmission is no longer possible for that period.

Inventories for a future reporting month are also rejected with 422 (The inventory date cannot be in the future.).

If a supplier takes no action on a submitted inventory within 45 days, the Performance InCheck is automatically published without requiring explicit supplier approval. This affects how solution providers should design polling and notification logic around submitted inventories awaiting supplier review.

Solution providers do not need to implement custom timeouts or trigger publish themselves — the platform runs a daily job that auto-publishes eligible inventories. Monitor inventory status via the API instead of enforcing your own deadline.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/bulk/store" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"inventories\": [
        {
            \"year\": 5,
            \"month\": 4,
            \"submit\": false,
            \"type\": \"unspecified\",
            \"products\": [
                {
                    \"chemical_product_id\": 19,
                    \"formulator_name\": \"qscany\",
                    \"name\": \"esse\",
                    \"weight\": 72
                }
            ]
        }
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/bulk/store"
);

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

let body = {
    "inventories": [
        {
            "year": 5,
            "month": 4,
            "submit": false,
            "type": "unspecified",
            "products": [
                {
                    "chemical_product_id": 19,
                    "formulator_name": "qscany",
                    "name": "esse",
                    "weight": 72
                }
            ]
        }
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/organisation/{organisation_reference_id}/chemical/inventory/bulk/store

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

Body Parameters

inventories   object[]     
year   integer     

Must be at least 2000. Must not be greater than 2100. Example: 5

month   integer     

Must be at least 1. Must not be greater than 12. Example: 4

submit   boolean  optional    

Example: false

type   string  optional    

Example: unspecified

Must be one of:
  • usage
  • delivery
  • unspecified
products   object[]  optional    
chemical_product_id   integer  optional    

This field is required when inventories..products..name or inventories..products..formulator_name is not present. The id of an existing record in the chemical_products table. Example: 19

formulator_name   string  optional    

This field is required when inventories..products..chemical_product_id is not present. Must not be greater than 255 characters. Example: qscany

name   string  optional    

This field is required when inventories..products..chemical_product_id is not present. Example: esse

weight   number     

Must be at least 0. Example: 72

Index

requires authentication

Show chemical inventories

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory?per_page=5&filter%5Bsupplier_id%5D=12&filter%5Byear%5D=14&filter%5Bmonth%5D=17&filter%5Bstatus%5D=tenetur&filter%5Breference_id%5D=inventore&sort=year&page=1" \
    --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/organisation/1/chemical/inventory"
);

const params = {
    "per_page": "5",
    "filter[supplier_id]": "12",
    "filter[year]": "14",
    "filter[month]": "17",
    "filter[status]": "tenetur",
    "filter[reference_id]": "inventore",
    "sort": "year",
    "page": "1",
};
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,
            "reference_id": "40-4SLWVAK6HPG-B",
            "submitting_user_id": null,
            "submitting_organisation_id": null,
            "supplier_id": 13680,
            "period": "2019-05-01T00:00:00.000000Z",
            "type": "unspecified",
            "status": "published",
            "auto_published": 0,
            "published_at": "2020-08-07T00:00:00.000000Z",
            "submitted_at": "2020-08-07T00:00:00.000000Z",
            "declined_at": null,
            "declined_reason": null,
            "declined_additional_info": null,
            "created_at": "2026-05-19T08:41:21.000000Z",
            "updated_at": "2026-05-19T09:32:48.000000Z",
            "expected_expiration": "2020-09-20T23:59:59.999999Z",
            "publishable": false,
            "published_inventory": {
                "id": 1,
                "level": {
                    "id": 2,
                    "name": "Level 1",
                    "created_at": "2026-05-08T21:42:24.000000Z",
                    "updated_at": "2026-05-19T11:35:13.000000Z"
                }
            },
            "organisation": {
                "id": 13680,
                "maxio_customer_id": 315360,
                "reference_id": "01-S27UGVEFKZ9-Q",
                "pdc_id": null,
                "gateway_aid": "A419RY42",
                "uuid": "49d6452f-9cce-4ecc-a841-29a69647b810",
                "type_id": 2,
                "status": "approved",
                "name": "Combined Fabrics Ltd",
                "legal_name": "Combined Fabrics Ltd",
                "address_1": "Atta Buksh Road (off Bank Stop) 17 KM Ferozpur Road Lahore",
                "address_2": null,
                "city": "Lahore",
                "state": "Punjab",
                "location": "PK",
                "zip": "54760",
                "phone": "009242111266246",
                "email": "raja.naukhaiz@combinedfabrics.com",
                "contact_first_name": "Waleed Yousaf",
                "contact_last_name": "Butt",
                "website": "https://www.combinedfabrics.com",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2018-05-08T06:00:48.000000Z",
                "updated_at": "2026-05-12T15:36:12.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Pakistan"
            }
        },
        {
            "id": 1,
            "reference_id": "40-4SLWVAK6HPG-B",
            "submitting_user_id": null,
            "submitting_organisation_id": null,
            "supplier_id": 13680,
            "period": "2019-05-01T00:00:00.000000Z",
            "type": "unspecified",
            "status": "published",
            "auto_published": 0,
            "published_at": "2020-08-07T00:00:00.000000Z",
            "submitted_at": "2020-08-07T00:00:00.000000Z",
            "declined_at": null,
            "declined_reason": null,
            "declined_additional_info": null,
            "created_at": "2026-05-19T08:41:21.000000Z",
            "updated_at": "2026-05-19T09:32:48.000000Z",
            "expected_expiration": "2020-09-20T23:59:59.999999Z",
            "publishable": false,
            "published_inventory": {
                "id": 1,
                "level": {
                    "id": 2,
                    "name": "Level 1",
                    "created_at": "2026-05-08T21:42:24.000000Z",
                    "updated_at": "2026-05-19T11:35:13.000000Z"
                }
            },
            "organisation": {
                "id": 13680,
                "maxio_customer_id": 315360,
                "reference_id": "01-S27UGVEFKZ9-Q",
                "pdc_id": null,
                "gateway_aid": "A419RY42",
                "uuid": "49d6452f-9cce-4ecc-a841-29a69647b810",
                "type_id": 2,
                "status": "approved",
                "name": "Combined Fabrics Ltd",
                "legal_name": "Combined Fabrics Ltd",
                "address_1": "Atta Buksh Road (off Bank Stop) 17 KM Ferozpur Road Lahore",
                "address_2": null,
                "city": "Lahore",
                "state": "Punjab",
                "location": "PK",
                "zip": "54760",
                "phone": "009242111266246",
                "email": "raja.naukhaiz@combinedfabrics.com",
                "contact_first_name": "Waleed Yousaf",
                "contact_last_name": "Butt",
                "website": "https://www.combinedfabrics.com",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2018-05-08T06:00:48.000000Z",
                "updated_at": "2026-05-12T15:36:12.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Pakistan"
            }
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/organisation/{organisation_reference_id}/chemical/inventory

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 5

filter[supplier_id]   integer  optional    

Filter column supplier_id by any accepted value. Matches part of the value. Example: 12

filter[year]   integer  optional    

Filter column year by any accepted value. Matches part of the value. Example: 14

filter[month]   integer  optional    

Filter column month by any accepted value. Matches part of the value. Example: 17

filter[status]   string  optional    

Filter column status by any accepted value. Matches part of the value. Example: tenetur

filter[reference_id]   string  optional    

Filter column reference_id by any accepted value. Matches part of the value. Example: inventore

filter[submitting_organisation.name]   string  optional    

Filter column submitting_organisation.name by any accepted value. Matches part of the value. Example: dolor

filter[organisations.name]   string  optional    

Filter column organisations.name by any accepted value. Matches part of the value. Example: nihil

filter[organisations.reference_id]   string  optional    

Filter column organisations.reference_id by any accepted value. Matches part of the value. Example: eos

filter[incheck_levels.name]   string  optional    

Filter column incheck_levels.name by any accepted value. Matches part of the value. Example: fugiat

sort   string  optional    

sort by any accepted column: year, month, status, reference_id, submitting_organisation_name, incheck_level_name, products_count, organisations.name, organisations.reference_id. prefix a "-" before the column name to sort in descending order Example: year

page   integer  optional    

the page number to show. Example: 1

Store

requires authentication

Store a new chemical inventory

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"year\": 20,
    \"month\": 6,
    \"submit\": true,
    \"type\": \"unspecified\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory"
);

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

let body = {
    "year": 20,
    "month": 6,
    "submit": true,
    "type": "unspecified"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/organisation/{organisation_reference_id}/chemical/inventory

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

Body Parameters

year   integer     

Must be at least 2000. Must not be greater than 2100. Example: 20

month   integer     

Must be at least 1. Must not be greater than 12. Example: 6

submit   boolean  optional    

Example: true

type   string  optional    

Example: unspecified

Must be one of:
  • usage
  • delivery
  • unspecified

Update

requires authentication

Update an existing chemical inventory

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"year\": 16,
    \"month\": 5,
    \"submit\": false,
    \"type\": \"unspecified\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/1"
);

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

let body = {
    "year": 16,
    "month": 5,
    "submit": false,
    "type": "unspecified"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/organisation/{organisation_reference_id}/chemical/inventory/{id}

PATCH api/organisation/{organisation_reference_id}/chemical/inventory/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

id   integer     

The ID of the inventory. Example: 1

Body Parameters

year   integer     

Must be at least 2000. Must not be greater than 2100. Example: 16

month   integer     

Must be at least 1. Must not be greater than 12. Example: 5

submit   boolean  optional    

Example: false

type   string  optional    

Example: unspecified

Must be one of:
  • usage
  • delivery
  • unspecified

Decline

requires authentication

Decline a chemical inventory

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/1/decline" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"reason\": \"Non-compliance with MRSL requirements\",
    \"additional_info\": \"officiis\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/1/decline"
);

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

let body = {
    "reason": "Non-compliance with MRSL requirements",
    "additional_info": "officiis"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/organisation/{organisation_reference_id}/chemical/inventory/{inventory_id}/decline

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

inventory_id   integer     

The ID of the inventory. Example: 1

Body Parameters

reason   string     

Example: Non-compliance with MRSL requirements

Must be one of:
  • Data inaccuracy detected
  • Incomplete product information
  • Non-compliance with MRSL requirements
  • Missing supporting documentation
  • Duplicate submission
  • Out of reporting period scope
  • Other (please specify below)
additional_info   string  optional    

Example: officiis

Publish

requires authentication

Publish a chemical inventory. Only one report can be published per month. Higher-level reports can upgrade (replace) lower-level published reports.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/1/publish" \
    --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/organisation/1/chemical/inventory/1/publish"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/organisation/{organisation_reference_id}/chemical/inventory/{inventory_id}/publish

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

inventory_id   integer     

The ID of the inventory. Example: 1

Inventory Product

Index

requires authentication

List all products of a given inventory

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/et/product?per_page=6&search=quia&page=1" \
    --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/organisation/1/chemical/inventory/et/product"
);

const params = {
    "per_page": "6",
    "search": "quia",
    "page": "1",
};
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,
            "supplier_chemical_inventory_id": 1,
            "chemical_product_id": null,
            "formulator_name": "",
            "weight": 0,
            "name": "[No product name] #584543",
            "created_at": "2026-05-19T08:41:21.000000Z",
            "updated_at": "2026-05-19T08:41:21.000000Z",
            "original_product": null
        },
        {
            "id": 1,
            "supplier_chemical_inventory_id": 1,
            "chemical_product_id": null,
            "formulator_name": "",
            "weight": 0,
            "name": "[No product name] #584543",
            "created_at": "2026-05-19T08:41:21.000000Z",
            "updated_at": "2026-05-19T08:41:21.000000Z",
            "original_product": 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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/organisation/{organisation_reference_id}/chemical/inventory/{supplier_inventory_id}/product

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

supplier_inventory_id   string     

The ID of the supplier inventory. Example: et

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 6

search   string  optional    

Search in all of these columns: name Example: quia

page   integer  optional    

the page number to show. Example: 1

Store

requires authentication

Store a custom product

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/enim/product" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"chemical_product_id\": 8,
    \"formulator_name\": \"oxkewkjkmdpnvlcppwwozx\",
    \"name\": \"laboriosam\",
    \"weight\": 57
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/enim/product"
);

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

let body = {
    "chemical_product_id": 8,
    "formulator_name": "oxkewkjkmdpnvlcppwwozx",
    "name": "laboriosam",
    "weight": 57
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/organisation/{organisation_reference_id}/chemical/inventory/{supplier_inventory_id}/product

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

supplier_inventory_id   string     

The ID of the supplier inventory. Example: enim

Body Parameters

chemical_product_id   integer  optional    

This field is required when name or formulator_name is not present. The id of an existing record in the chemical_products table. Example: 8

formulator_name   string  optional    

This field is required when chemical_product_id is not present. Must not be greater than 255 characters. Example: oxkewkjkmdpnvlcppwwozx

name   string  optional    

This field is required when chemical_product_id is not present. Example: laboriosam

weight   number     

Numeric weight. Must be zero or greater, with at most 2 decimal places (e.g. 1.5, 10, 0.25). Must be at least 0. Example: 57

Update

requires authentication

Update a custom product

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/iure/product/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"chemical_product_id\": 20,
    \"formulator_name\": \"dybydygzrstifhe\",
    \"name\": \"enim\",
    \"weight\": 84
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/iure/product/1"
);

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

let body = {
    "chemical_product_id": 20,
    "formulator_name": "dybydygzrstifhe",
    "name": "enim",
    "weight": 84
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/organisation/{organisation_reference_id}/chemical/inventory/{supplier_inventory_id}/product/{id}

PATCH api/organisation/{organisation_reference_id}/chemical/inventory/{supplier_inventory_id}/product/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

supplier_inventory_id   string     

The ID of the supplier inventory. Example: iure

id   integer     

The ID of the product. Example: 1

Body Parameters

chemical_product_id   integer  optional    

This field is required when name or formulator_name is not present. The id of an existing record in the chemical_products table. Example: 20

formulator_name   string  optional    

This field is required when chemical_product_id is not present. Must not be greater than 255 characters. Example: dybydygzrstifhe

name   string  optional    

This field is required when chemical_product_id is not present. Example: enim

weight   number     

Numeric weight. Must be zero or greater, with at most 2 decimal places (e.g. 1.5, 10, 0.25). Must be at least 0. Example: 84

Destroy

requires authentication

Destroy a custom product

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/inventory/perferendis/product/1" \
    --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/organisation/1/chemical/inventory/perferendis/product/1"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/organisation/{organisation_reference_id}/chemical/inventory/{supplier_inventory_id}/product/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

supplier_inventory_id   string     

The ID of the supplier inventory. Example: perferendis

id   integer     

The ID of the product. Example: 1

Product

Index

requires authentication

Get Products

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product?per_page=2&page=1&filter%5Bconformance_level_id%5D=19&filter%5Bctz_level_id%5D=1&search=sunt&sort=chemical_products.id&column=chemical_products.id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"filter\": {
        \"name\": \"kzkuvslrptbavkrrdeud\",
        \"organisations__dot__3VgoU1G8AH8ljIWTname\": \"shpxztpiwrcnsngdzyvucurxthaedonqrxvktpocthyckbdprovo\"
    },
    \"search\": \"svlwxbrzyxvsiztfoebkrhyhehtyrdaowctf\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product"
);

const params = {
    "per_page": "2",
    "page": "1",
    "filter[conformance_level_id]": "19",
    "filter[ctz_level_id]": "1",
    "search": "sunt",
    "sort": "chemical_products.id",
    "column": "chemical_products.id",
};
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",
};

let body = {
    "filter": {
        "name": "kzkuvslrptbavkrrdeud",
        "organisations__dot__3VgoU1G8AH8ljIWTname": "shpxztpiwrcnsngdzyvucurxthaedonqrxvktpocthyckbdprovo"
    },
    "search": "svlwxbrzyxvsiztfoebkrhyhehtyrdaowctf"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": [
        {
            "id": 1,
            "reference_id": "20-Z4289ZZUE9-W",
            "organisation_id": 5905,
            "zdhc_pid": 367089,
            "name": "A-POLE G-2 [P214AG76]",
            "version": 1,
            "description": null,
            "alternate_names": [
                "P214AG76"
            ],
            "conformance_level_id": null,
            "ctz_level_id": null,
            "status": "DRAFT",
            "sds_url": null,
            "website_url": null,
            "created_at": "2017-10-06T00:00:00.000000Z",
            "updated_at": "2023-02-28T00:00:00.000000Z",
            "technical_data_sheet_url": "",
            "conformance_level": null,
            "ctz_level": null
        },
        {
            "id": 1,
            "reference_id": "20-Z4289ZZUE9-W",
            "organisation_id": 5905,
            "zdhc_pid": 367089,
            "name": "A-POLE G-2 [P214AG76]",
            "version": 1,
            "description": null,
            "alternate_names": [
                "P214AG76"
            ],
            "conformance_level_id": null,
            "ctz_level_id": null,
            "status": "DRAFT",
            "sds_url": null,
            "website_url": null,
            "created_at": "2017-10-06T00:00:00.000000Z",
            "updated_at": "2023-02-28T00:00:00.000000Z",
            "technical_data_sheet_url": "",
            "conformance_level": null,
            "ctz_level": null
        }
    ]
}
 

Request      

GET api/organisation/{organisation_reference_id}/chemical/product

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 2

page   integer  optional    

the page number to show. Example: 1

filter[chemical_products.name]   string  optional    

Filter column chemical_products.name by any accepted value. Filter by name Example: et

filter[chemical_products.zdhc_pid]   integer  optional    

Filter column chemical_products.zdhc_pid by any accepted value. Filter by ZDHC PID Example: 13

filter[chemical_products.status]   string  optional    

Filter column chemical_products.status by any accepted value. Filter by status Example: harum

filter[organisations.name]   string  optional    

Filter column organisations.name by any accepted value. Filter by organisation name Example: qui

filter[conformance_level_id]   integer  optional    

Filter column conformance_level_id by any accepted value. Filter by conformance level IDs Example: 19

filter[ctz_level_id]   integer  optional    

Filter column ctz_level_id by any accepted value. Filter by CTZ level IDs Example: 1

filter[chemical_products.created_at]   datetime  optional    

Filter column chemical_products.created_at by any accepted value. Filter by created date Example: sed

filter[chemical_products.updated_at]   datetime  optional    

Filter column chemical_products.updated_at by any accepted value. Filter by updated date Example: saepe

filter[product_use_types.id]   integer  optional    

Filter column product_use_types.id by any accepted value. Filter by use type ID (multiple selection allowed) Example: 7

filter[product_categories.id]   integer  optional    

Filter column product_categories.id by any accepted value. Filter by use type category ID (multiple selection allowed) Example: 9

filter[organisations.reference_id]   string  optional    

Filter column organisations.reference_id by any accepted value. Filter by organisation reference ID Example: omnis

search   string  optional    

Search in all of these columns: chemical_products.name, chemical_products.alternate_names, chemical_products.zdhc_pid, organisations.reference_id, organisations.name Example: sunt

sort   string  optional    

sort by any accepted column: chemical_products.id, chemical_products.name, chemical_products.version, chemical_products.status, chemical_products.zdhc_pid, conformance_level_name, ctz_level_name, organisation_reference_id, organisation_name, chemical_products.created_at, chemical_products.updated_at. prefix a "-" before the column name to sort in descending order Example: chemical_products.id

column   string  optional    

get a distinct list of filterable values for any of the columns: chemical_products.id, chemical_products.name, chemical_products.version, chemical_products.status, ctz_level_name, conformance_level_name, organisation_reference_id, organisation_name, chemical_products.created_at, chemical_products.updated_at. Example: chemical_products.id

Body Parameters

filter   object  optional    
name   string  optional    

Must be at least 4 characters. Example: kzkuvslrptbavkrrdeud

organisations__dot__3VgoU1G8AH8ljIWTname   string  optional    

Must be at least 4 characters. Example: shpxztpiwrcnsngdzyvucurxthaedonqrxvktpocthyckbdprovo

search   string  optional    

Must be at least 4 characters. Example: svlwxbrzyxvsiztfoebkrhyhehtyrdaowctf

Search by name cached

requires authentication

Search all products by name cached

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/search-by-name-cached?filter%5Bname%5D=voluptates&per_page=5&page=1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"filter\": {
        \"name\": \"emhrkqdvxxcwn\",
        \"organisations__dot__3VgoU1G8AH8ljIWTname\": \"dvoysldszoxaymyjfeyqvzuamcddlezhaxjcchoiiqbxailbz\"
    },
    \"search\": \"fzkrufttbxclisifpcbxcpljnnvrkyvmxcurgigaoinulfqmocohfyxfdoelmbkgjmhtdn\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/search-by-name-cached"
);

const params = {
    "filter[name]": "voluptates",
    "per_page": "5",
    "page": "1",
};
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",
};

let body = {
    "filter": {
        "name": "emhrkqdvxxcwn",
        "organisations__dot__3VgoU1G8AH8ljIWTname": "dvoysldszoxaymyjfeyqvzuamcddlezhaxjcchoiiqbxailbz"
    },
    "search": "fzkrufttbxclisifpcbxcpljnnvrkyvmxcurgigaoinulfqmocohfyxfdoelmbkgjmhtdn"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": [
        {
            "reference_id": "20-Z4289ZZUE9-W",
            "name": "A-POLE G-2 [P214AG76]"
        },
        {
            "reference_id": "20-Z4289ZZUE9-W",
            "name": "A-POLE G-2 [P214AG76]"
        }
    ]
}
 

Request      

GET api/organisation/{organisation_reference_id}/chemical/product/search-by-name-cached

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

Query Parameters

filter[name]   string  optional    

Filter column name by any accepted value. Filter by name Example: voluptates

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 5

page   integer  optional    

the page number to show. Example: 1

Body Parameters

filter   object  optional    
name   string  optional    

Must be at least 4 characters. Example: emhrkqdvxxcwn

organisations__dot__3VgoU1G8AH8ljIWTname   string  optional    

Must be at least 4 characters. Example: dvoysldszoxaymyjfeyqvzuamcddlezhaxjcchoiiqbxailbz

search   string  optional    

Must be at least 4 characters. Example: fzkrufttbxclisifpcbxcpljnnvrkyvmxcurgigaoinulfqmocohfyxfdoelmbkgjmhtdn

Show

requires authentication

Show a product

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/accusantium" \
    --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/organisation/1/chemical/product/accusantium"
);

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,
        "reference_id": "20-Z4289ZZUE9-W",
        "organisation_id": 5905,
        "zdhc_pid": 367089,
        "name": "A-POLE G-2 [P214AG76]",
        "version": 1,
        "description": null,
        "alternate_names": [
            "P214AG76"
        ],
        "conformance_level_id": null,
        "ctz_level_id": null,
        "status": "DRAFT",
        "sds_url": null,
        "website_url": null,
        "created_at": "2017-10-06T00:00:00.000000Z",
        "updated_at": "2023-02-28T00:00:00.000000Z",
        "technical_data_sheet_url": "",
        "organisation": {
            "id": 5905,
            "reference_id": "01-3SRBVESEWXG-W",
            "type_id": 6,
            "name": "Nicca Chemical Co., Ltd.",
            "address_1": "4-23-1 Bunkyo",
            "address_2": null,
            "city": "Fukui",
            "state": "Fukui",
            "location": "JP",
            "zip": "910-8670",
            "phone": "+81-776-25-8646",
            "email": "zdhc@niccachemical.com",
            "website": "https://nctexchem.com",
            "avatar_url": null,
            "location_name": "Japan"
        },
        "conformance_level": null,
        "ctz_level": null,
        "highest_mrsl_certification": null,
        "highest_ctz_certification": null,
        "certification_body_assignments": [],
        "safety_data_sheets": [
            {
                "id": 91697,
                "file_name": "A-POLE G-2 20170830.pdf",
                "mime_type": "application/octet-stream",
                "file_size": "0",
                "locale": "en",
                "version": 1,
                "chemical_product_id": 1,
                "organisation_id": 5905,
                "created_at": "2017-10-06T05:21:29.000000Z",
                "updated_at": "2018-09-03T04:45:46.000000Z",
                "file_url": "",
                "chemical_product": {
                    "id": 1,
                    "reference_id": "20-Z4289ZZUE9-W",
                    "organisation_id": 5905,
                    "zdhc_pid": 367089,
                    "name": "A-POLE G-2 [P214AG76]",
                    "version": 1,
                    "description": null,
                    "alternate_names": [
                        "P214AG76"
                    ],
                    "conformance_level_id": null,
                    "ctz_level_id": null,
                    "status": "DRAFT",
                    "sds_url": null,
                    "website_url": null,
                    "created_at": "2017-10-06T00:00:00.000000Z",
                    "updated_at": "2023-02-28T00:00:00.000000Z",
                    "technical_data_sheet_url": ""
                }
            }
        ],
        "certified_safety_data_sheets": [],
        "use_types": [
            {
                "id": 264,
                "name": "Softening agents",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:47.000000Z",
                "updated_at": "2026-05-08T21:42:47.000000Z",
                "pivot": {
                    "chemical_product_id": 1,
                    "product_use_type_id": 264,
                    "id": 31058
                },
                "categories": [
                    {
                        "id": 2,
                        "name": "Textile Finishing Assistants",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_use_type_id": 264,
                            "product_category_id": 2
                        },
                        "substrates": [
                            {
                                "id": 2,
                                "name": "Textile",
                                "is_inactive": 0,
                                "created_at": "2026-05-08T21:42:46.000000Z",
                                "updated_at": "2026-05-08T21:42:46.000000Z",
                                "pivot": {
                                    "product_category_id": 2,
                                    "product_substrate_id": 2
                                }
                            }
                        ]
                    },
                    {
                        "id": 62,
                        "name": "Finishing Assistants",
                        "is_inactive": 0,
                        "created_at": "2026-05-10T02:33:42.000000Z",
                        "updated_at": "2026-05-10T02:33:42.000000Z",
                        "pivot": {
                            "product_use_type_id": 264,
                            "product_category_id": 62
                        },
                        "substrates": []
                    }
                ]
            }
        ],
        "activity_logs": []
    }
}
 

Request      

GET api/organisation/{organisation_reference_id}/chemical/product/{reference_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

reference_id   string     

The ID of the reference. Example: accusantium

Store

requires authentication

Store a product

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "name=ugpwvssvrug"\
    --form "description=Aspernatur qui distinctio sint quos non aperiam."\
    --form "alternate_names[]=xgnvcnfmtlqvbj"\
    --form "use_types[]=19"\
    --form "certification_bodies[]=11"\
    --form "chemical_formulator_id=20"\
    --form "sds_url=http://www.corkery.net/laboriosam-dolore-quis-consequatur-fugiat-est-aut.html"\
    --form "website_url=http://bartell.com/dicta-beatae-quo-voluptate-culpa-doloribus-autem"\
    --form "safety_data_sheet=@/tmp/phpkNnjIL" \
    --form "technical_data_sheet=@/tmp/phpPfiPEM" 
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('name', 'ugpwvssvrug');
body.append('description', 'Aspernatur qui distinctio sint quos non aperiam.');
body.append('alternate_names[]', 'xgnvcnfmtlqvbj');
body.append('use_types[]', '19');
body.append('certification_bodies[]', '11');
body.append('chemical_formulator_id', '20');
body.append('sds_url', 'http://www.corkery.net/laboriosam-dolore-quis-consequatur-fugiat-est-aut.html');
body.append('website_url', 'http://bartell.com/dicta-beatae-quo-voluptate-culpa-doloribus-autem');
body.append('safety_data_sheet', document.querySelector('input[name="safety_data_sheet"]').files[0]);
body.append('technical_data_sheet', document.querySelector('input[name="technical_data_sheet"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "reference_id": "20-Z4289ZZUE9-W",
        "organisation_id": 5905,
        "zdhc_pid": 367089,
        "name": "A-POLE G-2 [P214AG76]",
        "version": 1,
        "description": null,
        "alternate_names": [
            "P214AG76"
        ],
        "conformance_level_id": null,
        "ctz_level_id": null,
        "status": "DRAFT",
        "sds_url": null,
        "website_url": null,
        "created_at": "2017-10-06T00:00:00.000000Z",
        "updated_at": "2023-02-28T00:00:00.000000Z",
        "technical_data_sheet_url": "",
        "organisation": {
            "id": 5905,
            "reference_id": "01-3SRBVESEWXG-W",
            "type_id": 6,
            "name": "Nicca Chemical Co., Ltd.",
            "address_1": "4-23-1 Bunkyo",
            "address_2": null,
            "city": "Fukui",
            "state": "Fukui",
            "location": "JP",
            "zip": "910-8670",
            "phone": "+81-776-25-8646",
            "email": "zdhc@niccachemical.com",
            "website": "https://nctexchem.com",
            "avatar_url": null,
            "location_name": "Japan"
        },
        "conformance_level": null,
        "ctz_level": null,
        "highest_mrsl_certification": null,
        "highest_ctz_certification": null,
        "certification_body_assignments": [],
        "safety_data_sheets": [
            {
                "id": 91697,
                "file_name": "A-POLE G-2 20170830.pdf",
                "mime_type": "application/octet-stream",
                "file_size": "0",
                "locale": "en",
                "version": 1,
                "chemical_product_id": 1,
                "organisation_id": 5905,
                "created_at": "2017-10-06T05:21:29.000000Z",
                "updated_at": "2018-09-03T04:45:46.000000Z",
                "file_url": "",
                "chemical_product": {
                    "id": 1,
                    "reference_id": "20-Z4289ZZUE9-W",
                    "organisation_id": 5905,
                    "zdhc_pid": 367089,
                    "name": "A-POLE G-2 [P214AG76]",
                    "version": 1,
                    "description": null,
                    "alternate_names": [
                        "P214AG76"
                    ],
                    "conformance_level_id": null,
                    "ctz_level_id": null,
                    "status": "DRAFT",
                    "sds_url": null,
                    "website_url": null,
                    "created_at": "2017-10-06T00:00:00.000000Z",
                    "updated_at": "2023-02-28T00:00:00.000000Z",
                    "technical_data_sheet_url": ""
                }
            }
        ],
        "certified_safety_data_sheets": [],
        "use_types": [
            {
                "id": 264,
                "name": "Softening agents",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:47.000000Z",
                "updated_at": "2026-05-08T21:42:47.000000Z",
                "pivot": {
                    "chemical_product_id": 1,
                    "product_use_type_id": 264,
                    "id": 31058
                },
                "categories": [
                    {
                        "id": 2,
                        "name": "Textile Finishing Assistants",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_use_type_id": 264,
                            "product_category_id": 2
                        },
                        "substrates": [
                            {
                                "id": 2,
                                "name": "Textile",
                                "is_inactive": 0,
                                "created_at": "2026-05-08T21:42:46.000000Z",
                                "updated_at": "2026-05-08T21:42:46.000000Z",
                                "pivot": {
                                    "product_category_id": 2,
                                    "product_substrate_id": 2
                                }
                            }
                        ]
                    },
                    {
                        "id": 62,
                        "name": "Finishing Assistants",
                        "is_inactive": 0,
                        "created_at": "2026-05-10T02:33:42.000000Z",
                        "updated_at": "2026-05-10T02:33:42.000000Z",
                        "pivot": {
                            "product_use_type_id": 264,
                            "product_category_id": 62
                        },
                        "substrates": []
                    }
                ]
            }
        ],
        "activity_logs": []
    }
}
 

Request      

POST api/organisation/{organisation_reference_id}/chemical/product

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: ugpwvssvrug

description   string  optional    

Must not be greater than 512 characters. Example: Aspernatur qui distinctio sint quos non aperiam.

alternate_names   string[]  optional    

Must not be greater than 255 characters.

use_types   integer[]     

The id of an existing record in the product_use_types table.

certification_bodies   integer[]  optional    

The id of an existing record in the organisations table.

safety_data_sheet   file     

Must be a file. Must not be greater than 10240 kilobytes. Example: /tmp/phpkNnjIL

technical_data_sheet   file  optional    

Must be a file. Must not be greater than 10240 kilobytes. Example: /tmp/phpPfiPEM

chemical_formulator_id   integer  optional    

The id of an existing record in the organisations table. Example: 20

sds_url   string  optional    

Must be a valid URL. Must not be greater than 2048 characters. Example: http://www.corkery.net/laboriosam-dolore-quis-consequatur-fugiat-est-aut.html

website_url   string  optional    

Must be a valid URL. Must not be greater than 2048 characters. Example: http://bartell.com/dicta-beatae-quo-voluptate-culpa-doloribus-autem

Update

requires authentication

Update a product

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/maxime" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "name=tedqzrvgnrvfvzcnv"\
    --form "description=Aut neque dolor rem incidunt illo velit."\
    --form "alternate_names[]=elxnesebhieujzrnncxnbblc"\
    --form "use_types[]=8"\
    --form "certification_bodies[]=2"\
    --form "chemical_formulator_id=4"\
    --form "sds_url=http://ebert.info/id-aut-ex-enim-eius-iure-numquam-minus-error"\
    --form "website_url=http://sauer.com/ut-nemo-qui-voluptas-sit-asperiores-corporis-voluptatem"\
    --form "safety_data_sheet=@/tmp/phpKPBaDN" \
    --form "technical_data_sheet=@/tmp/phpnFFeDN" 
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/maxime"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('name', 'tedqzrvgnrvfvzcnv');
body.append('description', 'Aut neque dolor rem incidunt illo velit.');
body.append('alternate_names[]', 'elxnesebhieujzrnncxnbblc');
body.append('use_types[]', '8');
body.append('certification_bodies[]', '2');
body.append('chemical_formulator_id', '4');
body.append('sds_url', 'http://ebert.info/id-aut-ex-enim-eius-iure-numquam-minus-error');
body.append('website_url', 'http://sauer.com/ut-nemo-qui-voluptas-sit-asperiores-corporis-voluptatem');
body.append('safety_data_sheet', document.querySelector('input[name="safety_data_sheet"]').files[0]);
body.append('technical_data_sheet', document.querySelector('input[name="technical_data_sheet"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "reference_id": "20-Z4289ZZUE9-W",
        "organisation_id": 5905,
        "zdhc_pid": 367089,
        "name": "A-POLE G-2 [P214AG76]",
        "version": 1,
        "description": null,
        "alternate_names": [
            "P214AG76"
        ],
        "conformance_level_id": null,
        "ctz_level_id": null,
        "status": "DRAFT",
        "sds_url": null,
        "website_url": null,
        "created_at": "2017-10-06T00:00:00.000000Z",
        "updated_at": "2023-02-28T00:00:00.000000Z",
        "technical_data_sheet_url": "",
        "organisation": {
            "id": 5905,
            "reference_id": "01-3SRBVESEWXG-W",
            "type_id": 6,
            "name": "Nicca Chemical Co., Ltd.",
            "address_1": "4-23-1 Bunkyo",
            "address_2": null,
            "city": "Fukui",
            "state": "Fukui",
            "location": "JP",
            "zip": "910-8670",
            "phone": "+81-776-25-8646",
            "email": "zdhc@niccachemical.com",
            "website": "https://nctexchem.com",
            "avatar_url": null,
            "location_name": "Japan"
        },
        "conformance_level": null,
        "ctz_level": null,
        "highest_mrsl_certification": null,
        "highest_ctz_certification": null,
        "certification_body_assignments": [],
        "safety_data_sheets": [
            {
                "id": 91697,
                "file_name": "A-POLE G-2 20170830.pdf",
                "mime_type": "application/octet-stream",
                "file_size": "0",
                "locale": "en",
                "version": 1,
                "chemical_product_id": 1,
                "organisation_id": 5905,
                "created_at": "2017-10-06T05:21:29.000000Z",
                "updated_at": "2018-09-03T04:45:46.000000Z",
                "file_url": "",
                "chemical_product": {
                    "id": 1,
                    "reference_id": "20-Z4289ZZUE9-W",
                    "organisation_id": 5905,
                    "zdhc_pid": 367089,
                    "name": "A-POLE G-2 [P214AG76]",
                    "version": 1,
                    "description": null,
                    "alternate_names": [
                        "P214AG76"
                    ],
                    "conformance_level_id": null,
                    "ctz_level_id": null,
                    "status": "DRAFT",
                    "sds_url": null,
                    "website_url": null,
                    "created_at": "2017-10-06T00:00:00.000000Z",
                    "updated_at": "2023-02-28T00:00:00.000000Z",
                    "technical_data_sheet_url": ""
                }
            }
        ],
        "certified_safety_data_sheets": [],
        "use_types": [
            {
                "id": 264,
                "name": "Softening agents",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:47.000000Z",
                "updated_at": "2026-05-08T21:42:47.000000Z",
                "pivot": {
                    "chemical_product_id": 1,
                    "product_use_type_id": 264,
                    "id": 31058
                },
                "categories": [
                    {
                        "id": 2,
                        "name": "Textile Finishing Assistants",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_use_type_id": 264,
                            "product_category_id": 2
                        },
                        "substrates": [
                            {
                                "id": 2,
                                "name": "Textile",
                                "is_inactive": 0,
                                "created_at": "2026-05-08T21:42:46.000000Z",
                                "updated_at": "2026-05-08T21:42:46.000000Z",
                                "pivot": {
                                    "product_category_id": 2,
                                    "product_substrate_id": 2
                                }
                            }
                        ]
                    },
                    {
                        "id": 62,
                        "name": "Finishing Assistants",
                        "is_inactive": 0,
                        "created_at": "2026-05-10T02:33:42.000000Z",
                        "updated_at": "2026-05-10T02:33:42.000000Z",
                        "pivot": {
                            "product_use_type_id": 264,
                            "product_category_id": 62
                        },
                        "substrates": []
                    }
                ]
            }
        ],
        "activity_logs": []
    }
}
 

Request      

PUT api/organisation/{organisation_reference_id}/chemical/product/{reference_id}

PATCH api/organisation/{organisation_reference_id}/chemical/product/{reference_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

reference_id   string     

The ID of the reference. Example: maxime

Body Parameters

name   string     

Must not be greater than 255 characters. Example: tedqzrvgnrvfvzcnv

description   string  optional    

Must not be greater than 512 characters. Example: Aut neque dolor rem incidunt illo velit.

alternate_names   string[]  optional    

Must not be greater than 255 characters.

use_types   integer[]     

The id of an existing record in the product_use_types table.

certification_bodies   integer[]  optional    

The id of an existing record in the organisations table.

safety_data_sheet   file     

Must be a file. Must not be greater than 10240 kilobytes. Example: /tmp/phpKPBaDN

technical_data_sheet   file  optional    

Must be a file. Must not be greater than 10240 kilobytes. Example: /tmp/phpnFFeDN

chemical_formulator_id   integer  optional    

The id of an existing record in the organisations table. Example: 4

sds_url   string  optional    

Must be a valid URL. Must not be greater than 2048 characters. Example: http://ebert.info/id-aut-ex-enim-eius-iure-numquam-minus-error

website_url   string  optional    

Must be a valid URL. Must not be greater than 2048 characters. Example: http://sauer.com/ut-nemo-qui-voluptas-sit-asperiores-corporis-voluptatem

Toggle Publish

requires authentication

Toggle the publish status of a product

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/et/toggle-publish" \
    --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/organisation/1/chemical/product/et/toggle-publish"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "reference_id": "20-Z4289ZZUE9-W",
        "organisation_id": 5905,
        "zdhc_pid": 367089,
        "name": "A-POLE G-2 [P214AG76]",
        "version": 1,
        "description": null,
        "alternate_names": [
            "P214AG76"
        ],
        "conformance_level_id": null,
        "ctz_level_id": null,
        "status": "DRAFT",
        "sds_url": null,
        "website_url": null,
        "created_at": "2017-10-06T00:00:00.000000Z",
        "updated_at": "2023-02-28T00:00:00.000000Z",
        "technical_data_sheet_url": "",
        "organisation": {
            "id": 5905,
            "reference_id": "01-3SRBVESEWXG-W",
            "type_id": 6,
            "name": "Nicca Chemical Co., Ltd.",
            "address_1": "4-23-1 Bunkyo",
            "address_2": null,
            "city": "Fukui",
            "state": "Fukui",
            "location": "JP",
            "zip": "910-8670",
            "phone": "+81-776-25-8646",
            "email": "zdhc@niccachemical.com",
            "website": "https://nctexchem.com",
            "avatar_url": null,
            "location_name": "Japan"
        },
        "conformance_level": null,
        "ctz_level": null,
        "highest_mrsl_certification": null,
        "highest_ctz_certification": null,
        "certification_body_assignments": [],
        "safety_data_sheets": [
            {
                "id": 91697,
                "file_name": "A-POLE G-2 20170830.pdf",
                "mime_type": "application/octet-stream",
                "file_size": "0",
                "locale": "en",
                "version": 1,
                "chemical_product_id": 1,
                "organisation_id": 5905,
                "created_at": "2017-10-06T05:21:29.000000Z",
                "updated_at": "2018-09-03T04:45:46.000000Z",
                "file_url": "",
                "chemical_product": {
                    "id": 1,
                    "reference_id": "20-Z4289ZZUE9-W",
                    "organisation_id": 5905,
                    "zdhc_pid": 367089,
                    "name": "A-POLE G-2 [P214AG76]",
                    "version": 1,
                    "description": null,
                    "alternate_names": [
                        "P214AG76"
                    ],
                    "conformance_level_id": null,
                    "ctz_level_id": null,
                    "status": "DRAFT",
                    "sds_url": null,
                    "website_url": null,
                    "created_at": "2017-10-06T00:00:00.000000Z",
                    "updated_at": "2023-02-28T00:00:00.000000Z",
                    "technical_data_sheet_url": ""
                }
            }
        ],
        "certified_safety_data_sheets": [],
        "use_types": [
            {
                "id": 264,
                "name": "Softening agents",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:47.000000Z",
                "updated_at": "2026-05-08T21:42:47.000000Z",
                "pivot": {
                    "chemical_product_id": 1,
                    "product_use_type_id": 264,
                    "id": 31058
                },
                "categories": [
                    {
                        "id": 2,
                        "name": "Textile Finishing Assistants",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_use_type_id": 264,
                            "product_category_id": 2
                        },
                        "substrates": [
                            {
                                "id": 2,
                                "name": "Textile",
                                "is_inactive": 0,
                                "created_at": "2026-05-08T21:42:46.000000Z",
                                "updated_at": "2026-05-08T21:42:46.000000Z",
                                "pivot": {
                                    "product_category_id": 2,
                                    "product_substrate_id": 2
                                }
                            }
                        ]
                    },
                    {
                        "id": 62,
                        "name": "Finishing Assistants",
                        "is_inactive": 0,
                        "created_at": "2026-05-10T02:33:42.000000Z",
                        "updated_at": "2026-05-10T02:33:42.000000Z",
                        "pivot": {
                            "product_use_type_id": 264,
                            "product_category_id": 62
                        },
                        "substrates": []
                    }
                ]
            }
        ],
        "activity_logs": []
    }
}
 

Request      

POST api/organisation/{organisation_reference_id}/chemical/product/{product_reference_id}/toggle-publish

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

product_reference_id   string     

The ID of the product reference. Example: et

Destroy

requires authentication

Destroy a product

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/consequatur" \
    --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/organisation/1/chemical/product/consequatur"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Product deleted successfully."
}
 

Request      

DELETE api/organisation/{organisation_reference_id}/chemical/product/{reference_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

reference_id   string     

The ID of the reference. Example: consequatur

Download Safety Data Sheet (by id, product owner context)

requires authentication

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/1/safety-data-sheet/1" \
    --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/organisation/1/chemical/product/1/safety-data-sheet/1"
);

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):


file
 

Request      

GET api/organisation/{organisation_reference_id}/chemical/product/{product_id}/safety-data-sheet/{safetyDataSheet_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

product_id   integer     

The ID of the product. Example: 1

safetyDataSheet_id   integer     

The ID of the safetyDataSheet. Example: 1

Download Technical Data Sheet

requires authentication

Download a technical data sheet

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/1/technical-data-sheet" \
    --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/organisation/1/chemical/product/1/technical-data-sheet"
);

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):


file
 

Request      

GET api/organisation/{organisation_reference_id}/chemical/product/{product_id}/technical-data-sheet

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

product_id   integer     

The ID of the product. Example: 1

Product public profile

Download Public Safety Data Sheet

requires authentication

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/1/safety-data-sheet/public" \
    --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/organisation/1/chemical/product/1/safety-data-sheet/public"
);

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):


file
 

Request      

GET api/organisation/{organisation_reference_id}/chemical/product/{product_id}/safety-data-sheet/public

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

product_id   integer     

The ID of the product. Example: 1

Public product profile

requires authentication

Get a public product profile

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/1/public-profile" \
    --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/organisation/1/chemical/product/1/public-profile"
);

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,
        "reference_id": "20-Z4289ZZUE9-W",
        "organisation": {
            "id": 5905,
            "reference_id": "01-3SRBVESEWXG-W",
            "type_id": 6,
            "name": "Nicca Chemical Co., Ltd.",
            "address_1": "4-23-1 Bunkyo",
            "address_2": null,
            "city": "Fukui",
            "state": "Fukui",
            "location": "JP",
            "zip": "910-8670",
            "phone": "+81-776-25-8646",
            "email": "zdhc@niccachemical.com",
            "website": "https://nctexchem.com",
            "avatar_url": null,
            "location_name": "Japan"
        },
        "name": "A-POLE G-2 [P214AG76]",
        "description": null,
        "alternate_names": [
            "P214AG76"
        ],
        "version": 1,
        "status": "DRAFT",
        "technical_data_sheet_url": null,
        "conformance_level": null,
        "ctz_level": null,
        "use_types": [
            {
                "id": 264,
                "name": "Softening agents",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:47.000000Z",
                "updated_at": "2026-05-08T21:42:47.000000Z",
                "pivot": {
                    "chemical_product_id": 1,
                    "product_use_type_id": 264,
                    "id": 31058
                },
                "categories": [
                    {
                        "id": 2,
                        "name": "Textile Finishing Assistants",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_use_type_id": 264,
                            "product_category_id": 2
                        },
                        "substrates": [
                            {
                                "id": 2,
                                "name": "Textile",
                                "is_inactive": 0,
                                "created_at": "2026-05-08T21:42:46.000000Z",
                                "updated_at": "2026-05-08T21:42:46.000000Z",
                                "pivot": {
                                    "product_category_id": 2,
                                    "product_substrate_id": 2
                                }
                            }
                        ]
                    },
                    {
                        "id": 62,
                        "name": "Finishing Assistants",
                        "is_inactive": 0,
                        "created_at": "2026-05-10T02:33:42.000000Z",
                        "updated_at": "2026-05-10T02:33:42.000000Z",
                        "pivot": {
                            "product_use_type_id": 264,
                            "product_category_id": 62
                        },
                        "substrates": []
                    }
                ]
            }
        ],
        "sds_visibility": null,
        "sds_url": null,
        "website_url": null
    }
}
 

Request      

GET api/organisation/{organisation_reference_id}/chemical/product/{product_id}/public-profile

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

product_id   integer     

The ID of the product. Example: 1

Download Public Technical Data Sheet

requires authentication

Download a public technical data sheet

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product/1/technical-data-sheet/public" \
    --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/organisation/1/chemical/product/1/technical-data-sheet/public"
);

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):


file
 

Request      

GET api/organisation/{organisation_reference_id}/chemical/product/{product_id}/technical-data-sheet/public

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

product_id   integer     

The ID of the product. Example: 1

Product Assignment

Index

requires authentication

Get Product Assignments

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product-assignment?per_page=16&page=1&filter%5Bname%5D=est&filter%5Bzdhc_pid%5D=6&filter%5Bstatus%5D=DRAFT&filter%5Bassignment_status%5D=UNDER_REVIEW&filter%5Borganisation_id%5D=11&filter%5Bmax_conformance_level_id%5D=6&filter%5Bmax_ctz_level_id%5D=19&filter%5Bcreated_at%5D=distinctio&filter%5Bupdated_at%5D=tempore&search=facilis&sort=id&column=id" \
    --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/organisation/1/chemical/product-assignment"
);

const params = {
    "per_page": "16",
    "page": "1",
    "filter[name]": "est",
    "filter[zdhc_pid]": "6",
    "filter[status]": "DRAFT",
    "filter[assignment_status]": "UNDER_REVIEW",
    "filter[organisation_id]": "11",
    "filter[max_conformance_level_id]": "6",
    "filter[max_ctz_level_id]": "19",
    "filter[created_at]": "distinctio",
    "filter[updated_at]": "tempore",
    "search": "facilis",
    "sort": "id",
    "column": "id",
};
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,
            "reference_id": "20-Z4289ZZUE9-W",
            "organisation_id": 5905,
            "zdhc_pid": 367089,
            "name": "A-POLE G-2 [P214AG76]",
            "version": 1,
            "description": null,
            "alternate_names": [
                "P214AG76"
            ],
            "conformance_level_id": null,
            "ctz_level_id": null,
            "status": "DRAFT",
            "sds_url": null,
            "website_url": null,
            "created_at": "2017-10-06T00:00:00.000000Z",
            "updated_at": "2023-02-28T00:00:00.000000Z",
            "technical_data_sheet_url": "",
            "conformance_level": null,
            "ctz_level": null
        },
        {
            "id": 1,
            "reference_id": "20-Z4289ZZUE9-W",
            "organisation_id": 5905,
            "zdhc_pid": 367089,
            "name": "A-POLE G-2 [P214AG76]",
            "version": 1,
            "description": null,
            "alternate_names": [
                "P214AG76"
            ],
            "conformance_level_id": null,
            "ctz_level_id": null,
            "status": "DRAFT",
            "sds_url": null,
            "website_url": null,
            "created_at": "2017-10-06T00:00:00.000000Z",
            "updated_at": "2023-02-28T00:00:00.000000Z",
            "technical_data_sheet_url": "",
            "conformance_level": null,
            "ctz_level": null
        }
    ]
}
 

Request      

GET api/organisation/{organisation_id}/chemical/product-assignment

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 16

page   integer  optional    

the page number to show. Example: 1

filter[name]   string  optional    

Filter column name by any accepted value. Filter by name Example: est

filter[zdhc_pid]   integer  optional    

Filter column zdhc_pid by any accepted value. Filter by ZDHC PID Example: 6

filter[status]   string  optional    

Filter column status by any accepted value. Matches exact value. Example: DRAFT

Must be one of:
  • DRAFT
  • UNDER_REVIEW
  • ACCEPTED
  • PUBLISHED
  • NOT_ACCEPTED
  • DELETED
filter[assignment_status]   string  optional    

Filter column assignment_status by any accepted value. Matches exact value. Example: UNDER_REVIEW

Must be one of:
  • UNDER_REVIEW
  • ACCEPTED
  • EXPIRED
  • DECLINED
filter[organisation_id]   integer  optional    

Filter column organisation_id by any accepted value. Filter by product organisation ID Example: 11

filter[max_conformance_level_id]   integer  optional    

Filter column max_conformance_level_id by any accepted value. Filter by max conformance level IDs from assignment Example: 6

filter[max_ctz_level_id]   integer  optional    

Filter column max_ctz_level_id by any accepted value. Filter by max CTZ level IDs from assignment Example: 19

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. Filter by created date Example: distinctio

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. Filter by updated date Example: tempore

filter[product_use_types.id]   integer  optional    

Filter column product_use_types.id by any accepted value. Filter by use type ID (multiple selection allowed) Example: 3

filter[product_categories.id]   integer  optional    

Filter column product_categories.id by any accepted value. Filter by use type category ID (multiple selection allowed) Example: 3

search   string  optional    

Search in all of these columns: name, zdhc_pid Example: facilis

sort   string  optional    

sort by any accepted column: id, name, version, status, assignment_status, zdhc_pid, conformance_level_name, ctz_level_name, created_at, updated_at. prefix a "-" before the column name to sort in descending order Example: id

column   string  optional    

get a distinct list of filterable values for any of the columns: id, name, version, status, assignment_status, ctz_level_name, conformance_level_name, created_at, updated_at. Example: id

Update

requires authentication

Update product assignments

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product-assignment/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "certifications[][mrsl_standard_id]=19"\
    --form "certifications[][ctz_standard_id]=7"\
    --form "certifications[][safety_data_sheet_id]=3"\
    --form "safety_data_sheet=@/tmp/phpfFahbk" 
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product-assignment/1"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('certifications[][mrsl_standard_id]', '19');
body.append('certifications[][ctz_standard_id]', '7');
body.append('certifications[][safety_data_sheet_id]', '3');
body.append('safety_data_sheet', document.querySelector('input[name="safety_data_sheet"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "status": "ACCEPTED",
        "chemical_product_id": 212878,
        "organisation_id": 7747,
        "created_at": "2026-05-14T19:42:10.000000Z",
        "updated_at": "2026-05-14T19:42:10.000000Z",
        "max_conformance_level_id": null,
        "max_ctz_level_id": null,
        "conformance_level": null,
        "ctz_level": null,
        "mrsl_certifications": [
            {
                "id": 1,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 308,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 553,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 15779,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2027-01-31T00:00:00.000000Z",
                "created_at": "2026-03-06T00:00:00.000000Z",
                "updated_at": "2026-03-06T00:00:00.000000Z",
                "expired_at": null
            },
            {
                "id": 98662,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2025-01-31T00:00:00.000000Z",
                "created_at": "2023-11-08T00:00:00.000000Z",
                "updated_at": "2023-11-08T00:00:00.000000Z",
                "expired_at": "2025-01-31T23:59:59.000000Z"
            },
            {
                "id": 224448,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 243,
                "status": "ACTIVE",
                "valid_until": "2024-01-31T00:00:00.000000Z",
                "created_at": "2023-02-02T00:00:00.000000Z",
                "updated_at": "2023-02-02T00:00:00.000000Z",
                "expired_at": "2024-01-31T23:59:59.000000Z"
            }
        ],
        "chemical_product": {
            "id": 212878,
            "reference_id": "20-CRTLJRJLKP-O",
            "organisation_id": 6267,
            "zdhc_pid": 205224,
            "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
            "version": 1,
            "description": null,
            "alternate_names": [
                "P397IA55"
            ],
            "conformance_level_id": 3,
            "ctz_level_id": null,
            "status": "PUBLISHED",
            "sds_url": null,
            "website_url": null,
            "created_at": "2019-06-20T00:00:00.000000Z",
            "updated_at": "2026-03-06T00:00:00.000000Z",
            "technical_data_sheet_url": "",
            "organisation": {
                "id": 6267,
                "reference_id": "01-76N8M6UUCZG-Y",
                "type_id": 6,
                "name": "Meghmani Dyes and Intermediates LLP",
                "address_1": "9th floor,  Siddhivinayak Tower - 'B' Wing  B/H. DCP Office, Off: S.G. Highway Makarba",
                "address_2": null,
                "city": "Ahmedabad",
                "state": "Gujarat",
                "location": "IN",
                "zip": "380051",
                "phone": "8155008201",
                "email": "sujarajesh@meghmanidyes.com",
                "website": "https://www.meghmanidyes.com",
                "avatar_url": null,
                "location_name": "India"
            },
            "conformance_level": {
                "id": 3,
                "name": "Level 3",
                "created_at": null,
                "updated_at": null
            },
            "ctz_level": null,
            "highest_mrsl_certification": {
                "id": 15779,
                "mrsl_standard_id": 281,
                "safety_data_sheet_id": 84327,
                "chemical_product_id": 212878,
                "status": "ACTIVE",
                "conformance_level_id": 3,
                "actual_validity_date_combined": "2198-08-31",
                "certification_body_name": "OEKO-TEX® Service GmbH",
                "certification_body_id": 7747
            },
            "highest_ctz_certification": null,
            "certification_body_assignments": [
                {
                    "id": 1,
                    "status": "ACCEPTED",
                    "chemical_product_id": 212878,
                    "organisation_id": 7747,
                    "created_at": "2026-05-14T19:42:10.000000Z",
                    "updated_at": "2026-05-14T19:42:10.000000Z",
                    "max_conformance_level_id": null,
                    "max_ctz_level_id": null,
                    "certification_body": {
                        "id": 7747,
                        "maxio_customer_id": 309494,
                        "reference_id": "01-QAX9HHA6TQL-A",
                        "pdc_id": null,
                        "gateway_aid": "A713FG39",
                        "uuid": "9c4dc7e8-4c91-4918-9785-fff616184b7f",
                        "type_id": 7,
                        "status": "approved",
                        "name": "OEKO-TEX® Service GmbH",
                        "legal_name": "OEKO-TEX® Service GmbH",
                        "address_1": "Gutenbergstrasse 1, Zürich 8002 Switzerland",
                        "address_2": null,
                        "city": "Zurich",
                        "state": "Zurich",
                        "location": "CH",
                        "zip": "8002",
                        "phone": "+ 41 44 501 26 03",
                        "email": "j.wehrli@oekotex.com",
                        "contact_first_name": "Jonathan",
                        "contact_last_name": "Wehrli",
                        "website": null,
                        "avatar_url": null,
                        "applicant_comment": null,
                        "reviewer_comment": null,
                        "registration_mail_sent_at": null,
                        "created_at": "2020-01-03T00:00:00.000000Z",
                        "updated_at": "2026-05-12T15:16:58.000000Z",
                        "reviewer_comment_category": null,
                        "profile_reviewed_at": null,
                        "profile_reviewed_by_user_id": null,
                        "location_name": "Switzerland"
                    },
                    "mrsl_certifications": [
                        {
                            "id": 1,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2026-01-31T00:00:00.000000Z",
                            "created_at": "2025-01-30T00:00:00.000000Z",
                            "updated_at": "2025-01-30T00:00:00.000000Z",
                            "expired_at": "2026-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 308,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2026-01-31T00:00:00.000000Z",
                            "created_at": "2025-01-30T00:00:00.000000Z",
                            "updated_at": "2025-01-30T00:00:00.000000Z",
                            "expired_at": "2026-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 553,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2026-01-31T00:00:00.000000Z",
                            "created_at": "2025-01-30T00:00:00.000000Z",
                            "updated_at": "2025-01-30T00:00:00.000000Z",
                            "expired_at": "2026-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 15779,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2027-01-31T00:00:00.000000Z",
                            "created_at": "2026-03-06T00:00:00.000000Z",
                            "updated_at": "2026-03-06T00:00:00.000000Z",
                            "expired_at": null,
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 98662,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2025-01-31T00:00:00.000000Z",
                            "created_at": "2023-11-08T00:00:00.000000Z",
                            "updated_at": "2023-11-08T00:00:00.000000Z",
                            "expired_at": "2025-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 224448,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 243,
                            "status": "ACTIVE",
                            "valid_until": "2024-01-31T00:00:00.000000Z",
                            "created_at": "2023-02-02T00:00:00.000000Z",
                            "updated_at": "2023-02-02T00:00:00.000000Z",
                            "expired_at": "2024-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 243,
                                "legacy_certification_standard_id": 139,
                                "reference_id": "30-MX97SE4TFV6-Z",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v2.0",
                                "conformance_level_id": 3,
                                "start_date": "2017-12-05T00:00:00.000000Z",
                                "end_date": "2024-06-01T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": "2026-05-12T15:01:47.000000Z"
                            }
                        }
                    ]
                },
                {
                    "id": 141991,
                    "status": "ACCEPTED",
                    "chemical_product_id": 212878,
                    "organisation_id": 8608,
                    "created_at": "2026-05-14T19:42:13.000000Z",
                    "updated_at": "2026-05-14T19:42:13.000000Z",
                    "max_conformance_level_id": null,
                    "max_ctz_level_id": null,
                    "certification_body": {
                        "id": 8608,
                        "maxio_customer_id": 310355,
                        "reference_id": "01-TMEJGAMMZYV-F",
                        "pdc_id": null,
                        "gateway_aid": "A353QZ62",
                        "uuid": "ff550de3-8165-4abc-86cc-69b706f69f90",
                        "type_id": 7,
                        "status": "approved",
                        "name": "bluesign® Technologies AG",
                        "legal_name": "bluesign® Technologies AG",
                        "address_1": "Moevenstrasse 18, 9015 St. Gallen, Switzerland",
                        "address_2": null,
                        "city": "Saint Gallen",
                        "state": "Sankt Gallen",
                        "location": "CH",
                        "zip": "",
                        "phone": "+41 71 272 29 90",
                        "email": "kurt_schlaepfer@bluesign.com",
                        "contact_first_name": "Kurt",
                        "contact_last_name": "Schäpfer",
                        "website": null,
                        "avatar_url": null,
                        "applicant_comment": null,
                        "reviewer_comment": null,
                        "registration_mail_sent_at": null,
                        "created_at": "2020-01-06T00:00:00.000000Z",
                        "updated_at": "2026-05-12T15:19:44.000000Z",
                        "reviewer_comment_category": null,
                        "profile_reviewed_at": null,
                        "profile_reviewed_by_user_id": null,
                        "location_name": "Switzerland"
                    },
                    "mrsl_certifications": [
                        {
                            "id": 289979,
                            "chemical_product_id": 212878,
                            "certification_body_id": 8608,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 225,
                            "status": "ACTIVE",
                            "valid_until": "2021-01-18T00:00:00.000000Z",
                            "created_at": "2019-06-20T00:00:00.000000Z",
                            "updated_at": "2021-01-18T00:00:00.000000Z",
                            "expired_at": "2021-01-18T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 225,
                                "legacy_certification_standard_id": 2,
                                "reference_id": "30-TMER3UAGYJZ-N",
                                "name": "bluesign® Technologies AG",
                                "version": "ZDHC MRSL v1.1",
                                "conformance_level_id": 3,
                                "start_date": "2009-03-06T00:00:00.000000Z",
                                "end_date": "2030-12-17T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 305802,
                            "chemical_product_id": 212878,
                            "certification_body_id": 8608,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 232,
                            "status": "ACTIVE",
                            "valid_until": "2023-05-25T00:00:00.000000Z",
                            "created_at": "2021-01-18T00:00:00.000000Z",
                            "updated_at": "2021-01-18T00:00:00.000000Z",
                            "expired_at": "2023-05-25T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 232,
                                "legacy_certification_standard_id": 67,
                                "reference_id": "30-QAX2Y9NQWGB-N",
                                "name": "bluesign® Technologies AG",
                                "version": "ZDHC MRSL v2.0",
                                "conformance_level_id": 3,
                                "start_date": "2019-09-09T00:00:00.000000Z",
                                "end_date": "2099-01-01T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 311374,
                            "chemical_product_id": 212878,
                            "certification_body_id": 8608,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 256,
                            "status": "ACTIVE",
                            "valid_until": "2024-08-29T00:00:00.000000Z",
                            "created_at": "2023-06-16T00:00:00.000000Z",
                            "updated_at": "2023-06-16T00:00:00.000000Z",
                            "expired_at": "2024-08-29T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 256,
                                "legacy_certification_standard_id": 195,
                                "reference_id": "30-PYSW66TBNP6-J",
                                "name": "bluesign® Technologies AG",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2002-03-10T00:00:00.000000Z",
                                "end_date": "2100-09-05T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 316061,
                            "chemical_product_id": 212878,
                            "certification_body_id": 8608,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 256,
                            "status": "ACTIVE",
                            "valid_until": "2099-12-31T00:00:00.000000Z",
                            "created_at": "2025-01-06T00:00:00.000000Z",
                            "updated_at": "2025-04-30T00:00:00.000000Z",
                            "expired_at": null,
                            "mrsl_standard": {
                                "id": 256,
                                "legacy_certification_standard_id": 195,
                                "reference_id": "30-PYSW66TBNP6-J",
                                "name": "bluesign® Technologies AG",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2002-03-10T00:00:00.000000Z",
                                "end_date": "2100-09-05T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        }
                    ]
                }
            ],
            "safety_data_sheets": [
                {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "mime_type": "application/octet-stream",
                    "file_size": "0",
                    "locale": "en",
                    "version": 1,
                    "chemical_product_id": 212878,
                    "organisation_id": 6267,
                    "created_at": "2019-06-20T08:55:18.000000Z",
                    "updated_at": "2020-03-03T10:26:35.000000Z",
                    "file_url": "",
                    "chemical_product": {
                        "id": 212878,
                        "reference_id": "20-CRTLJRJLKP-O",
                        "organisation_id": 6267,
                        "zdhc_pid": 205224,
                        "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
                        "version": 1,
                        "description": null,
                        "alternate_names": [
                            "P397IA55"
                        ],
                        "conformance_level_id": 3,
                        "ctz_level_id": null,
                        "status": "PUBLISHED",
                        "sds_url": null,
                        "website_url": null,
                        "created_at": "2019-06-20T00:00:00.000000Z",
                        "updated_at": "2026-03-06T00:00:00.000000Z",
                        "technical_data_sheet_url": ""
                    }
                }
            ],
            "certified_safety_data_sheets": [
                {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "mime_type": "application/octet-stream",
                    "file_size": "0",
                    "locale": "en",
                    "version": 1,
                    "chemical_product_id": 212878,
                    "organisation_id": 6267,
                    "created_at": "2019-06-20T08:55:18.000000Z",
                    "updated_at": "2020-03-03T10:26:35.000000Z",
                    "file_url": "",
                    "organisation": {
                        "id": 6267,
                        "reference_id": "01-76N8M6UUCZG-Y",
                        "type_id": 6,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "address_1": "9th floor,  Siddhivinayak Tower - 'B' Wing  B/H. DCP Office, Off: S.G. Highway Makarba",
                        "address_2": null,
                        "city": "Ahmedabad",
                        "state": "Gujarat",
                        "location": "IN",
                        "zip": "380051",
                        "phone": "8155008201",
                        "email": "sujarajesh@meghmanidyes.com",
                        "website": "https://www.meghmanidyes.com",
                        "avatar_url": null,
                        "location_name": "India"
                    },
                    "chemical_product": {
                        "id": 212878,
                        "reference_id": "20-CRTLJRJLKP-O",
                        "organisation_id": 6267,
                        "zdhc_pid": 205224,
                        "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
                        "version": 1,
                        "description": null,
                        "alternate_names": [
                            "P397IA55"
                        ],
                        "conformance_level_id": 3,
                        "ctz_level_id": null,
                        "status": "PUBLISHED",
                        "sds_url": null,
                        "website_url": null,
                        "created_at": "2019-06-20T00:00:00.000000Z",
                        "updated_at": "2026-03-06T00:00:00.000000Z",
                        "technical_data_sheet_url": ""
                    }
                },
                {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "mime_type": "application/octet-stream",
                    "file_size": "0",
                    "locale": "en",
                    "version": 1,
                    "chemical_product_id": 212878,
                    "organisation_id": 6267,
                    "created_at": "2019-06-20T08:55:18.000000Z",
                    "updated_at": "2020-03-03T10:26:35.000000Z",
                    "file_url": "",
                    "organisation": {
                        "id": 6267,
                        "reference_id": "01-76N8M6UUCZG-Y",
                        "type_id": 6,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "address_1": "9th floor,  Siddhivinayak Tower - 'B' Wing  B/H. DCP Office, Off: S.G. Highway Makarba",
                        "address_2": null,
                        "city": "Ahmedabad",
                        "state": "Gujarat",
                        "location": "IN",
                        "zip": "380051",
                        "phone": "8155008201",
                        "email": "sujarajesh@meghmanidyes.com",
                        "website": "https://www.meghmanidyes.com",
                        "avatar_url": null,
                        "location_name": "India"
                    },
                    "chemical_product": {
                        "id": 212878,
                        "reference_id": "20-CRTLJRJLKP-O",
                        "organisation_id": 6267,
                        "zdhc_pid": 205224,
                        "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
                        "version": 1,
                        "description": null,
                        "alternate_names": [
                            "P397IA55"
                        ],
                        "conformance_level_id": 3,
                        "ctz_level_id": null,
                        "status": "PUBLISHED",
                        "sds_url": null,
                        "website_url": null,
                        "created_at": "2019-06-20T00:00:00.000000Z",
                        "updated_at": "2026-03-06T00:00:00.000000Z",
                        "technical_data_sheet_url": ""
                    }
                }
            ],
            "use_types": [
                {
                    "id": 235,
                    "name": "Reactive dye",
                    "is_inactive": 0,
                    "created_at": "2026-05-08T21:42:47.000000Z",
                    "updated_at": "2026-05-08T21:42:47.000000Z",
                    "pivot": {
                        "chemical_product_id": 212878,
                        "product_use_type_id": 235,
                        "id": 2673
                    },
                    "categories": [
                        {
                            "id": 3,
                            "name": "Textile Dyes and Pigments",
                            "is_inactive": 0,
                            "created_at": "2026-05-08T21:42:46.000000Z",
                            "updated_at": "2026-05-08T21:42:46.000000Z",
                            "pivot": {
                                "product_use_type_id": 235,
                                "product_category_id": 3
                            },
                            "substrates": [
                                {
                                    "id": 2,
                                    "name": "Textile",
                                    "is_inactive": 0,
                                    "created_at": "2026-05-08T21:42:46.000000Z",
                                    "updated_at": "2026-05-08T21:42:46.000000Z",
                                    "pivot": {
                                        "product_category_id": 3,
                                        "product_substrate_id": 2
                                    }
                                }
                            ]
                        },
                        {
                            "id": 61,
                            "name": "Dyes And Pigments",
                            "is_inactive": 0,
                            "created_at": "2026-05-10T02:33:42.000000Z",
                            "updated_at": "2026-05-10T02:33:42.000000Z",
                            "pivot": {
                                "product_use_type_id": 235,
                                "product_category_id": 61
                            },
                            "substrates": []
                        }
                    ]
                }
            ],
            "activity_logs": []
        },
        "highest_mrsl_certification": {
            "id": 15779,
            "mrsl_standard_id": 281,
            "safety_data_sheet_id": 84327,
            "chemical_product_id": 212878,
            "status": "ACTIVE",
            "conformance_level_id": 3,
            "actual_validity_date_combined": "2198-08-31",
            "certification_body_name": "OEKO-TEX® Service GmbH",
            "certification_body_id": 7747
        },
        "ctz_certifications": [
            {
                "id": 265324,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null,
                "created_at": "2026-03-06T00:00:00.000000Z",
                "updated_at": "2026-03-02T00:00:00.000000Z"
            },
            {
                "id": 274036,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null,
                "created_at": "2025-02-04T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 274037,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null,
                "created_at": "2025-02-04T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 274038,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null,
                "created_at": "2025-02-04T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 550773,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": "2026-03-06T00:00:00.000000Z",
                "expired_at": "2026-03-06T23:59:59.000000Z",
                "created_at": "2026-03-06T00:00:00.000000Z",
                "updated_at": "2026-03-02T00:00:00.000000Z"
            },
            {
                "id": 658121,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658122,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658123,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658857,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658858,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658859,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            }
        ],
        "highest_ctz_certification": null
    }
}
 

Request      

PUT api/organisation/{organisation_id}/chemical/product-assignment/{id}

PATCH api/organisation/{organisation_id}/chemical/product-assignment/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product assignment. Example: 1

Body Parameters

certifications   object[]  optional    
mrsl_standard_id   integer     

The mrsl_standard_id of an existing record in the mrsl_standard_organisation table. Example: 19

ctz_standard_id   integer  optional    

The ctz_standard_id of an existing record in the ctz_standard_organisation table. Example: 7

safety_data_sheet_id   integer     

The id of an existing record in the safety_data_sheets table. Example: 3

safety_data_sheet   file  optional    

Must be a file. Must not be greater than 10240 kilobytes. Example: /tmp/phpfFahbk

Toggle Decline

requires authentication

Toggle the decline status of a product assignment

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product-assignment/sit/toggle-decline" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"reason\": \"wvhxdzyjdol\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product-assignment/sit/toggle-decline"
);

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

let body = {
    "reason": "wvhxdzyjdol"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "status": "ACCEPTED",
        "chemical_product_id": 212878,
        "organisation_id": 7747,
        "created_at": "2026-05-14T19:42:10.000000Z",
        "updated_at": "2026-05-14T19:42:10.000000Z",
        "max_conformance_level_id": null,
        "max_ctz_level_id": null,
        "conformance_level": null,
        "ctz_level": null,
        "mrsl_certifications": [
            {
                "id": 1,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 308,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 553,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 15779,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2027-01-31T00:00:00.000000Z",
                "created_at": "2026-03-06T00:00:00.000000Z",
                "updated_at": "2026-03-06T00:00:00.000000Z",
                "expired_at": null
            },
            {
                "id": 98662,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2025-01-31T00:00:00.000000Z",
                "created_at": "2023-11-08T00:00:00.000000Z",
                "updated_at": "2023-11-08T00:00:00.000000Z",
                "expired_at": "2025-01-31T23:59:59.000000Z"
            },
            {
                "id": 224448,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 243,
                "status": "ACTIVE",
                "valid_until": "2024-01-31T00:00:00.000000Z",
                "created_at": "2023-02-02T00:00:00.000000Z",
                "updated_at": "2023-02-02T00:00:00.000000Z",
                "expired_at": "2024-01-31T23:59:59.000000Z"
            }
        ],
        "chemical_product": {
            "id": 212878,
            "reference_id": "20-CRTLJRJLKP-O",
            "organisation_id": 6267,
            "zdhc_pid": 205224,
            "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
            "version": 1,
            "description": null,
            "alternate_names": [
                "P397IA55"
            ],
            "conformance_level_id": 3,
            "ctz_level_id": null,
            "status": "PUBLISHED",
            "sds_url": null,
            "website_url": null,
            "created_at": "2019-06-20T00:00:00.000000Z",
            "updated_at": "2026-03-06T00:00:00.000000Z",
            "technical_data_sheet_url": "",
            "organisation": {
                "id": 6267,
                "reference_id": "01-76N8M6UUCZG-Y",
                "type_id": 6,
                "name": "Meghmani Dyes and Intermediates LLP",
                "address_1": "9th floor,  Siddhivinayak Tower - 'B' Wing  B/H. DCP Office, Off: S.G. Highway Makarba",
                "address_2": null,
                "city": "Ahmedabad",
                "state": "Gujarat",
                "location": "IN",
                "zip": "380051",
                "phone": "8155008201",
                "email": "sujarajesh@meghmanidyes.com",
                "website": "https://www.meghmanidyes.com",
                "avatar_url": null,
                "location_name": "India"
            },
            "conformance_level": {
                "id": 3,
                "name": "Level 3",
                "created_at": null,
                "updated_at": null
            },
            "ctz_level": null,
            "highest_mrsl_certification": {
                "id": 15779,
                "mrsl_standard_id": 281,
                "safety_data_sheet_id": 84327,
                "chemical_product_id": 212878,
                "status": "ACTIVE",
                "conformance_level_id": 3,
                "actual_validity_date_combined": "2198-08-31",
                "certification_body_name": "OEKO-TEX® Service GmbH",
                "certification_body_id": 7747
            },
            "highest_ctz_certification": null,
            "certification_body_assignments": [
                {
                    "id": 1,
                    "status": "ACCEPTED",
                    "chemical_product_id": 212878,
                    "organisation_id": 7747,
                    "created_at": "2026-05-14T19:42:10.000000Z",
                    "updated_at": "2026-05-14T19:42:10.000000Z",
                    "max_conformance_level_id": null,
                    "max_ctz_level_id": null,
                    "certification_body": {
                        "id": 7747,
                        "maxio_customer_id": 309494,
                        "reference_id": "01-QAX9HHA6TQL-A",
                        "pdc_id": null,
                        "gateway_aid": "A713FG39",
                        "uuid": "9c4dc7e8-4c91-4918-9785-fff616184b7f",
                        "type_id": 7,
                        "status": "approved",
                        "name": "OEKO-TEX® Service GmbH",
                        "legal_name": "OEKO-TEX® Service GmbH",
                        "address_1": "Gutenbergstrasse 1, Zürich 8002 Switzerland",
                        "address_2": null,
                        "city": "Zurich",
                        "state": "Zurich",
                        "location": "CH",
                        "zip": "8002",
                        "phone": "+ 41 44 501 26 03",
                        "email": "j.wehrli@oekotex.com",
                        "contact_first_name": "Jonathan",
                        "contact_last_name": "Wehrli",
                        "website": null,
                        "avatar_url": null,
                        "applicant_comment": null,
                        "reviewer_comment": null,
                        "registration_mail_sent_at": null,
                        "created_at": "2020-01-03T00:00:00.000000Z",
                        "updated_at": "2026-05-12T15:16:58.000000Z",
                        "reviewer_comment_category": null,
                        "profile_reviewed_at": null,
                        "profile_reviewed_by_user_id": null,
                        "location_name": "Switzerland"
                    },
                    "mrsl_certifications": [
                        {
                            "id": 1,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2026-01-31T00:00:00.000000Z",
                            "created_at": "2025-01-30T00:00:00.000000Z",
                            "updated_at": "2025-01-30T00:00:00.000000Z",
                            "expired_at": "2026-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 308,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2026-01-31T00:00:00.000000Z",
                            "created_at": "2025-01-30T00:00:00.000000Z",
                            "updated_at": "2025-01-30T00:00:00.000000Z",
                            "expired_at": "2026-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 553,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2026-01-31T00:00:00.000000Z",
                            "created_at": "2025-01-30T00:00:00.000000Z",
                            "updated_at": "2025-01-30T00:00:00.000000Z",
                            "expired_at": "2026-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 15779,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2027-01-31T00:00:00.000000Z",
                            "created_at": "2026-03-06T00:00:00.000000Z",
                            "updated_at": "2026-03-06T00:00:00.000000Z",
                            "expired_at": null,
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 98662,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2025-01-31T00:00:00.000000Z",
                            "created_at": "2023-11-08T00:00:00.000000Z",
                            "updated_at": "2023-11-08T00:00:00.000000Z",
                            "expired_at": "2025-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 224448,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 243,
                            "status": "ACTIVE",
                            "valid_until": "2024-01-31T00:00:00.000000Z",
                            "created_at": "2023-02-02T00:00:00.000000Z",
                            "updated_at": "2023-02-02T00:00:00.000000Z",
                            "expired_at": "2024-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 243,
                                "legacy_certification_standard_id": 139,
                                "reference_id": "30-MX97SE4TFV6-Z",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v2.0",
                                "conformance_level_id": 3,
                                "start_date": "2017-12-05T00:00:00.000000Z",
                                "end_date": "2024-06-01T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": "2026-05-12T15:01:47.000000Z"
                            }
                        }
                    ]
                },
                {
                    "id": 141991,
                    "status": "ACCEPTED",
                    "chemical_product_id": 212878,
                    "organisation_id": 8608,
                    "created_at": "2026-05-14T19:42:13.000000Z",
                    "updated_at": "2026-05-14T19:42:13.000000Z",
                    "max_conformance_level_id": null,
                    "max_ctz_level_id": null,
                    "certification_body": {
                        "id": 8608,
                        "maxio_customer_id": 310355,
                        "reference_id": "01-TMEJGAMMZYV-F",
                        "pdc_id": null,
                        "gateway_aid": "A353QZ62",
                        "uuid": "ff550de3-8165-4abc-86cc-69b706f69f90",
                        "type_id": 7,
                        "status": "approved",
                        "name": "bluesign® Technologies AG",
                        "legal_name": "bluesign® Technologies AG",
                        "address_1": "Moevenstrasse 18, 9015 St. Gallen, Switzerland",
                        "address_2": null,
                        "city": "Saint Gallen",
                        "state": "Sankt Gallen",
                        "location": "CH",
                        "zip": "",
                        "phone": "+41 71 272 29 90",
                        "email": "kurt_schlaepfer@bluesign.com",
                        "contact_first_name": "Kurt",
                        "contact_last_name": "Schäpfer",
                        "website": null,
                        "avatar_url": null,
                        "applicant_comment": null,
                        "reviewer_comment": null,
                        "registration_mail_sent_at": null,
                        "created_at": "2020-01-06T00:00:00.000000Z",
                        "updated_at": "2026-05-12T15:19:44.000000Z",
                        "reviewer_comment_category": null,
                        "profile_reviewed_at": null,
                        "profile_reviewed_by_user_id": null,
                        "location_name": "Switzerland"
                    },
                    "mrsl_certifications": [
                        {
                            "id": 289979,
                            "chemical_product_id": 212878,
                            "certification_body_id": 8608,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 225,
                            "status": "ACTIVE",
                            "valid_until": "2021-01-18T00:00:00.000000Z",
                            "created_at": "2019-06-20T00:00:00.000000Z",
                            "updated_at": "2021-01-18T00:00:00.000000Z",
                            "expired_at": "2021-01-18T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 225,
                                "legacy_certification_standard_id": 2,
                                "reference_id": "30-TMER3UAGYJZ-N",
                                "name": "bluesign® Technologies AG",
                                "version": "ZDHC MRSL v1.1",
                                "conformance_level_id": 3,
                                "start_date": "2009-03-06T00:00:00.000000Z",
                                "end_date": "2030-12-17T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 305802,
                            "chemical_product_id": 212878,
                            "certification_body_id": 8608,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 232,
                            "status": "ACTIVE",
                            "valid_until": "2023-05-25T00:00:00.000000Z",
                            "created_at": "2021-01-18T00:00:00.000000Z",
                            "updated_at": "2021-01-18T00:00:00.000000Z",
                            "expired_at": "2023-05-25T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 232,
                                "legacy_certification_standard_id": 67,
                                "reference_id": "30-QAX2Y9NQWGB-N",
                                "name": "bluesign® Technologies AG",
                                "version": "ZDHC MRSL v2.0",
                                "conformance_level_id": 3,
                                "start_date": "2019-09-09T00:00:00.000000Z",
                                "end_date": "2099-01-01T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 311374,
                            "chemical_product_id": 212878,
                            "certification_body_id": 8608,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 256,
                            "status": "ACTIVE",
                            "valid_until": "2024-08-29T00:00:00.000000Z",
                            "created_at": "2023-06-16T00:00:00.000000Z",
                            "updated_at": "2023-06-16T00:00:00.000000Z",
                            "expired_at": "2024-08-29T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 256,
                                "legacy_certification_standard_id": 195,
                                "reference_id": "30-PYSW66TBNP6-J",
                                "name": "bluesign® Technologies AG",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2002-03-10T00:00:00.000000Z",
                                "end_date": "2100-09-05T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 316061,
                            "chemical_product_id": 212878,
                            "certification_body_id": 8608,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 256,
                            "status": "ACTIVE",
                            "valid_until": "2099-12-31T00:00:00.000000Z",
                            "created_at": "2025-01-06T00:00:00.000000Z",
                            "updated_at": "2025-04-30T00:00:00.000000Z",
                            "expired_at": null,
                            "mrsl_standard": {
                                "id": 256,
                                "legacy_certification_standard_id": 195,
                                "reference_id": "30-PYSW66TBNP6-J",
                                "name": "bluesign® Technologies AG",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2002-03-10T00:00:00.000000Z",
                                "end_date": "2100-09-05T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        }
                    ]
                }
            ],
            "safety_data_sheets": [
                {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "mime_type": "application/octet-stream",
                    "file_size": "0",
                    "locale": "en",
                    "version": 1,
                    "chemical_product_id": 212878,
                    "organisation_id": 6267,
                    "created_at": "2019-06-20T08:55:18.000000Z",
                    "updated_at": "2020-03-03T10:26:35.000000Z",
                    "file_url": "",
                    "chemical_product": {
                        "id": 212878,
                        "reference_id": "20-CRTLJRJLKP-O",
                        "organisation_id": 6267,
                        "zdhc_pid": 205224,
                        "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
                        "version": 1,
                        "description": null,
                        "alternate_names": [
                            "P397IA55"
                        ],
                        "conformance_level_id": 3,
                        "ctz_level_id": null,
                        "status": "PUBLISHED",
                        "sds_url": null,
                        "website_url": null,
                        "created_at": "2019-06-20T00:00:00.000000Z",
                        "updated_at": "2026-03-06T00:00:00.000000Z",
                        "technical_data_sheet_url": ""
                    }
                }
            ],
            "certified_safety_data_sheets": [
                {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "mime_type": "application/octet-stream",
                    "file_size": "0",
                    "locale": "en",
                    "version": 1,
                    "chemical_product_id": 212878,
                    "organisation_id": 6267,
                    "created_at": "2019-06-20T08:55:18.000000Z",
                    "updated_at": "2020-03-03T10:26:35.000000Z",
                    "file_url": "",
                    "organisation": {
                        "id": 6267,
                        "reference_id": "01-76N8M6UUCZG-Y",
                        "type_id": 6,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "address_1": "9th floor,  Siddhivinayak Tower - 'B' Wing  B/H. DCP Office, Off: S.G. Highway Makarba",
                        "address_2": null,
                        "city": "Ahmedabad",
                        "state": "Gujarat",
                        "location": "IN",
                        "zip": "380051",
                        "phone": "8155008201",
                        "email": "sujarajesh@meghmanidyes.com",
                        "website": "https://www.meghmanidyes.com",
                        "avatar_url": null,
                        "location_name": "India"
                    },
                    "chemical_product": {
                        "id": 212878,
                        "reference_id": "20-CRTLJRJLKP-O",
                        "organisation_id": 6267,
                        "zdhc_pid": 205224,
                        "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
                        "version": 1,
                        "description": null,
                        "alternate_names": [
                            "P397IA55"
                        ],
                        "conformance_level_id": 3,
                        "ctz_level_id": null,
                        "status": "PUBLISHED",
                        "sds_url": null,
                        "website_url": null,
                        "created_at": "2019-06-20T00:00:00.000000Z",
                        "updated_at": "2026-03-06T00:00:00.000000Z",
                        "technical_data_sheet_url": ""
                    }
                },
                {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "mime_type": "application/octet-stream",
                    "file_size": "0",
                    "locale": "en",
                    "version": 1,
                    "chemical_product_id": 212878,
                    "organisation_id": 6267,
                    "created_at": "2019-06-20T08:55:18.000000Z",
                    "updated_at": "2020-03-03T10:26:35.000000Z",
                    "file_url": "",
                    "organisation": {
                        "id": 6267,
                        "reference_id": "01-76N8M6UUCZG-Y",
                        "type_id": 6,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "address_1": "9th floor,  Siddhivinayak Tower - 'B' Wing  B/H. DCP Office, Off: S.G. Highway Makarba",
                        "address_2": null,
                        "city": "Ahmedabad",
                        "state": "Gujarat",
                        "location": "IN",
                        "zip": "380051",
                        "phone": "8155008201",
                        "email": "sujarajesh@meghmanidyes.com",
                        "website": "https://www.meghmanidyes.com",
                        "avatar_url": null,
                        "location_name": "India"
                    },
                    "chemical_product": {
                        "id": 212878,
                        "reference_id": "20-CRTLJRJLKP-O",
                        "organisation_id": 6267,
                        "zdhc_pid": 205224,
                        "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
                        "version": 1,
                        "description": null,
                        "alternate_names": [
                            "P397IA55"
                        ],
                        "conformance_level_id": 3,
                        "ctz_level_id": null,
                        "status": "PUBLISHED",
                        "sds_url": null,
                        "website_url": null,
                        "created_at": "2019-06-20T00:00:00.000000Z",
                        "updated_at": "2026-03-06T00:00:00.000000Z",
                        "technical_data_sheet_url": ""
                    }
                }
            ],
            "use_types": [
                {
                    "id": 235,
                    "name": "Reactive dye",
                    "is_inactive": 0,
                    "created_at": "2026-05-08T21:42:47.000000Z",
                    "updated_at": "2026-05-08T21:42:47.000000Z",
                    "pivot": {
                        "chemical_product_id": 212878,
                        "product_use_type_id": 235,
                        "id": 2673
                    },
                    "categories": [
                        {
                            "id": 3,
                            "name": "Textile Dyes and Pigments",
                            "is_inactive": 0,
                            "created_at": "2026-05-08T21:42:46.000000Z",
                            "updated_at": "2026-05-08T21:42:46.000000Z",
                            "pivot": {
                                "product_use_type_id": 235,
                                "product_category_id": 3
                            },
                            "substrates": [
                                {
                                    "id": 2,
                                    "name": "Textile",
                                    "is_inactive": 0,
                                    "created_at": "2026-05-08T21:42:46.000000Z",
                                    "updated_at": "2026-05-08T21:42:46.000000Z",
                                    "pivot": {
                                        "product_category_id": 3,
                                        "product_substrate_id": 2
                                    }
                                }
                            ]
                        },
                        {
                            "id": 61,
                            "name": "Dyes And Pigments",
                            "is_inactive": 0,
                            "created_at": "2026-05-10T02:33:42.000000Z",
                            "updated_at": "2026-05-10T02:33:42.000000Z",
                            "pivot": {
                                "product_use_type_id": 235,
                                "product_category_id": 61
                            },
                            "substrates": []
                        }
                    ]
                }
            ],
            "activity_logs": []
        },
        "highest_mrsl_certification": {
            "id": 15779,
            "mrsl_standard_id": 281,
            "safety_data_sheet_id": 84327,
            "chemical_product_id": 212878,
            "status": "ACTIVE",
            "conformance_level_id": 3,
            "actual_validity_date_combined": "2198-08-31",
            "certification_body_name": "OEKO-TEX® Service GmbH",
            "certification_body_id": 7747
        },
        "ctz_certifications": [
            {
                "id": 265324,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null,
                "created_at": "2026-03-06T00:00:00.000000Z",
                "updated_at": "2026-03-02T00:00:00.000000Z"
            },
            {
                "id": 274036,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null,
                "created_at": "2025-02-04T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 274037,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null,
                "created_at": "2025-02-04T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 274038,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null,
                "created_at": "2025-02-04T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 550773,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": "2026-03-06T00:00:00.000000Z",
                "expired_at": "2026-03-06T23:59:59.000000Z",
                "created_at": "2026-03-06T00:00:00.000000Z",
                "updated_at": "2026-03-02T00:00:00.000000Z"
            },
            {
                "id": 658121,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658122,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658123,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658857,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658858,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658859,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            }
        ],
        "highest_ctz_certification": null
    }
}
 

Request      

POST api/organisation/{organisation_id}/chemical/product-assignment/{product_assignment_id}/toggle-decline

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

product_assignment_id   string     

The ID of the product assignment. Example: sit

Body Parameters

reason   string  optional    

This field is required unless status is in DECLINED. Must not be greater than 255 characters. Example: wvhxdzyjdol

Show

requires authentication

Show a product assignment

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/product-assignment/1" \
    --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/organisation/1/chemical/product-assignment/1"
);

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,
        "status": "ACCEPTED",
        "chemical_product_id": 212878,
        "organisation_id": 7747,
        "created_at": "2026-05-14T19:42:10.000000Z",
        "updated_at": "2026-05-14T19:42:10.000000Z",
        "max_conformance_level_id": null,
        "max_ctz_level_id": null,
        "conformance_level": null,
        "ctz_level": null,
        "mrsl_certifications": [
            {
                "id": 1,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 308,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 553,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2026-01-31T00:00:00.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2026-01-31T23:59:59.000000Z"
            },
            {
                "id": 15779,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2027-01-31T00:00:00.000000Z",
                "created_at": "2026-03-06T00:00:00.000000Z",
                "updated_at": "2026-03-06T00:00:00.000000Z",
                "expired_at": null
            },
            {
                "id": 98662,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 281,
                "status": "ACTIVE",
                "valid_until": "2025-01-31T00:00:00.000000Z",
                "created_at": "2023-11-08T00:00:00.000000Z",
                "updated_at": "2023-11-08T00:00:00.000000Z",
                "expired_at": "2025-01-31T23:59:59.000000Z"
            },
            {
                "id": 224448,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "mrsl_standard_id": 243,
                "status": "ACTIVE",
                "valid_until": "2024-01-31T00:00:00.000000Z",
                "created_at": "2023-02-02T00:00:00.000000Z",
                "updated_at": "2023-02-02T00:00:00.000000Z",
                "expired_at": "2024-01-31T23:59:59.000000Z"
            }
        ],
        "chemical_product": {
            "id": 212878,
            "reference_id": "20-CRTLJRJLKP-O",
            "organisation_id": 6267,
            "zdhc_pid": 205224,
            "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
            "version": 1,
            "description": null,
            "alternate_names": [
                "P397IA55"
            ],
            "conformance_level_id": 3,
            "ctz_level_id": null,
            "status": "PUBLISHED",
            "sds_url": null,
            "website_url": null,
            "created_at": "2019-06-20T00:00:00.000000Z",
            "updated_at": "2026-03-06T00:00:00.000000Z",
            "technical_data_sheet_url": "",
            "organisation": {
                "id": 6267,
                "reference_id": "01-76N8M6UUCZG-Y",
                "type_id": 6,
                "name": "Meghmani Dyes and Intermediates LLP",
                "address_1": "9th floor,  Siddhivinayak Tower - 'B' Wing  B/H. DCP Office, Off: S.G. Highway Makarba",
                "address_2": null,
                "city": "Ahmedabad",
                "state": "Gujarat",
                "location": "IN",
                "zip": "380051",
                "phone": "8155008201",
                "email": "sujarajesh@meghmanidyes.com",
                "website": "https://www.meghmanidyes.com",
                "avatar_url": null,
                "location_name": "India"
            },
            "conformance_level": {
                "id": 3,
                "name": "Level 3",
                "created_at": null,
                "updated_at": null
            },
            "ctz_level": null,
            "highest_mrsl_certification": {
                "id": 15779,
                "mrsl_standard_id": 281,
                "safety_data_sheet_id": 84327,
                "chemical_product_id": 212878,
                "status": "ACTIVE",
                "conformance_level_id": 3,
                "actual_validity_date_combined": "2198-08-31",
                "certification_body_name": "OEKO-TEX® Service GmbH",
                "certification_body_id": 7747
            },
            "highest_ctz_certification": null,
            "certification_body_assignments": [
                {
                    "id": 1,
                    "status": "ACCEPTED",
                    "chemical_product_id": 212878,
                    "organisation_id": 7747,
                    "created_at": "2026-05-14T19:42:10.000000Z",
                    "updated_at": "2026-05-14T19:42:10.000000Z",
                    "max_conformance_level_id": null,
                    "max_ctz_level_id": null,
                    "certification_body": {
                        "id": 7747,
                        "maxio_customer_id": 309494,
                        "reference_id": "01-QAX9HHA6TQL-A",
                        "pdc_id": null,
                        "gateway_aid": "A713FG39",
                        "uuid": "9c4dc7e8-4c91-4918-9785-fff616184b7f",
                        "type_id": 7,
                        "status": "approved",
                        "name": "OEKO-TEX® Service GmbH",
                        "legal_name": "OEKO-TEX® Service GmbH",
                        "address_1": "Gutenbergstrasse 1, Zürich 8002 Switzerland",
                        "address_2": null,
                        "city": "Zurich",
                        "state": "Zurich",
                        "location": "CH",
                        "zip": "8002",
                        "phone": "+ 41 44 501 26 03",
                        "email": "j.wehrli@oekotex.com",
                        "contact_first_name": "Jonathan",
                        "contact_last_name": "Wehrli",
                        "website": null,
                        "avatar_url": null,
                        "applicant_comment": null,
                        "reviewer_comment": null,
                        "registration_mail_sent_at": null,
                        "created_at": "2020-01-03T00:00:00.000000Z",
                        "updated_at": "2026-05-12T15:16:58.000000Z",
                        "reviewer_comment_category": null,
                        "profile_reviewed_at": null,
                        "profile_reviewed_by_user_id": null,
                        "location_name": "Switzerland"
                    },
                    "mrsl_certifications": [
                        {
                            "id": 1,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2026-01-31T00:00:00.000000Z",
                            "created_at": "2025-01-30T00:00:00.000000Z",
                            "updated_at": "2025-01-30T00:00:00.000000Z",
                            "expired_at": "2026-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 308,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2026-01-31T00:00:00.000000Z",
                            "created_at": "2025-01-30T00:00:00.000000Z",
                            "updated_at": "2025-01-30T00:00:00.000000Z",
                            "expired_at": "2026-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 553,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2026-01-31T00:00:00.000000Z",
                            "created_at": "2025-01-30T00:00:00.000000Z",
                            "updated_at": "2025-01-30T00:00:00.000000Z",
                            "expired_at": "2026-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 15779,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2027-01-31T00:00:00.000000Z",
                            "created_at": "2026-03-06T00:00:00.000000Z",
                            "updated_at": "2026-03-06T00:00:00.000000Z",
                            "expired_at": null,
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 98662,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 281,
                            "status": "ACTIVE",
                            "valid_until": "2025-01-31T00:00:00.000000Z",
                            "created_at": "2023-11-08T00:00:00.000000Z",
                            "updated_at": "2023-11-08T00:00:00.000000Z",
                            "expired_at": "2025-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 281,
                                "legacy_certification_standard_id": 263,
                                "reference_id": "30-MX97SXPN7QK-T",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2020-03-20T00:00:00.000000Z",
                                "end_date": "2198-08-31T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 224448,
                            "chemical_product_id": 212878,
                            "certification_body_id": 7747,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 243,
                            "status": "ACTIVE",
                            "valid_until": "2024-01-31T00:00:00.000000Z",
                            "created_at": "2023-02-02T00:00:00.000000Z",
                            "updated_at": "2023-02-02T00:00:00.000000Z",
                            "expired_at": "2024-01-31T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 243,
                                "legacy_certification_standard_id": 139,
                                "reference_id": "30-MX97SE4TFV6-Z",
                                "name": "OEKO-TEX® Service GmbH ECO PASSPORT - Level 3",
                                "version": "ZDHC MRSL v2.0",
                                "conformance_level_id": 3,
                                "start_date": "2017-12-05T00:00:00.000000Z",
                                "end_date": "2024-06-01T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": "2026-05-12T15:01:47.000000Z"
                            }
                        }
                    ]
                },
                {
                    "id": 141991,
                    "status": "ACCEPTED",
                    "chemical_product_id": 212878,
                    "organisation_id": 8608,
                    "created_at": "2026-05-14T19:42:13.000000Z",
                    "updated_at": "2026-05-14T19:42:13.000000Z",
                    "max_conformance_level_id": null,
                    "max_ctz_level_id": null,
                    "certification_body": {
                        "id": 8608,
                        "maxio_customer_id": 310355,
                        "reference_id": "01-TMEJGAMMZYV-F",
                        "pdc_id": null,
                        "gateway_aid": "A353QZ62",
                        "uuid": "ff550de3-8165-4abc-86cc-69b706f69f90",
                        "type_id": 7,
                        "status": "approved",
                        "name": "bluesign® Technologies AG",
                        "legal_name": "bluesign® Technologies AG",
                        "address_1": "Moevenstrasse 18, 9015 St. Gallen, Switzerland",
                        "address_2": null,
                        "city": "Saint Gallen",
                        "state": "Sankt Gallen",
                        "location": "CH",
                        "zip": "",
                        "phone": "+41 71 272 29 90",
                        "email": "kurt_schlaepfer@bluesign.com",
                        "contact_first_name": "Kurt",
                        "contact_last_name": "Schäpfer",
                        "website": null,
                        "avatar_url": null,
                        "applicant_comment": null,
                        "reviewer_comment": null,
                        "registration_mail_sent_at": null,
                        "created_at": "2020-01-06T00:00:00.000000Z",
                        "updated_at": "2026-05-12T15:19:44.000000Z",
                        "reviewer_comment_category": null,
                        "profile_reviewed_at": null,
                        "profile_reviewed_by_user_id": null,
                        "location_name": "Switzerland"
                    },
                    "mrsl_certifications": [
                        {
                            "id": 289979,
                            "chemical_product_id": 212878,
                            "certification_body_id": 8608,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 225,
                            "status": "ACTIVE",
                            "valid_until": "2021-01-18T00:00:00.000000Z",
                            "created_at": "2019-06-20T00:00:00.000000Z",
                            "updated_at": "2021-01-18T00:00:00.000000Z",
                            "expired_at": "2021-01-18T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 225,
                                "legacy_certification_standard_id": 2,
                                "reference_id": "30-TMER3UAGYJZ-N",
                                "name": "bluesign® Technologies AG",
                                "version": "ZDHC MRSL v1.1",
                                "conformance_level_id": 3,
                                "start_date": "2009-03-06T00:00:00.000000Z",
                                "end_date": "2030-12-17T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 305802,
                            "chemical_product_id": 212878,
                            "certification_body_id": 8608,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 232,
                            "status": "ACTIVE",
                            "valid_until": "2023-05-25T00:00:00.000000Z",
                            "created_at": "2021-01-18T00:00:00.000000Z",
                            "updated_at": "2021-01-18T00:00:00.000000Z",
                            "expired_at": "2023-05-25T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 232,
                                "legacy_certification_standard_id": 67,
                                "reference_id": "30-QAX2Y9NQWGB-N",
                                "name": "bluesign® Technologies AG",
                                "version": "ZDHC MRSL v2.0",
                                "conformance_level_id": 3,
                                "start_date": "2019-09-09T00:00:00.000000Z",
                                "end_date": "2099-01-01T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 311374,
                            "chemical_product_id": 212878,
                            "certification_body_id": 8608,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 256,
                            "status": "ACTIVE",
                            "valid_until": "2024-08-29T00:00:00.000000Z",
                            "created_at": "2023-06-16T00:00:00.000000Z",
                            "updated_at": "2023-06-16T00:00:00.000000Z",
                            "expired_at": "2024-08-29T23:59:59.000000Z",
                            "mrsl_standard": {
                                "id": 256,
                                "legacy_certification_standard_id": 195,
                                "reference_id": "30-PYSW66TBNP6-J",
                                "name": "bluesign® Technologies AG",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2002-03-10T00:00:00.000000Z",
                                "end_date": "2100-09-05T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        },
                        {
                            "id": 316061,
                            "chemical_product_id": 212878,
                            "certification_body_id": 8608,
                            "safety_data_sheet_id": 84327,
                            "mrsl_standard_id": 256,
                            "status": "ACTIVE",
                            "valid_until": "2099-12-31T00:00:00.000000Z",
                            "created_at": "2025-01-06T00:00:00.000000Z",
                            "updated_at": "2025-04-30T00:00:00.000000Z",
                            "expired_at": null,
                            "mrsl_standard": {
                                "id": 256,
                                "legacy_certification_standard_id": 195,
                                "reference_id": "30-PYSW66TBNP6-J",
                                "name": "bluesign® Technologies AG",
                                "version": "ZDHC MRSL v3.1",
                                "conformance_level_id": 3,
                                "start_date": "2002-03-10T00:00:00.000000Z",
                                "end_date": "2100-09-05T00:00:00.000000Z",
                                "status": "PASSED",
                                "created_at": "2026-05-08T21:42:18.000000Z",
                                "updated_at": "2026-05-12T15:01:47.000000Z",
                                "expired_at": null
                            }
                        }
                    ]
                }
            ],
            "safety_data_sheets": [
                {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "mime_type": "application/octet-stream",
                    "file_size": "0",
                    "locale": "en",
                    "version": 1,
                    "chemical_product_id": 212878,
                    "organisation_id": 6267,
                    "created_at": "2019-06-20T08:55:18.000000Z",
                    "updated_at": "2020-03-03T10:26:35.000000Z",
                    "file_url": "",
                    "chemical_product": {
                        "id": 212878,
                        "reference_id": "20-CRTLJRJLKP-O",
                        "organisation_id": 6267,
                        "zdhc_pid": 205224,
                        "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
                        "version": 1,
                        "description": null,
                        "alternate_names": [
                            "P397IA55"
                        ],
                        "conformance_level_id": 3,
                        "ctz_level_id": null,
                        "status": "PUBLISHED",
                        "sds_url": null,
                        "website_url": null,
                        "created_at": "2019-06-20T00:00:00.000000Z",
                        "updated_at": "2026-03-06T00:00:00.000000Z",
                        "technical_data_sheet_url": ""
                    }
                }
            ],
            "certified_safety_data_sheets": [
                {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "mime_type": "application/octet-stream",
                    "file_size": "0",
                    "locale": "en",
                    "version": 1,
                    "chemical_product_id": 212878,
                    "organisation_id": 6267,
                    "created_at": "2019-06-20T08:55:18.000000Z",
                    "updated_at": "2020-03-03T10:26:35.000000Z",
                    "file_url": "",
                    "organisation": {
                        "id": 6267,
                        "reference_id": "01-76N8M6UUCZG-Y",
                        "type_id": 6,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "address_1": "9th floor,  Siddhivinayak Tower - 'B' Wing  B/H. DCP Office, Off: S.G. Highway Makarba",
                        "address_2": null,
                        "city": "Ahmedabad",
                        "state": "Gujarat",
                        "location": "IN",
                        "zip": "380051",
                        "phone": "8155008201",
                        "email": "sujarajesh@meghmanidyes.com",
                        "website": "https://www.meghmanidyes.com",
                        "avatar_url": null,
                        "location_name": "India"
                    },
                    "chemical_product": {
                        "id": 212878,
                        "reference_id": "20-CRTLJRJLKP-O",
                        "organisation_id": 6267,
                        "zdhc_pid": 205224,
                        "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
                        "version": 1,
                        "description": null,
                        "alternate_names": [
                            "P397IA55"
                        ],
                        "conformance_level_id": 3,
                        "ctz_level_id": null,
                        "status": "PUBLISHED",
                        "sds_url": null,
                        "website_url": null,
                        "created_at": "2019-06-20T00:00:00.000000Z",
                        "updated_at": "2026-03-06T00:00:00.000000Z",
                        "technical_data_sheet_url": ""
                    }
                },
                {
                    "id": 84327,
                    "file_name": "MSDS YELLOW RNL 150%.pdf",
                    "mime_type": "application/octet-stream",
                    "file_size": "0",
                    "locale": "en",
                    "version": 1,
                    "chemical_product_id": 212878,
                    "organisation_id": 6267,
                    "created_at": "2019-06-20T08:55:18.000000Z",
                    "updated_at": "2020-03-03T10:26:35.000000Z",
                    "file_url": "",
                    "organisation": {
                        "id": 6267,
                        "reference_id": "01-76N8M6UUCZG-Y",
                        "type_id": 6,
                        "name": "Meghmani Dyes and Intermediates LLP",
                        "address_1": "9th floor,  Siddhivinayak Tower - 'B' Wing  B/H. DCP Office, Off: S.G. Highway Makarba",
                        "address_2": null,
                        "city": "Ahmedabad",
                        "state": "Gujarat",
                        "location": "IN",
                        "zip": "380051",
                        "phone": "8155008201",
                        "email": "sujarajesh@meghmanidyes.com",
                        "website": "https://www.meghmanidyes.com",
                        "avatar_url": null,
                        "location_name": "India"
                    },
                    "chemical_product": {
                        "id": 212878,
                        "reference_id": "20-CRTLJRJLKP-O",
                        "organisation_id": 6267,
                        "zdhc_pid": 205224,
                        "name": "REACTOBOND YELLOW RNL 150% [P397IA55]",
                        "version": 1,
                        "description": null,
                        "alternate_names": [
                            "P397IA55"
                        ],
                        "conformance_level_id": 3,
                        "ctz_level_id": null,
                        "status": "PUBLISHED",
                        "sds_url": null,
                        "website_url": null,
                        "created_at": "2019-06-20T00:00:00.000000Z",
                        "updated_at": "2026-03-06T00:00:00.000000Z",
                        "technical_data_sheet_url": ""
                    }
                }
            ],
            "use_types": [
                {
                    "id": 235,
                    "name": "Reactive dye",
                    "is_inactive": 0,
                    "created_at": "2026-05-08T21:42:47.000000Z",
                    "updated_at": "2026-05-08T21:42:47.000000Z",
                    "pivot": {
                        "chemical_product_id": 212878,
                        "product_use_type_id": 235,
                        "id": 2673
                    },
                    "categories": [
                        {
                            "id": 3,
                            "name": "Textile Dyes and Pigments",
                            "is_inactive": 0,
                            "created_at": "2026-05-08T21:42:46.000000Z",
                            "updated_at": "2026-05-08T21:42:46.000000Z",
                            "pivot": {
                                "product_use_type_id": 235,
                                "product_category_id": 3
                            },
                            "substrates": [
                                {
                                    "id": 2,
                                    "name": "Textile",
                                    "is_inactive": 0,
                                    "created_at": "2026-05-08T21:42:46.000000Z",
                                    "updated_at": "2026-05-08T21:42:46.000000Z",
                                    "pivot": {
                                        "product_category_id": 3,
                                        "product_substrate_id": 2
                                    }
                                }
                            ]
                        },
                        {
                            "id": 61,
                            "name": "Dyes And Pigments",
                            "is_inactive": 0,
                            "created_at": "2026-05-10T02:33:42.000000Z",
                            "updated_at": "2026-05-10T02:33:42.000000Z",
                            "pivot": {
                                "product_use_type_id": 235,
                                "product_category_id": 61
                            },
                            "substrates": []
                        }
                    ]
                }
            ],
            "activity_logs": []
        },
        "highest_mrsl_certification": {
            "id": 15779,
            "mrsl_standard_id": 281,
            "safety_data_sheet_id": 84327,
            "chemical_product_id": 212878,
            "status": "ACTIVE",
            "conformance_level_id": 3,
            "actual_validity_date_combined": "2198-08-31",
            "certification_body_name": "OEKO-TEX® Service GmbH",
            "certification_body_id": 7747
        },
        "ctz_certifications": [
            {
                "id": 265324,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null,
                "created_at": "2026-03-06T00:00:00.000000Z",
                "updated_at": "2026-03-02T00:00:00.000000Z"
            },
            {
                "id": 274036,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null,
                "created_at": "2025-02-04T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 274037,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null,
                "created_at": "2025-02-04T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 274038,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": null,
                "expired_at": null,
                "created_at": "2025-02-04T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 550773,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": "2026-03-06T00:00:00.000000Z",
                "expired_at": "2026-03-06T23:59:59.000000Z",
                "created_at": "2026-03-06T00:00:00.000000Z",
                "updated_at": "2026-03-02T00:00:00.000000Z"
            },
            {
                "id": 658121,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658122,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658123,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 4,
                "status": "ACTIVE",
                "valid_until": "2025-02-04T00:00:00.000000Z",
                "expired_at": "2025-02-04T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658857,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658858,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            },
            {
                "id": 658859,
                "chemical_product_id": 212878,
                "certification_body_id": 7747,
                "safety_data_sheet_id": 84327,
                "ctz_standard_id": 3,
                "status": "ACTIVE",
                "valid_until": "2025-01-30T00:00:00.000000Z",
                "expired_at": "2025-01-30T23:59:59.000000Z",
                "created_at": "2025-01-30T00:00:00.000000Z",
                "updated_at": "2025-01-24T00:00:00.000000Z"
            }
        ],
        "highest_ctz_certification": null
    }
}
 

Request      

GET api/organisation/{organisation_id}/chemical/product-assignment/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product assignment. Example: 1

Product Category

Index

requires authentication

List all product categories

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-category?per_page=1&page=1&filter%5Bname%5D=dolores&filter%5Bis_inactive%5D=1&filter%5Bcreated_at%5D=id&filter%5Bupdated_at%5D=illo&sort=name&search=deserunt&column=name" \
    --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/organisation/1/chemical/classification/product-category"
);

const params = {
    "per_page": "1",
    "page": "1",
    "filter[name]": "dolores",
    "filter[is_inactive]": "1",
    "filter[created_at]": "id",
    "filter[updated_at]": "illo",
    "sort": "name",
    "search": "deserunt",
    "column": "name",
};
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,
            "name": "Colorant",
            "is_inactive": 0,
            "created_at": "2026-05-08T21:42:46.000000Z",
            "updated_at": "2026-05-08T21:42:46.000000Z",
            "substrates": [
                {
                    "id": 1,
                    "name": "Synthetic",
                    "is_inactive": 0,
                    "created_at": "2026-05-08T21:42:46.000000Z",
                    "updated_at": "2026-05-08T21:42:46.000000Z",
                    "pivot": {
                        "product_category_id": 1,
                        "product_substrate_id": 1
                    }
                }
            ]
        },
        {
            "id": 1,
            "name": "Colorant",
            "is_inactive": 0,
            "created_at": "2026-05-08T21:42:46.000000Z",
            "updated_at": "2026-05-08T21:42:46.000000Z",
            "substrates": [
                {
                    "id": 1,
                    "name": "Synthetic",
                    "is_inactive": 0,
                    "created_at": "2026-05-08T21:42:46.000000Z",
                    "updated_at": "2026-05-08T21:42:46.000000Z",
                    "pivot": {
                        "product_category_id": 1,
                        "product_substrate_id": 1
                    }
                }
            ]
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/organisation/{organisation_id}/chemical/classification/product-category

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 1

page   integer  optional    

the page number to show. Example: 1

filter[name]   string  optional    

Filter column name by any accepted value. Filter by name Example: dolores

filter[is_inactive]   boolean  optional    

Filter column is_inactive by any accepted value. Filter by inactive status Example: true

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. Filter by created date Example: id

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. Filter by updated date Example: illo

filter[substrates.name]   string  optional    

Filter column substrates.name by any accepted value. Filter by substrates name Example: perspiciatis

filter[substrates.id]   integer  optional    

Filter column substrates.id by any accepted value. Filter by substrate ID Example: 5

sort   string  optional    

sort by any accepted column: name, is_inactive, created_at, updated_at. prefix a "-" before the column name to sort in descending order Example: name

search   string  optional    

Search in all of these columns: name Example: deserunt

column   string  optional    

get a distinct list of filterable values for any of the columns: name, is_inactive, created_at, updated_at, substrates.name. Example: name

Show

requires authentication

Show a product category

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-category/1" \
    --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/organisation/1/chemical/classification/product-category/1"
);

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,
        "name": "Colorant",
        "is_inactive": 0,
        "created_at": "2026-05-08T21:42:46.000000Z",
        "updated_at": "2026-05-08T21:42:46.000000Z",
        "substrates": [
            {
                "id": 1,
                "name": "Synthetic",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_category_id": 1,
                    "product_substrate_id": 1
                }
            }
        ]
    }
}
 

Request      

GET api/organisation/{organisation_id}/chemical/classification/product-category/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product category. Example: 1

Store

requires authentication

Store a product category

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-category" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"fbmpsgr\",
    \"is_inactive\": true,
    \"substrates\": [
        13
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-category"
);

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

let body = {
    "name": "fbmpsgr",
    "is_inactive": true,
    "substrates": [
        13
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "name": "Colorant",
        "is_inactive": 0,
        "created_at": "2026-05-08T21:42:46.000000Z",
        "updated_at": "2026-05-08T21:42:46.000000Z",
        "substrates": [
            {
                "id": 1,
                "name": "Synthetic",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_category_id": 1,
                    "product_substrate_id": 1
                }
            }
        ]
    }
}
 

Request      

POST api/organisation/{organisation_id}/chemical/classification/product-category

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: fbmpsgr

is_inactive   boolean  optional    

Example: true

substrates   integer[]  optional    

The id of an existing record in the product_substrates table.

Update

requires authentication

Update a product category

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-category/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"secsytmeuxd\",
    \"is_inactive\": true,
    \"substrates\": [
        18
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-category/1"
);

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

let body = {
    "name": "secsytmeuxd",
    "is_inactive": true,
    "substrates": [
        18
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "name": "Colorant",
        "is_inactive": 0,
        "created_at": "2026-05-08T21:42:46.000000Z",
        "updated_at": "2026-05-08T21:42:46.000000Z",
        "substrates": [
            {
                "id": 1,
                "name": "Synthetic",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_category_id": 1,
                    "product_substrate_id": 1
                }
            }
        ]
    }
}
 

Request      

PUT api/organisation/{organisation_id}/chemical/classification/product-category/{id}

PATCH api/organisation/{organisation_id}/chemical/classification/product-category/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product category. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: secsytmeuxd

is_inactive   boolean  optional    

Example: true

substrates   integer[]  optional    

The id of an existing record in the product_substrates table.

Destroy

requires authentication

Destroy a product category

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-category/1" \
    --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/organisation/1/chemical/classification/product-category/1"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Product category deleted successfully."
}
 

Request      

DELETE api/organisation/{organisation_id}/chemical/classification/product-category/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product category. Example: 1

Product Substrate

Index

requires authentication

Get Product Substrates

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-substrate?per_page=15&page=1&filter%5Bname%5D=mollitia&filter%5Bis_inactive%5D=&filter%5Bcategories_count%5D=3&filter%5Buse_types_count%5D=14&filter%5Bupdated_at%5D=fugit&filter%5Bcreated_at%5D=ipsum&sort=name&column=name" \
    --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/organisation/1/chemical/classification/product-substrate"
);

const params = {
    "per_page": "15",
    "page": "1",
    "filter[name]": "mollitia",
    "filter[is_inactive]": "0",
    "filter[categories_count]": "3",
    "filter[use_types_count]": "14",
    "filter[updated_at]": "fugit",
    "filter[created_at]": "ipsum",
    "sort": "name",
    "column": "name",
};
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,
            "name": "Synthetic",
            "is_inactive": 0,
            "created_at": "2026-05-08T21:42:46.000000Z",
            "updated_at": "2026-05-08T21:42:46.000000Z",
            "categories_count": null,
            "use_types_count": null
        },
        {
            "id": 1,
            "name": "Synthetic",
            "is_inactive": 0,
            "created_at": "2026-05-08T21:42:46.000000Z",
            "updated_at": "2026-05-08T21:42:46.000000Z",
            "categories_count": null,
            "use_types_count": null
        }
    ]
}
 

Request      

GET api/organisation/{organisation_id}/chemical/classification/product-substrate

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 15

page   integer  optional    

the page number to show. Example: 1

filter[name]   string  optional    

Filter column name by any accepted value. Filter by name Example: mollitia

filter[is_inactive]   boolean  optional    

Filter column is_inactive by any accepted value. Filter by inactive status Example: false

filter[categories_count]   integer  optional    

Filter column categories_count by any accepted value. Filter by categories count Example: 3

filter[use_types_count]   integer  optional    

Filter column use_types_count by any accepted value. Filter by use types count Example: 14

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. Filter by updated date Example: fugit

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. Filter by created date Example: ipsum

sort   string  optional    

sort by any accepted column: name, categories_count, use_types_count, is_inactive, updated_at, created_at. prefix a "-" before the column name to sort in descending order Example: name

column   string  optional    

get a distinct list of filterable values for any of the columns: name, categories_count, use_types_count, is_inactive, updated_at, created_at. Example: name

Show

requires authentication

Show a product substrate

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-substrate/1" \
    --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/organisation/1/chemical/classification/product-substrate/1"
);

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,
        "name": "Synthetic",
        "is_inactive": 0,
        "created_at": "2026-05-08T21:42:46.000000Z",
        "updated_at": "2026-05-08T21:42:46.000000Z"
    }
}
 

Request      

GET api/organisation/{organisation_id}/chemical/classification/product-substrate/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product substrate. Example: 1

Store

requires authentication

Create a new product substrate

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-substrate" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"dqkoakojvycqahpgsuepmsf\",
    \"is_inactive\": true,
    \"categories\": [
        5
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-substrate"
);

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

let body = {
    "name": "dqkoakojvycqahpgsuepmsf",
    "is_inactive": true,
    "categories": [
        5
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "name": "Synthetic",
        "is_inactive": 0,
        "created_at": "2026-05-08T21:42:46.000000Z",
        "updated_at": "2026-05-08T21:42:46.000000Z"
    }
}
 

Request      

POST api/organisation/{organisation_id}/chemical/classification/product-substrate

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: dqkoakojvycqahpgsuepmsf

is_inactive   boolean  optional    

Example: true

categories   integer[]  optional    

The id of an existing record in the product_categories table.

Update

requires authentication

Update a product substrate

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-substrate/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"nheyuojuvy\",
    \"is_inactive\": true,
    \"categories\": [
        13
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-substrate/1"
);

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

let body = {
    "name": "nheyuojuvy",
    "is_inactive": true,
    "categories": [
        13
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "name": "Synthetic",
        "is_inactive": 0,
        "created_at": "2026-05-08T21:42:46.000000Z",
        "updated_at": "2026-05-08T21:42:46.000000Z"
    }
}
 

Request      

PUT api/organisation/{organisation_id}/chemical/classification/product-substrate/{id}

PATCH api/organisation/{organisation_id}/chemical/classification/product-substrate/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product substrate. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: nheyuojuvy

is_inactive   boolean  optional    

Example: true

categories   integer[]  optional    

The id of an existing record in the product_categories table.

Destroy

requires authentication

Destroy a product substrate

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-substrate/1" \
    --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/organisation/1/chemical/classification/product-substrate/1"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Product substrate deleted successfully."
}
 

Request      

DELETE api/organisation/{organisation_id}/chemical/classification/product-substrate/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product substrate. Example: 1

Product Use Type

Index

requires authentication

List all product use types

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-use-type?per_page=13&page=1&filter%5Bname%5D=et&filter%5Bis_inactive%5D=1&filter%5Bcreated_at%5D=qui&filter%5Bupdated_at%5D=similique&sort=name&search=non&column=name" \
    --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/organisation/1/chemical/classification/product-use-type"
);

const params = {
    "per_page": "13",
    "page": "1",
    "filter[name]": "et",
    "filter[is_inactive]": "1",
    "filter[created_at]": "qui",
    "filter[updated_at]": "similique",
    "sort": "name",
    "search": "non",
    "column": "name",
};
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,
            "name": "Others",
            "is_inactive": 0,
            "created_at": "2026-05-08T21:42:46.000000Z",
            "updated_at": "2026-05-08T21:42:46.000000Z"
        },
        {
            "id": 1,
            "name": "Others",
            "is_inactive": 0,
            "created_at": "2026-05-08T21:42:46.000000Z",
            "updated_at": "2026-05-08T21:42:46.000000Z"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/organisation/{organisation_id}/chemical/classification/product-use-type

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 13

page   integer  optional    

the page number to show. Example: 1

filter[name]   string  optional    

Filter column name by any accepted value. Filter by name Example: et

filter[is_inactive]   boolean  optional    

Filter column is_inactive by any accepted value. Filter by inactive status Example: true

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. Filter by created date Example: qui

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. Filter by updated date Example: similique

filter[categories.name]   string  optional    

Filter column categories.name by any accepted value. Filter by categories name Example: impedit

filter[categories.id]   integer  optional    

Filter column categories.id by any accepted value. Filter by category ID Example: 16

sort   string  optional    

sort by any accepted column: name, is_inactive, created_at, updated_at. prefix a "-" before the column name to sort in descending order Example: name

search   string  optional    

Search in all of these columns: name Example: non

column   string  optional    

get a distinct list of filterable values for any of the columns: name, is_inactive, created_at, updated_at, categories.name. Example: name

Show

requires authentication

Show a product use type

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-use-type/1" \
    --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/organisation/1/chemical/classification/product-use-type/1"
);

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,
        "name": "Others",
        "is_inactive": 0,
        "created_at": "2026-05-08T21:42:46.000000Z",
        "updated_at": "2026-05-08T21:42:46.000000Z",
        "categories": [
            {
                "id": 1,
                "name": "Colorant",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 1
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 1,
                            "product_substrate_id": 1
                        }
                    }
                ]
            },
            {
                "id": 44,
                "name": "Others",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 44
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 44,
                            "product_substrate_id": 1
                        }
                    }
                ]
            },
            {
                "id": 45,
                "name": "Finishing agent",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 45
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 45,
                            "product_substrate_id": 1
                        }
                    }
                ]
            },
            {
                "id": 46,
                "name": "Lubricant",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 46
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 46,
                            "product_substrate_id": 1
                        }
                    }
                ]
            },
            {
                "id": 47,
                "name": "Resin",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 47
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 47,
                            "product_substrate_id": 1
                        }
                    }
                ]
            }
        ]
    }
}
 

Request      

GET api/organisation/{organisation_id}/chemical/classification/product-use-type/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product use type. Example: 1

Store

requires authentication

Store a product use type

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-use-type" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"jtemmjbaamhaslopnaedp\",
    \"is_inactive\": false,
    \"categories\": [
        36
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-use-type"
);

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

let body = {
    "name": "jtemmjbaamhaslopnaedp",
    "is_inactive": false,
    "categories": [
        36
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "name": "Others",
        "is_inactive": 0,
        "created_at": "2026-05-08T21:42:46.000000Z",
        "updated_at": "2026-05-08T21:42:46.000000Z",
        "categories": [
            {
                "id": 1,
                "name": "Colorant",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 1
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 1,
                            "product_substrate_id": 1
                        }
                    }
                ]
            },
            {
                "id": 44,
                "name": "Others",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 44
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 44,
                            "product_substrate_id": 1
                        }
                    }
                ]
            },
            {
                "id": 45,
                "name": "Finishing agent",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 45
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 45,
                            "product_substrate_id": 1
                        }
                    }
                ]
            },
            {
                "id": 46,
                "name": "Lubricant",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 46
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 46,
                            "product_substrate_id": 1
                        }
                    }
                ]
            },
            {
                "id": 47,
                "name": "Resin",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 47
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 47,
                            "product_substrate_id": 1
                        }
                    }
                ]
            }
        ]
    }
}
 

Request      

POST api/organisation/{organisation_id}/chemical/classification/product-use-type

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: jtemmjbaamhaslopnaedp

is_inactive   boolean  optional    

Example: false

categories   integer[]  optional    

The id of an existing record in the product_categories table. Must be at least 0.

Update

requires authentication

Update a product use type

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-use-type/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"kizcjybpdqqcpgqgpejpv\",
    \"is_inactive\": false,
    \"categories\": [
        75
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-use-type/1"
);

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

let body = {
    "name": "kizcjybpdqqcpgqgpejpv",
    "is_inactive": false,
    "categories": [
        75
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "name": "Others",
        "is_inactive": 0,
        "created_at": "2026-05-08T21:42:46.000000Z",
        "updated_at": "2026-05-08T21:42:46.000000Z",
        "categories": [
            {
                "id": 1,
                "name": "Colorant",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 1
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 1,
                            "product_substrate_id": 1
                        }
                    }
                ]
            },
            {
                "id": 44,
                "name": "Others",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 44
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 44,
                            "product_substrate_id": 1
                        }
                    }
                ]
            },
            {
                "id": 45,
                "name": "Finishing agent",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 45
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 45,
                            "product_substrate_id": 1
                        }
                    }
                ]
            },
            {
                "id": 46,
                "name": "Lubricant",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 46
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 46,
                            "product_substrate_id": 1
                        }
                    }
                ]
            },
            {
                "id": 47,
                "name": "Resin",
                "is_inactive": 0,
                "created_at": "2026-05-08T21:42:46.000000Z",
                "updated_at": "2026-05-08T21:42:46.000000Z",
                "pivot": {
                    "product_use_type_id": 1,
                    "product_category_id": 47
                },
                "substrates": [
                    {
                        "id": 1,
                        "name": "Synthetic",
                        "is_inactive": 0,
                        "created_at": "2026-05-08T21:42:46.000000Z",
                        "updated_at": "2026-05-08T21:42:46.000000Z",
                        "pivot": {
                            "product_category_id": 47,
                            "product_substrate_id": 1
                        }
                    }
                ]
            }
        ]
    }
}
 

Request      

PUT api/organisation/{organisation_id}/chemical/classification/product-use-type/{id}

PATCH api/organisation/{organisation_id}/chemical/classification/product-use-type/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product use type. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: kizcjybpdqqcpgqgpejpv

is_inactive   boolean  optional    

Example: false

categories   integer[]  optional    

The id of an existing record in the product_categories table. Must be at least 0.

Destroy

requires authentication

Destroy a product use type

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/classification/product-use-type/1" \
    --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/organisation/1/chemical/classification/product-use-type/1"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Product use type deleted successfully."
}
 

Request      

DELETE api/organisation/{organisation_id}/chemical/classification/product-use-type/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the product use type. Example: 1

Conformance Levels

Index

requires authentication

get all conformance levels

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/conformance-levels" \
    --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/conformance-levels"
);

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,
        "name": "Level 1",
        "created_at": null,
        "updated_at": null
    }
}
 

Request      

GET api/conformance-levels

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Development

Frontend values

Get a list of almost all values

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/development/frontend/values" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/development/frontend/values"
);

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


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


[
     roles: {}
     organisationTypes: {}
     wastewaterActionTypes: {}
     wastewaterTypes: {}
     samplingPoints: {}
     msrl_conformance_levels: {}
     ctz_conformance_levels: {}
     root_cause_reasons: {}
     corrective_actions: {}
]
 

Request      

GET api/development/frontend/values

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Endpoints

Store

requires authentication

Create a new Organisation API Key

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/admin/organisation-api-keys" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"organisation_user_id\": \"illum\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/admin/organisation-api-keys"
);

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

let body = {
    "organisation_user_id": "illum"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (201):


{
 "message": "Organisation API key created successfully."
 "api_key": "foreign_api_key|0de1eb785a5d603f8c56057e6408914a3bd854e4e22e878689b92c6b25b851e7"
}
 

Request      

POST api/admin/organisation-api-keys

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

organisation_user_id   string     

The id of an existing record in the organisation_user table. Example: illum

GET api/admin/{organisation_id}/wastewater/reporting/activity-logs

requires authentication

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/admin/1/wastewater/reporting/activity-logs?sort=created_at&filter%5Bclearstream_id%5D=12&filter%5Baction_type%5D=nesciunt&filter%5Buser_name%5D=tempora&column=context-%3Ecreated_at&search=natus&page=1&per_page=6" \
    --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/admin/1/wastewater/reporting/activity-logs"
);

const params = {
    "sort": "created_at",
    "filter[clearstream_id]": "12",
    "filter[action_type]": "nesciunt",
    "filter[user_name]": "tempora",
    "column": "context->created_at",
    "search": "natus",
    "page": "1",
    "per_page": "6",
};
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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 83
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/admin/{organisation_id}/wastewater/reporting/activity-logs

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

sort   string  optional    

sort by any accepted column: created_at, clearstream_id, action_type, user_name, message. prefix a "-" before the column name to sort in descending order Example: created_at

filter[clearstream_id]   integer  optional    

Filter column clearstream_id by any accepted value. id of the clearstream report Example: 12

filter[action_type]   string  optional    

Filter column action_type by any accepted value. Action type Example: nesciunt

filter[user_name]   string  optional    

Filter column user_name by any accepted value. name of the user initiating the action Example: tempora

column   string  optional    

get a distinct list of filterable values for any of the columns: context->created_at, context->clearstream_id, context->action_type, context->user_name, context->organisation_id, context->message. Example: context->created_at

search   string  optional    

Search in all of these columns: message Example: natus

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 6

GET api/system/organisation/{organisation_id}/push-notification-count

requires authentication

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/system/organisation/1/push-notification-count" \
    --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/system/organisation/1/push-notification-count"
);

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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 76
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/system/organisation/{organisation_id}/push-notification-count

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Summary of completeSampling

requires authentication

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/complete-sampling" \
    --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/organisation/1/wastewater/reporting/laboratory-requests/1/complete-sampling"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/complete-sampling

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

POST api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/start-testing

requires authentication

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/start-testing" \
    --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/organisation/1/wastewater/reporting/laboratory-requests/1/start-testing"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/start-testing

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

Finish testing

requires authentication

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/finish-testing" \
    --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/organisation/1/wastewater/reporting/laboratory-requests/1/finish-testing"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/finish-testing

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

GET api/organisation/{organisation_id}/wastewater/reporting/activity-logs/{report?}

requires authentication

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/activity-logs/1?sort=created_at&filter%5Bclearstream_id%5D=13&filter%5Bclearstream_reference_id%5D=asperiores&filter%5Baction_type%5D=est&filter%5Buser_name%5D=enim&column=context-%3Ecreated_at&search=maiores&page=1&per_page=5" \
    --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/organisation/1/wastewater/reporting/activity-logs/1"
);

const params = {
    "sort": "created_at",
    "filter[clearstream_id]": "13",
    "filter[clearstream_reference_id]": "asperiores",
    "filter[action_type]": "est",
    "filter[user_name]": "enim",
    "column": "context->created_at",
    "search": "maiores",
    "page": "1",
    "per_page": "5",
};
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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 72
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/activity-logs/{report?}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report   integer  optional    

Example: 1

Query Parameters

sort   string  optional    

sort by any accepted column: created_at, clearstream_id, action_type, user_name, message. prefix a "-" before the column name to sort in descending order Example: created_at

filter[clearstream_id]   integer  optional    

Filter column clearstream_id by any accepted value. id of the clearstream report Example: 13

filter[clearstream_reference_id]   string  optional    

Filter column clearstream_reference_id by any accepted value. reference id of the clearstream report Example: asperiores

filter[action_type]   string  optional    

Filter column action_type by any accepted value. Action type Example: est

filter[user_name]   string  optional    

Filter column user_name by any accepted value. name of the user initiating the action Example: enim

column   string  optional    

get a distinct list of filterable values for any of the columns: context->created_at, context->clearstream_id, context->clearstream_reference_id, context->action_type, context->user_name, context->organisation_id, context->message. Example: context->created_at

search   string  optional    

Search in all of these columns: message Example: maiores

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 5

GET api/organisation/{organisation_id}/wastewater/reporting/labs/test-results/{report_id}/parameters/{id}

requires authentication

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/labs/test-results/1/parameters/1" \
    --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/organisation/1/wastewater/reporting/labs/test-results/1/parameters/1"
);

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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 71
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/labs/test-results/{report_id}/parameters/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

id   integer     

The ID of the parameter. Example: 1

Receives Maxio webhook events and processes them asynchronously via Event/Listener.

requires authentication

A fast 2xx response is important so Maxio does not retry the webhook.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/webhook/maxio/earum" \
    --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/webhook/maxio/earum"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/webhook/maxio/{token}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

token   string     

Example: earum

Global Search

Combined

Combined Search

requires authentication

Get combined search results

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/global-search/combined?filter%5Bsearch%5D=quidem" \
    --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/organisation/1/global-search/combined"
);

const params = {
    "filter[search]": "quidem",
};
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": [
        [],
        []
    ]
}
 

Request      

GET api/organisation/{organisation_id}/global-search/combined

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

filter[search]   string  optional    

Filter column search by any accepted value. Search by name or alternate names or reference ID, PDC ID, Gateway AID, or OS Hub Identifier Example: quidem

Organisations

Organisations

requires authentication

Get Products

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/global-search/organisations?filter%5Btype_id%5D=labore&filter%5Blocation%5D=occaecati&filter%5Bsearch%5D=voluptatem&filter%5Bonly_active_connections%5D=qui&filter%5Bmrsl_standard_id%5D=rerum&filter%5Bctz_standard_id%5D=eos&filter%5Bhas_incheck_level_1%5D=perferendis&page=1&per_page=15" \
    --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/organisation/1/global-search/organisations"
);

const params = {
    "filter[type_id]": "labore",
    "filter[location]": "occaecati",
    "filter[search]": "voluptatem",
    "filter[only_active_connections]": "qui",
    "filter[mrsl_standard_id]": "rerum",
    "filter[ctz_standard_id]": "eos",
    "filter[has_incheck_level_1]": "perferendis",
    "page": "1",
    "per_page": "15",
};
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,
            "reference_id": "01-J4CGS34JUJV-Q",
            "name": "Ping Yang Pengye Shoes Com Ltd",
            "legal_name": "Ping Yang Pengye Shoes Com Ltd",
            "location": {
                "code": "CN",
                "name": "China"
            }
        },
        {
            "id": 1,
            "reference_id": "01-J4CGS34JUJV-Q",
            "name": "Ping Yang Pengye Shoes Com Ltd",
            "legal_name": "Ping Yang Pengye Shoes Com Ltd",
            "location": {
                "code": "CN",
                "name": "China"
            }
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 50,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/organisation/{organisation_id}/global-search/organisations

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

filter[type_id]   string  optional    

Filter column type_id by any accepted value. Matches exact value. Example: labore

filter[location]   string  optional    

Filter column location by any accepted value. Matches exact value. Example: occaecati

filter[search]   string  optional    

Filter column search by any accepted value. Search by id, name, legal name, type name, reference ID, PDC ID, Gateway AID, or OS Hub Identifier Example: voluptatem

filter[only_active_connections]   string  optional    

Filter column only_active_connections by any accepted value. 1 = only organisations with an active connection to the current organisation, 0 = no filter Example: qui

filter[mrsl_standard_id]   string  optional    

Filter column mrsl_standard_id by any accepted value. Filter by active MRSL standard IDs (comma-separated) Example: rerum

filter[ctz_standard_id]   string  optional    

Filter column ctz_standard_id by any accepted value. Filter by active CTZ standard IDs (comma-separated) Example: eos

filter[has_incheck_level_1]   string  optional    

Filter column has_incheck_level_1 by any accepted value. Filter by organisations that have an InCheck level 1 Example: perferendis

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 15

Chemical Products

Chemical Products

requires authentication

Get Chemical Products

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/global-search/chemical-products?per_page=14&page=1&filter%5Bname%5D=suscipit&filter%5Bstatus%5D=sit&filter%5Bconformance_level_id%5D=8&filter%5Bctz_level_id%5D=2&filter%5Borganisation_id%5D=18&filter%5Bcreated_at%5D=quos&filter%5Bupdated_at%5D=beatae&filter%5Bsearch%5D=et" \
    --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/organisation/1/global-search/chemical-products"
);

const params = {
    "per_page": "14",
    "page": "1",
    "filter[name]": "suscipit",
    "filter[status]": "sit",
    "filter[conformance_level_id]": "8",
    "filter[ctz_level_id]": "2",
    "filter[organisation_id]": "18",
    "filter[created_at]": "quos",
    "filter[updated_at]": "beatae",
    "filter[search]": "et",
};
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,
            "reference_id": "20-Z4289ZZUE9-W",
            "status": "DRAFT",
            "name": "A-POLE G-2 [P214AG76]",
            "alternate_names": [
                "P214AG76"
            ],
            "chemical_formulator": {
                "id": 5905,
                "reference_id": "01-3SRBVESEWXG-W",
                "type_id": 6,
                "name": "Nicca Chemical Co., Ltd.",
                "address_1": "4-23-1 Bunkyo",
                "address_2": null,
                "city": "Fukui",
                "state": "Fukui",
                "location": "JP",
                "zip": "910-8670",
                "phone": "+81-776-25-8646",
                "email": "zdhc@niccachemical.com",
                "website": "https://nctexchem.com",
                "avatar_url": null,
                "location_name": "Japan"
            },
            "can_access_product_profile": false,
            "conformance_level": null,
            "ctz_level": null,
            "publication_expired": false,
            "sds_url": null,
            "website_url": null
        },
        {
            "id": 1,
            "reference_id": "20-Z4289ZZUE9-W",
            "status": "DRAFT",
            "name": "A-POLE G-2 [P214AG76]",
            "alternate_names": [
                "P214AG76"
            ],
            "chemical_formulator": {
                "id": 5905,
                "reference_id": "01-3SRBVESEWXG-W",
                "type_id": 6,
                "name": "Nicca Chemical Co., Ltd.",
                "address_1": "4-23-1 Bunkyo",
                "address_2": null,
                "city": "Fukui",
                "state": "Fukui",
                "location": "JP",
                "zip": "910-8670",
                "phone": "+81-776-25-8646",
                "email": "zdhc@niccachemical.com",
                "website": "https://nctexchem.com",
                "avatar_url": null,
                "location_name": "Japan"
            },
            "can_access_product_profile": false,
            "conformance_level": null,
            "ctz_level": null,
            "publication_expired": false,
            "sds_url": null,
            "website_url": 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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 50,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/organisation/{organisation_id}/global-search/chemical-products

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 14

page   integer  optional    

the page number to show. Example: 1

filter[name]   string  optional    

Filter column name by any accepted value. Filter by name Example: suscipit

filter[status]   string  optional    

Filter column status by any accepted value. Filter by status (multiple selection allowed) Example: sit

filter[conformance_level_id]   integer  optional    

Filter column conformance_level_id by any accepted value. Filter by conformance level IDs (multiple selection allowed) Example: 8

filter[ctz_level_id]   integer  optional    

Filter column ctz_level_id by any accepted value. Filter by CTZ level IDs (multiple selection allowed) Example: 2

filter[certificationBodies.id]   integer  optional    

Filter column certificationBodies.id by any accepted value. Filter by certification body IDs (multiple selection allowed) Example: 9

filter[organisation_id]   integer  optional    

Filter column organisation_id by any accepted value. Filter by organisation IDs (multiple selection allowed) Example: 18

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. Filter by created date Example: quos

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. Filter by updated date Example: beatae

filter[useTypes.id]   integer  optional    

Filter column useTypes.id by any accepted value. Filter by use type ID (multiple selection allowed) Example: 1

filter[categories.id]   integer  optional    

Filter column categories.id by any accepted value. Filter by use type category ID (multiple selection allowed) Example: 3

filter[search]   string  optional    

Filter column search by any accepted value. Search by name, alternate names, or ZDHC PID Example: et

InCheck

Inventory

Eligable Suppliers

requires authentication

Show all eligable suppliers for a given Solution Provider

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/inventory/eligable-suppliers?page=1&per_page=17" \
    --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/inventory/eligable-suppliers"
);

const params = {
    "page": "1",
    "per_page": "17",
};
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,
        "reference_id": "01-J4CGS34JUJV-Q",
        "name": "Ping Yang Pengye Shoes Com Ltd"
    }
}
 

Request      

GET api/inventory/eligable-suppliers

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 17

Activity Logs

Index

requires authentication

Get all activity logs for an incheck organisation

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/incheck/voluptatum/activity-logs?sort=created_at&filter%5Baction_type%5D=pariatur&filter%5Buser_name%5D=porro&column=context-%3Ecreated_at&search=quaerat&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/incheck/voluptatum/activity-logs"
);

const params = {
    "sort": "created_at",
    "filter[action_type]": "pariatur",
    "filter[user_name]": "porro",
    "column": "context->created_at",
    "search": "quaerat",
    "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": 1,
            "channel": "organisation",
            "level": "INFO",
            "message": "[created] App\\Models\\Organisation",
            "context": {
                "ip": "127.0.0.1",
                "auth_id": null,
                "changes": {
                    "id": 19424,
                    "zip": "12345",
                    "city": "Invited city",
                    "name": "Bureau Veritas",
                    "uuid": "a1bbba2d-02f0-435e-bcc2-da28195fb810",
                    "email": "invited@localhost",
                    "phone": "+1234567890",
                    "state": "Invited state",
                    "status": "approved",
                    "type_id": 9,
                    "website": "https://invited.com",
                    "location": "US",
                    "address_1": "Invited street 1",
                    "address_2": "Invited street 2",
                    "legal_name": "Invited company",
                    "reference_id": "01-TMERKB8EK4F-M",
                    "contact_last_name": "Organisation",
                    "contact_first_name": "Invited",
                    "profile_reviewed_at": {
                        "date": "1987-09-15 21:19:59.000000",
                        "timezone": "UTC",
                        "timezone_type": 3
                    },
                    "registration_mail_sent_at": {
                        "date": "1989-11-09 04:04:34.000000",
                        "timezone": "UTC",
                        "timezone_type": 3
                    }
                },
                "context": {
                    "url": "console",
                    "user": "unauthenticated",
                    "user_role": "unauthenticated"
                },
                "endpoint": "console",
                "auth_mail": null,
                "action_type": "created",
                "organisation_id": 19424,
                "organisation_reference_id": "01-TMERKB8EK4F-M"
            },
            "created_at": "2026-05-08 21:42:24",
            "deleted_at": null
        },
        {
            "id": 1,
            "channel": "organisation",
            "level": "INFO",
            "message": "[created] App\\Models\\Organisation",
            "context": {
                "ip": "127.0.0.1",
                "auth_id": null,
                "changes": {
                    "id": 19424,
                    "zip": "12345",
                    "city": "Invited city",
                    "name": "Bureau Veritas",
                    "uuid": "a1bbba2d-02f0-435e-bcc2-da28195fb810",
                    "email": "invited@localhost",
                    "phone": "+1234567890",
                    "state": "Invited state",
                    "status": "approved",
                    "type_id": 9,
                    "website": "https://invited.com",
                    "location": "US",
                    "address_1": "Invited street 1",
                    "address_2": "Invited street 2",
                    "legal_name": "Invited company",
                    "reference_id": "01-TMERKB8EK4F-M",
                    "contact_last_name": "Organisation",
                    "contact_first_name": "Invited",
                    "profile_reviewed_at": {
                        "date": "1987-09-15 21:19:59.000000",
                        "timezone": "UTC",
                        "timezone_type": 3
                    },
                    "registration_mail_sent_at": {
                        "date": "1989-11-09 04:04:34.000000",
                        "timezone": "UTC",
                        "timezone_type": 3
                    }
                },
                "context": {
                    "url": "console",
                    "user": "unauthenticated",
                    "user_role": "unauthenticated"
                },
                "endpoint": "console",
                "auth_mail": null,
                "action_type": "created",
                "organisation_id": 19424,
                "organisation_reference_id": "01-TMERKB8EK4F-M"
            },
            "created_at": "2026-05-08 21:42:24",
            "deleted_at": 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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/incheck/{organisation_reference_id}/activity-logs

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   string     

The ID of the organisation reference. Example: voluptatum

Query Parameters

sort   string  optional    

sort by any accepted column: created_at, action_type, user_name, message. prefix a "-" before the column name to sort in descending order Example: created_at

filter[action_type]   string  optional    

Filter column action_type by any accepted value. Action type Example: pariatur

filter[user_name]   string  optional    

Filter column user_name by any accepted value. name of the user initiating the action Example: porro

column   string  optional    

get a distinct list of filterable values for any of the columns: context->created_at, context->action_type, context->user_name, context->organisation_id, context->message. Example: context->created_at

search   string  optional    

Search in all of these columns: message Example: quaerat

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 20

Index

requires authentication

Get all activity logs for a solution provider organisation

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/incheck/a/solution-provider/activity-logs" \
    --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/incheck/a/solution-provider/activity-logs"
);

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,
            "channel": "organisation",
            "level": "INFO",
            "message": "[created] App\\Models\\Organisation",
            "context": {
                "ip": "127.0.0.1",
                "auth_id": null,
                "changes": {
                    "id": 19424,
                    "zip": "12345",
                    "city": "Invited city",
                    "name": "Bureau Veritas",
                    "uuid": "a1bbba2d-02f0-435e-bcc2-da28195fb810",
                    "email": "invited@localhost",
                    "phone": "+1234567890",
                    "state": "Invited state",
                    "status": "approved",
                    "type_id": 9,
                    "website": "https://invited.com",
                    "location": "US",
                    "address_1": "Invited street 1",
                    "address_2": "Invited street 2",
                    "legal_name": "Invited company",
                    "reference_id": "01-TMERKB8EK4F-M",
                    "contact_last_name": "Organisation",
                    "contact_first_name": "Invited",
                    "profile_reviewed_at": {
                        "date": "1987-09-15 21:19:59.000000",
                        "timezone": "UTC",
                        "timezone_type": 3
                    },
                    "registration_mail_sent_at": {
                        "date": "1989-11-09 04:04:34.000000",
                        "timezone": "UTC",
                        "timezone_type": 3
                    }
                },
                "context": {
                    "url": "console",
                    "user": "unauthenticated",
                    "user_role": "unauthenticated"
                },
                "endpoint": "console",
                "auth_mail": null,
                "action_type": "created",
                "organisation_id": 19424,
                "organisation_reference_id": "01-TMERKB8EK4F-M"
            },
            "created_at": "2026-05-08 21:42:24",
            "deleted_at": null
        },
        {
            "id": 1,
            "channel": "organisation",
            "level": "INFO",
            "message": "[created] App\\Models\\Organisation",
            "context": {
                "ip": "127.0.0.1",
                "auth_id": null,
                "changes": {
                    "id": 19424,
                    "zip": "12345",
                    "city": "Invited city",
                    "name": "Bureau Veritas",
                    "uuid": "a1bbba2d-02f0-435e-bcc2-da28195fb810",
                    "email": "invited@localhost",
                    "phone": "+1234567890",
                    "state": "Invited state",
                    "status": "approved",
                    "type_id": 9,
                    "website": "https://invited.com",
                    "location": "US",
                    "address_1": "Invited street 1",
                    "address_2": "Invited street 2",
                    "legal_name": "Invited company",
                    "reference_id": "01-TMERKB8EK4F-M",
                    "contact_last_name": "Organisation",
                    "contact_first_name": "Invited",
                    "profile_reviewed_at": {
                        "date": "1987-09-15 21:19:59.000000",
                        "timezone": "UTC",
                        "timezone_type": 3
                    },
                    "registration_mail_sent_at": {
                        "date": "1989-11-09 04:04:34.000000",
                        "timezone": "UTC",
                        "timezone_type": 3
                    }
                },
                "context": {
                    "url": "console",
                    "user": "unauthenticated",
                    "user_role": "unauthenticated"
                },
                "endpoint": "console",
                "auth_mail": null,
                "action_type": "created",
                "organisation_id": 19424,
                "organisation_reference_id": "01-TMERKB8EK4F-M"
            },
            "created_at": "2026-05-08 21:42:24",
            "deleted_at": 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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/incheck/{organisation_reference_id}/solution-provider/activity-logs

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   string     

The ID of the organisation reference. Example: a

Onboarding Progress

requires authentication

See the requirements for the onboarding process to the incheck module

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/incheck/1/onboarding-progress" \
    --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/incheck/1/onboarding-progress"
);

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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 81
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/incheck/{organisation_id}/onboarding-progress

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Level

Index

requires authentication

List InCheck levels

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/incheck/level" \
    --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/incheck/level"
);

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):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 80
vary: Origin
 

[
    {
        "id": 2,
        "name": "Level 1",
        "created_at": "2026-05-08T21:42:24.000000Z",
        "updated_at": "2026-05-19T11:35:13.000000Z"
    },
    {
        "id": 3,
        "name": "Level 0",
        "created_at": "2026-05-21T16:13:40.000000Z",
        "updated_at": "2026-05-21T16:13:40.000000Z"
    }
]
 

Request      

GET api/incheck/level

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Subscriptions

Store

requires authentication

Create a new subscription for a supplier

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/incheck/perspiciatis/subscriptions/ducimus" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"voucher_code\": \"fshsfstpzsyinzctdfmudtd\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/incheck/perspiciatis/subscriptions/ducimus"
);

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

let body = {
    "voucher_code": "fshsfstpzsyinzctdfmudtd"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (400):


ValidationError
 

Example response (404):


CouponNotFound
 

Example response (409):


SubscriptionAlreadyActive
 

Example response (409):


SubscriptionPendingPayment
 

Request      

POST api/incheck/{organisation_reference_id}/subscriptions/{supplier_reference_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   string     

The ID of the organisation reference. Example: perspiciatis

supplier_reference_id   string     

The ID of the supplier reference. Example: ducimus

Body Parameters

voucher_code   string     

Must not be greater than 255 characters. Example: fshsfstpzsyinzctdfmudtd

Show

requires authentication

Show the subscription for a supplier

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/incheck/provident/subscriptions/maxime" \
    --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/incheck/provident/subscriptions/maxime"
);

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": {
        "subscriptionId": 374452,
        "supplierId": 1,
        "status": "active",
        "reportingAllowed": true,
        "startDate": "2027-05-05T13:47:05.000000Z",
        "expiryDate": "2028-05-05T13:47:05.000000Z"
    }
}
 

Request      

GET api/incheck/{organisation_reference_id}/subscriptions/{supplier_reference_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   string     

The ID of the organisation reference. Example: provident

supplier_reference_id   string     

The ID of the supplier reference. Example: maxime

Reports

Index

requires authentication

Get all incheck reports for an organisation

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/incheck/sit/reports" \
    --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/incheck/sit/reports"
);

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,
            "reference_id": "48-9PZFTPBB778A-T",
            "legacy_report_id": 169838,
            "supplier_id": 15699,
            "status": "reports_selected",
            "verified_at": null,
            "closed_at": null,
            "created_at": "2025-11-12T00:00:00.000000Z",
            "updated_at": "2026-05-21T15:35:21.000000Z",
            "legacy_external_id": "0RTCG9F7-11122025",
            "solution_provider_organisation_id": 19424,
            "inventory_type": "Usage",
            "reporting_month": 10,
            "reporting_year": 2025,
            "incheck_level_id": 2
        },
        {
            "id": 1,
            "reference_id": "48-9PZFTPBB778A-T",
            "legacy_report_id": 169838,
            "supplier_id": 15699,
            "status": "reports_selected",
            "verified_at": null,
            "closed_at": null,
            "created_at": "2025-11-12T00:00:00.000000Z",
            "updated_at": "2026-05-21T15:35:21.000000Z",
            "legacy_external_id": "0RTCG9F7-11122025",
            "solution_provider_organisation_id": 19424,
            "inventory_type": "Usage",
            "reporting_month": 10,
            "reporting_year": 2025,
            "incheck_level_id": 2
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/incheck/{organisation_reference_id}/reports

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   string     

The ID of the organisation reference. Example: sit

Show

requires authentication

Show an incheck report

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/incheck/consequatur/reports/1" \
    --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/incheck/consequatur/reports/1"
);

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,
        "reference_id": "48-9PZFTPBB778A-T",
        "legacy_report_id": 169838,
        "supplier_id": 15699,
        "status": "reports_selected",
        "verified_at": null,
        "closed_at": null,
        "created_at": "2025-11-12T00:00:00.000000Z",
        "updated_at": "2026-05-21T15:35:21.000000Z",
        "legacy_external_id": "0RTCG9F7-11122025",
        "solution_provider_organisation_id": 19424,
        "inventory_type": "Usage",
        "reporting_month": 10,
        "reporting_year": 2025,
        "incheck_level_id": 2
    }
}
 

Request      

GET api/incheck/{organisation_reference_id}/reports/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   string     

The ID of the organisation reference. Example: consequatur

id   integer     

The ID of the report. Example: 1

Store

requires authentication

Create a new incheck report

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/incheck/ea/reports" \
    --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/incheck/ea/reports"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (201):


{
    "data": {
        "id": 1,
        "reference_id": "48-9PZFTPBB778A-T",
        "legacy_report_id": 169838,
        "supplier_id": 15699,
        "status": "reports_selected",
        "verified_at": null,
        "closed_at": null,
        "created_at": "2025-11-12T00:00:00.000000Z",
        "updated_at": "2026-05-21T15:35:21.000000Z",
        "legacy_external_id": "0RTCG9F7-11122025",
        "solution_provider_organisation_id": 19424,
        "inventory_type": "Usage",
        "reporting_month": 10,
        "reporting_year": 2025,
        "incheck_level_id": 2
    },
    "message": "InCheck report created successfully"
}
 

Request      

POST api/incheck/{organisation_reference_id}/reports

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   string     

The ID of the organisation reference. Example: ea

Update

requires authentication

Update an incheck report

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/incheck/vel/reports/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"close\": false
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/incheck/vel/reports/1"
);

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

let body = {
    "close": false
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/incheck/{organisation_reference_id}/reports/{id}

PATCH api/incheck/{organisation_reference_id}/reports/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   string     

The ID of the organisation reference. Example: vel

id   integer     

The ID of the report. Example: 1

Body Parameters

close   boolean  optional    

Example: false

Report Inventories

Index

requires authentication

Get all eligabile inventories for an incheck report. Usually last 12 months.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/incheck/non/reports/1/inventories" \
    --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/incheck/non/reports/1/inventories"
);

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,
            "reference_id": "40-4SLWVAK6HPG-B",
            "submitting_user_id": null,
            "submitting_organisation_id": null,
            "supplier_id": 13680,
            "period": "2019-05-01T00:00:00.000000Z",
            "type": "unspecified",
            "status": "published",
            "auto_published": 0,
            "published_at": "2020-08-07T00:00:00.000000Z",
            "submitted_at": "2020-08-07T00:00:00.000000Z",
            "declined_at": null,
            "declined_reason": null,
            "declined_additional_info": null,
            "created_at": "2026-05-19T08:41:21.000000Z",
            "updated_at": "2026-05-19T09:32:48.000000Z",
            "expected_expiration": "2020-09-20T23:59:59.999999Z",
            "publishable": false,
            "published_inventory": {
                "id": 1,
                "level": {
                    "id": 2,
                    "name": "Level 1",
                    "created_at": "2026-05-08T21:42:24.000000Z",
                    "updated_at": "2026-05-19T11:35:13.000000Z"
                }
            }
        },
        {
            "id": 1,
            "reference_id": "40-4SLWVAK6HPG-B",
            "submitting_user_id": null,
            "submitting_organisation_id": null,
            "supplier_id": 13680,
            "period": "2019-05-01T00:00:00.000000Z",
            "type": "unspecified",
            "status": "published",
            "auto_published": 0,
            "published_at": "2020-08-07T00:00:00.000000Z",
            "submitted_at": "2020-08-07T00:00:00.000000Z",
            "declined_at": null,
            "declined_reason": null,
            "declined_additional_info": null,
            "created_at": "2026-05-19T08:41:21.000000Z",
            "updated_at": "2026-05-19T09:32:48.000000Z",
            "expected_expiration": "2020-09-20T23:59:59.999999Z",
            "publishable": false,
            "published_inventory": {
                "id": 1,
                "level": {
                    "id": 2,
                    "name": "Level 1",
                    "created_at": "2026-05-08T21:42:24.000000Z",
                    "updated_at": "2026-05-19T11:35:13.000000Z"
                }
            }
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/incheck/{organisation_reference_id}/reports/{report_id}/inventories

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   string     

The ID of the organisation reference. Example: non

report_id   integer     

The ID of the report. Example: 1

Bind

requires authentication

Bind inventories to an incheck report.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/incheck/deleniti/reports/1/inventories" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"inventory_ids\": [
        6
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/incheck/deleniti/reports/1/inventories"
);

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

let body = {
    "inventory_ids": [
        6
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/incheck/{organisation_reference_id}/reports/{report_id}/inventories

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   string     

The ID of the organisation reference. Example: deleniti

report_id   integer     

The ID of the report. Example: 1

Body Parameters

inventory_ids   integer[]     

Supplier Providers

index

requires authentication

List selected solution providers

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/incheck/1/providers" \
    --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/incheck/1/providers"
);

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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 79
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/incheck/{organisation_id}/providers

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Levels

requires authentication

List all inCheck levels for a supplier

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/incheck/1/providers/levels" \
    --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/incheck/1/providers/levels"
);

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": 2,
            "name": "Level 1",
            "created_at": "2026-05-08T21:42:24.000000Z",
            "updated_at": "2026-05-19T11:35:13.000000Z"
        },
        {
            "id": 2,
            "name": "Level 1",
            "created_at": "2026-05-08T21:42:24.000000Z",
            "updated_at": "2026-05-19T11:35:13.000000Z"
        }
    ]
}
 

Request      

GET api/incheck/{organisation_id}/providers/levels

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Sync

requires authentication

Sync relating Suppliers to Incheck Providers AND set the incheck level

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/incheck/1/providers/sync" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"level_ids\": [
        15
    ],
    \"provider_visibility_ids\": [
        13
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/incheck/1/providers/sync"
);

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

let body = {
    "level_ids": [
        15
    ],
    "provider_visibility_ids": [
        13
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

POST api/incheck/{organisation_id}/providers/sync

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

level_ids   integer[]  optional    

The id of an existing record in the incheck_levels table.

provider_visibility_ids   integer[]  optional    

The id of an existing record in the incheck_visibilities table.

Verified InCheck Report PDF

Show

requires authentication

Show the verified incheck report as a pdf

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/incheck/reports/rerum/verified-incheck-report-pdf" \
    --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/organisation/1/incheck/reports/rerum/verified-incheck-report-pdf"
);

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):


content of the pdf
 

Request      

GET api/organisation/{organisation_reference_id}/incheck/reports/{report_reference_id}/verified-incheck-report-pdf

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_reference_id   integer     

The ID of the organisation reference. Example: 1

report_reference_id   string     

The ID of the report reference. Example: rerum

Industry Identifiers

Index

Get a paginated list of industry identifiers.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/industry-identifiers?per_page=3&page=1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/industry-identifiers"
);

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

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


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "data": [
        {
            "id": 3,
            "name": "amfori ID"
        },
        {
            "id": 3,
            "name": "amfori ID"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "/",
        "per_page": "50",
        "to": 2
    }
}
 

Request      

GET api/industry-identifiers

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 3

page   integer  optional    

the page number to show. Example: 1

Labels

Index

requires authentication

Get a list of labels for an organisation

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/labels?page=1&per_page=5&filter%5Blabelable_type%5D=quidem&sort=name&search=voluptatem" \
    --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/organisations/1/labels"
);

const params = {
    "page": "1",
    "per_page": "5",
    "filter[labelable_type]": "quidem",
    "sort": "name",
    "search": "voluptatem",
};
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": [
        [],
        []
    ]
}
 

Request      

GET api/organisations/{organisation_id}/labels

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 5

filter[labelable_type]   string  optional    

Filter column labelable_type by any accepted value. Filter by labelable type (e.g. organisation_connection). See LabelableTypeEnum for allowed values. Example: quidem

sort   string  optional    

sort by any accepted column: name, labelable_type, created_at, updated_at. prefix a "-" before the column name to sort in descending order Example: name

search   string  optional    

Search in all of these columns: name Example: voluptatem

Destroy

requires authentication

Delete a label.

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/labels/1" \
    --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/organisations/1/labels/1"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/organisations/{organisation_id}/labels/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the label. Example: 1

Localisation

Locales

Get a list of all accepted locales

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/localisation/locales" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/localisation/locales"
);

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


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


[
     {
         "en": "English",
         "zh": "英语",
     }
]
 

Request      

GET api/localisation/locales

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Locations

Get a list of all accepted locations

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/localisation/locations" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/localisation/locations"
);

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


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


[
     {
         "AD": "Andorra",
         "AE": "United Arab Emirates",
         "AF": "Afghanistan",
         "AG": "Antigua and Barbuda",
     }
]
 

Request      

GET api/localisation/locations

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

MRSL Standards

Index

requires authentication

Get MRSL Standards

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/mrsl-standard?per_page=10&page=1&filter%5Bconformance_level_id%5D=17&filter%5Bstatus%5D=eaque&filter%5Bstart_date%5D=eveniet&filter%5Bend_date%5D=voluptatem&filter%5Bcreated_at%5D=non&filter%5Bupdated_at%5D=quam&search=ea&sort=name&column=name" \
    --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/organisation/1/chemical/certification/mrsl-standard"
);

const params = {
    "per_page": "10",
    "page": "1",
    "filter[conformance_level_id]": "17",
    "filter[status]": "eaque",
    "filter[start_date]": "eveniet",
    "filter[end_date]": "voluptatem",
    "filter[created_at]": "non",
    "filter[updated_at]": "quam",
    "search": "ea",
    "sort": "name",
    "column": "name",
};
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,
            "legacy_certification_standard_id": 69,
            "reference_id": "30-HRBQFLXEEXU-K",
            "name": "Brachi Testing Services",
            "version": "ZDHC MRSL v2.0",
            "conformance_level_id": 1,
            "start_date": "2020-08-12T00:00:00.000000Z",
            "end_date": "2024-06-01T00:00:00.000000Z",
            "status": "PASSED",
            "created_at": "2026-05-08T21:42:17.000000Z",
            "updated_at": "2026-05-12T15:01:47.000000Z",
            "expired_at": "2026-05-12T15:01:47.000000Z",
            "conformance_level": {
                "id": 1,
                "name": "Level 1",
                "created_at": null,
                "updated_at": null
            },
            "organisations": [
                {
                    "id": 8567,
                    "maxio_customer_id": 310314,
                    "reference_id": "01-8ZQM4EKQRV3-B",
                    "pdc_id": null,
                    "gateway_aid": "A904AT31",
                    "uuid": "042f9b98-c0c0-4c76-a85f-75d059a4c9b6",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Brachi Testing Services S.r.l. Unipersonale_MRSL",
                    "legal_name": "Brachi Testing Services S.r.l. Unipersonale_MRSL",
                    "address_1": "Via Fona di Mezzana, 59100",
                    "address_2": null,
                    "city": "Mezzana",
                    "state": "Prato",
                    "location": "IT",
                    "zip": "",
                    "phone": "+390574591343",
                    "email": "giancarlo.diblasi@brachi.it",
                    "contact_first_name": "Giancarlo",
                    "contact_last_name": "Di Blasi",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:36.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "mrsl_standard_id": 1,
                        "organisation_id": 8567,
                        "id": 64,
                        "valid_until": "2024-06-01T00:00:00.000000Z",
                        "created_at": "2020-10-05T00:00:00.000000Z",
                        "updated_at": "2025-03-12T00:00:00.000000Z"
                    }
                }
            ]
        },
        {
            "id": 1,
            "legacy_certification_standard_id": 69,
            "reference_id": "30-HRBQFLXEEXU-K",
            "name": "Brachi Testing Services",
            "version": "ZDHC MRSL v2.0",
            "conformance_level_id": 1,
            "start_date": "2020-08-12T00:00:00.000000Z",
            "end_date": "2024-06-01T00:00:00.000000Z",
            "status": "PASSED",
            "created_at": "2026-05-08T21:42:17.000000Z",
            "updated_at": "2026-05-12T15:01:47.000000Z",
            "expired_at": "2026-05-12T15:01:47.000000Z",
            "conformance_level": {
                "id": 1,
                "name": "Level 1",
                "created_at": null,
                "updated_at": null
            },
            "organisations": [
                {
                    "id": 8567,
                    "maxio_customer_id": 310314,
                    "reference_id": "01-8ZQM4EKQRV3-B",
                    "pdc_id": null,
                    "gateway_aid": "A904AT31",
                    "uuid": "042f9b98-c0c0-4c76-a85f-75d059a4c9b6",
                    "type_id": 7,
                    "status": "approved",
                    "name": "Brachi Testing Services S.r.l. Unipersonale_MRSL",
                    "legal_name": "Brachi Testing Services S.r.l. Unipersonale_MRSL",
                    "address_1": "Via Fona di Mezzana, 59100",
                    "address_2": null,
                    "city": "Mezzana",
                    "state": "Prato",
                    "location": "IT",
                    "zip": "",
                    "phone": "+390574591343",
                    "email": "giancarlo.diblasi@brachi.it",
                    "contact_first_name": "Giancarlo",
                    "contact_last_name": "Di Blasi",
                    "website": null,
                    "avatar_url": null,
                    "applicant_comment": null,
                    "reviewer_comment": null,
                    "registration_mail_sent_at": null,
                    "created_at": "2020-01-08T00:00:00.000000Z",
                    "updated_at": "2026-05-12T15:19:36.000000Z",
                    "reviewer_comment_category": null,
                    "profile_reviewed_at": null,
                    "profile_reviewed_by_user_id": null,
                    "location_name": "Italy",
                    "pivot": {
                        "mrsl_standard_id": 1,
                        "organisation_id": 8567,
                        "id": 64,
                        "valid_until": "2024-06-01T00:00:00.000000Z",
                        "created_at": "2020-10-05T00:00:00.000000Z",
                        "updated_at": "2025-03-12T00:00:00.000000Z"
                    }
                }
            ]
        }
    ]
}
 

Request      

GET api/organisation/{organisation_id}/chemical/certification/mrsl-standard

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 10

page   integer  optional    

the page number to show. Example: 1

filter[conformance_level_id]   integer  optional    

Filter column conformance_level_id by any accepted value. Filter by conformance level ID Example: 17

filter[organisations.id]   integer  optional    

Filter column organisations.id by any accepted value. Filter by assigned organisation ID Example: 13

filter[status]   string  optional    

Filter column status by any accepted value. Filter by status Example: eaque

filter[start_date]   date  optional    

Filter column start_date by any accepted value. Filter by start date Example: eveniet

filter[end_date]   date  optional    

Filter column end_date by any accepted value. Filter by end date Example: voluptatem

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. Filter by created at Example: non

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. Filter by updated at Example: quam

search   string  optional    

Search in all of these columns: name, version Example: ea

sort   string  optional    

sort by any accepted column: name, version, status, start_date, end_date, created_at, updated_at. prefix a "-" before the column name to sort in descending order Example: name

column   string  optional    

get a distinct list of filterable values for any of the columns: name, version, status, conformance_level_id. Example: name

Show

requires authentication

Show a MRSL Standard

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/mrsl-standard/1" \
    --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/organisation/1/chemical/certification/mrsl-standard/1"
);

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,
        "legacy_certification_standard_id": 69,
        "reference_id": "30-HRBQFLXEEXU-K",
        "name": "Brachi Testing Services",
        "version": "ZDHC MRSL v2.0",
        "conformance_level_id": 1,
        "start_date": "2020-08-12T00:00:00.000000Z",
        "end_date": "2024-06-01T00:00:00.000000Z",
        "status": "PASSED",
        "created_at": "2026-05-08T21:42:17.000000Z",
        "updated_at": "2026-05-12T15:01:47.000000Z",
        "expired_at": "2026-05-12T15:01:47.000000Z",
        "conformance_level": {
            "id": 1,
            "name": "Level 1",
            "created_at": null,
            "updated_at": null
        },
        "organisations": [
            {
                "id": 8567,
                "maxio_customer_id": 310314,
                "reference_id": "01-8ZQM4EKQRV3-B",
                "pdc_id": null,
                "gateway_aid": "A904AT31",
                "uuid": "042f9b98-c0c0-4c76-a85f-75d059a4c9b6",
                "type_id": 7,
                "status": "approved",
                "name": "Brachi Testing Services S.r.l. Unipersonale_MRSL",
                "legal_name": "Brachi Testing Services S.r.l. Unipersonale_MRSL",
                "address_1": "Via Fona di Mezzana, 59100",
                "address_2": null,
                "city": "Mezzana",
                "state": "Prato",
                "location": "IT",
                "zip": "",
                "phone": "+390574591343",
                "email": "giancarlo.diblasi@brachi.it",
                "contact_first_name": "Giancarlo",
                "contact_last_name": "Di Blasi",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2020-01-08T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:19:36.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "Italy",
                "pivot": {
                    "mrsl_standard_id": 1,
                    "organisation_id": 8567,
                    "id": 64,
                    "valid_until": "2024-06-01T00:00:00.000000Z",
                    "created_at": "2020-10-05T00:00:00.000000Z",
                    "updated_at": "2025-03-12T00:00:00.000000Z"
                }
            }
        ]
    }
}
 

Request      

GET api/organisation/{organisation_id}/chemical/certification/mrsl-standard/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the mrsl standard. Example: 1

Store

requires authentication

Create a new MRSL Standard

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/mrsl-standard" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"ggfwolwm\",
    \"version\": \"leypvezcmeqi\",
    \"conformance_level_id\": \"aperiam\",
    \"start_date\": \"2026-05-21T16:14:53\",
    \"end_date\": \"2026-05-21T16:14:53\",
    \"status\": \"PASSED\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/mrsl-standard"
);

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

let body = {
    "name": "ggfwolwm",
    "version": "leypvezcmeqi",
    "conformance_level_id": "aperiam",
    "start_date": "2026-05-21T16:14:53",
    "end_date": "2026-05-21T16:14:53",
    "status": "PASSED"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "legacy_certification_standard_id": 69,
        "reference_id": "30-HRBQFLXEEXU-K",
        "name": "Brachi Testing Services",
        "version": "ZDHC MRSL v2.0",
        "conformance_level_id": 1,
        "start_date": "2020-08-12T00:00:00.000000Z",
        "end_date": "2024-06-01T00:00:00.000000Z",
        "status": "PASSED",
        "created_at": "2026-05-08T21:42:17.000000Z",
        "updated_at": "2026-05-12T15:01:47.000000Z",
        "expired_at": "2026-05-12T15:01:47.000000Z"
    }
}
 

Request      

POST api/organisation/{organisation_id}/chemical/certification/mrsl-standard

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: ggfwolwm

version   string     

Must not be greater than 255 characters. Example: leypvezcmeqi

organisations   string[]  optional    

The id of an existing record in the organisations table.

conformance_level_id   string     

The id of an existing record in the conformance_levels table. Example: aperiam

start_date   string     

Must be a valid date. Example: 2026-05-21T16:14:53

end_date   string  optional    

Must be a valid date. Example: 2026-05-21T16:14:53

status   string     

Example: PASSED

Must be one of:
  • FAILED
  • PASSED

Update

requires authentication

Update a MRSL Standard

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/mrsl-standard/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"lqcrqxmihiaedwxjavrkqsimg\",
    \"version\": \"uxoixqqiwowfwmruotftkagu\",
    \"conformance_level_id\": \"dignissimos\",
    \"start_date\": \"2026-05-21T16:14:53\",
    \"end_date\": \"2026-05-21T16:14:53\",
    \"status\": \"FAILED\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/mrsl-standard/1"
);

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

let body = {
    "name": "lqcrqxmihiaedwxjavrkqsimg",
    "version": "uxoixqqiwowfwmruotftkagu",
    "conformance_level_id": "dignissimos",
    "start_date": "2026-05-21T16:14:53",
    "end_date": "2026-05-21T16:14:53",
    "status": "FAILED"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "legacy_certification_standard_id": 69,
        "reference_id": "30-HRBQFLXEEXU-K",
        "name": "Brachi Testing Services",
        "version": "ZDHC MRSL v2.0",
        "conformance_level_id": 1,
        "start_date": "2020-08-12T00:00:00.000000Z",
        "end_date": "2024-06-01T00:00:00.000000Z",
        "status": "PASSED",
        "created_at": "2026-05-08T21:42:17.000000Z",
        "updated_at": "2026-05-12T15:01:47.000000Z",
        "expired_at": "2026-05-12T15:01:47.000000Z"
    }
}
 

Request      

PUT api/organisation/{organisation_id}/chemical/certification/mrsl-standard/{id}

PATCH api/organisation/{organisation_id}/chemical/certification/mrsl-standard/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the mrsl standard. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: lqcrqxmihiaedwxjavrkqsimg

version   string     

Must not be greater than 255 characters. Example: uxoixqqiwowfwmruotftkagu

organisations   string[]  optional    

The id of an existing record in the organisations table.

conformance_level_id   string     

The id of an existing record in the conformance_levels table. Example: dignissimos

start_date   string     

Must be a valid date. Example: 2026-05-21T16:14:53

end_date   string  optional    

Must be a valid date. Example: 2026-05-21T16:14:53

status   string     

Example: FAILED

Must be one of:
  • FAILED
  • PASSED

Destroy

requires authentication

Delete a MRSL Standard

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/chemical/certification/mrsl-standard/1" \
    --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/organisation/1/chemical/certification/mrsl-standard/1"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/organisation/{organisation_id}/chemical/certification/mrsl-standard/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the mrsl standard. Example: 1

Organisations

Allowed Connections

Index

requires authentication

List all organisation connections

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/organisation/1/allowed-connections?per_page=17&page=1" \
    --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/organisations/organisation/1/allowed-connections"
);

const params = {
    "per_page": "17",
    "page": "1",
};
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,
            "source_type_id": 4,
            "target_type_id": 2,
            "deactivated": 0,
            "created_at": "2026-05-18T16:16:07.000000Z",
            "updated_at": "2026-05-18T16:16:07.000000Z",
            "source": {
                "id": 4,
                "name": "Brand",
                "display_name": "Brand",
                "description": null,
                "selectable": 1,
                "created_at": "2026-05-08T21:42:16.000000Z",
                "updated_at": "2026-05-21T16:14:29.000000Z"
            },
            "target": {
                "id": 2,
                "name": "Supplier",
                "display_name": "Supplier",
                "description": null,
                "selectable": 1,
                "created_at": "2026-05-08T21:42:16.000000Z",
                "updated_at": "2026-05-21T16:14:29.000000Z"
            }
        },
        {
            "id": 1,
            "source_type_id": 4,
            "target_type_id": 2,
            "deactivated": 0,
            "created_at": "2026-05-18T16:16:07.000000Z",
            "updated_at": "2026-05-18T16:16:07.000000Z",
            "source": {
                "id": 4,
                "name": "Brand",
                "display_name": "Brand",
                "description": null,
                "selectable": 1,
                "created_at": "2026-05-08T21:42:16.000000Z",
                "updated_at": "2026-05-21T16:14:29.000000Z"
            },
            "target": {
                "id": 2,
                "name": "Supplier",
                "display_name": "Supplier",
                "description": null,
                "selectable": 1,
                "created_at": "2026-05-08T21:42:16.000000Z",
                "updated_at": "2026-05-21T16:14:29.000000Z"
            }
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/organisations/organisation/{organisation_id}/allowed-connections

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 17

page   integer  optional    

the page number to show. Example: 1

Store

requires authentication

Store an organisation connection

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/organisation/1/allowed-connections" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"source_type_id\": 19,
    \"target_type_id\": 1,
    \"deactivated\": false
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/organisation/1/allowed-connections"
);

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

let body = {
    "source_type_id": 19,
    "target_type_id": 1,
    "deactivated": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": [
        {
            "id": 1,
            "source_type_id": 4,
            "target_type_id": 2,
            "deactivated": 0,
            "created_at": "2026-05-18T16:16:07.000000Z",
            "updated_at": "2026-05-18T16:16:07.000000Z"
        },
        {
            "id": 1,
            "source_type_id": 4,
            "target_type_id": 2,
            "deactivated": 0,
            "created_at": "2026-05-18T16:16:07.000000Z",
            "updated_at": "2026-05-18T16:16:07.000000Z"
        }
    ]
}
 

Request      

POST api/organisations/organisation/{organisation_id}/allowed-connections

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

source_type_id   integer     

The id of an existing record in the organisation_types table. Example: 19

target_type_id   integer     

The id of an existing record in the organisation_types table. Example: 1

deactivated   boolean  optional    

Example: false

Destroy

requires authentication

Destroy an organisation connection

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/organisation/1/allowed-connections/1" \
    --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/organisations/organisation/1/allowed-connections/1"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

DELETE api/organisations/organisation/{organisation_id}/allowed-connections/{connection_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

connection_id   integer     

The ID of the connection. Example: 1

Selectable target types

requires authentication

Get types that are selectable for a connection

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/selectable-target-types" \
    --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/organisations/1/connections/selectable-target-types"
);

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": [
        1,
        2,
        3
    ]
}
 

Request      

GET api/organisations/{organisation_id}/connections/selectable-target-types

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Connection Associations

Index

requires authentication

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/1/associations?per_page=2&page=1&search=sunt&filter%5Btype%5D=suppliers_to_brand&filter%5Bfrom_organisation_connection_id%5D=4&filter%5Bfrom_organisation_id%5D=19&filter%5Bcreated_at%5D=%3C+2026-06-08+16%3A14%3A55&filter%5Bupdated_at%5D=%3D+2026-05-31+16%3A14%3A55&sort=type" \
    --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/organisations/1/connections/1/associations"
);

const params = {
    "per_page": "2",
    "page": "1",
    "search": "sunt",
    "filter[type]": "suppliers_to_brand",
    "filter[from_organisation_connection_id]": "4",
    "filter[from_organisation_id]": "19",
    "filter[created_at]": "< 2026-06-08 16:14:55",
    "filter[updated_at]": "= 2026-05-31 16:14:55",
    "sort": "type",
};
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": 7,
            "type": "suppliers_to_brand",
            "to_endpoint": "receiving_organisation",
            "to_organisation_connection": {
                "id": 24814,
                "sending_organisation_id": 171283,
                "receiving_organisation_id": 171285,
                "accepted_at": null,
                "disconnected_at": null,
                "rejected_at": null,
                "created_at": "2026-05-21T16:14:56.000000Z",
                "updated_at": "2026-05-21T16:14:56.000000Z",
                "status": "pending",
                "sharing_settings": []
            },
            "from_endpoint": "sending_organisation",
            "from_organisation_connection": {
                "id": 24813,
                "sending_organisation_id": 171284,
                "receiving_organisation_id": 171285,
                "accepted_at": null,
                "disconnected_at": null,
                "rejected_at": null,
                "created_at": "2026-05-21T16:14:56.000000Z",
                "updated_at": "2026-05-21T16:14:56.000000Z",
                "status": "pending",
                "sharing_settings": []
            },
            "created_at": "2026-05-21T16:14:56.000000Z",
            "updated_at": "2026-05-21T16:14:56.000000Z"
        },
        {
            "id": 7,
            "type": "suppliers_to_brand",
            "to_endpoint": "receiving_organisation",
            "to_organisation_connection": {
                "id": 24814,
                "sending_organisation_id": 171283,
                "receiving_organisation_id": 171285,
                "accepted_at": null,
                "disconnected_at": null,
                "rejected_at": null,
                "created_at": "2026-05-21T16:14:56.000000Z",
                "updated_at": "2026-05-21T16:14:56.000000Z",
                "status": "pending",
                "sharing_settings": []
            },
            "from_endpoint": "sending_organisation",
            "from_organisation_connection": {
                "id": 24813,
                "sending_organisation_id": 171284,
                "receiving_organisation_id": 171285,
                "accepted_at": null,
                "disconnected_at": null,
                "rejected_at": null,
                "created_at": "2026-05-21T16:14:56.000000Z",
                "updated_at": "2026-05-21T16:14:56.000000Z",
                "status": "pending",
                "sharing_settings": []
            },
            "created_at": "2026-05-21T16:14:56.000000Z",
            "updated_at": "2026-05-21T16:14:56.000000Z"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "/",
        "per_page": "100",
        "to": 2
    }
}
 

Request      

GET api/organisations/{organisation_id}/connections/{connection_id}/associations

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

connection_id   integer     

The ID of the connection. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 2

page   integer  optional    

the page number to show. Example: 1

search   string  optional    

Search in all of these columns: from_organisation_name, from_organisation_location Example: sunt

filter[type]   string  optional    

Filter column type by any accepted value. Matches exact value. Example: suppliers_to_brand

Must be one of:
  • suppliers_to_brand
filter[from_organisation_connection_id]   integer  optional    

Filter column from_organisation_connection_id by any accepted value. From connection id. Example: 4

filter[from_organisation_id]   integer  optional    

Filter column from_organisation_id by any accepted value. Resolved “from” organisation id (matches sending/receiving on the from connection per from_endpoint). Example: 19

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: < 2026-06-08 16:14:55

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: = 2026-05-31 16:14:55

sort   string  optional    

sort by any accepted column: type, from_organisation_name, created_at. prefix a "-" before the column name to sort in descending order Example: type

Sync

requires authentication

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/1/associations/sync" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"suppliers_to_brand\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/1/associations/sync"
);

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

let body = {
    "type": "suppliers_to_brand"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": [
        {
            "id": 8,
            "type": "suppliers_to_brand",
            "to_endpoint": "receiving_organisation",
            "to_organisation_connection": {
                "id": 24817,
                "sending_organisation_id": 171286,
                "receiving_organisation_id": 171288,
                "accepted_at": null,
                "disconnected_at": null,
                "rejected_at": null,
                "created_at": "2026-05-21T16:14:57.000000Z",
                "updated_at": "2026-05-21T16:14:57.000000Z",
                "status": "pending",
                "sharing_settings": []
            },
            "from_endpoint": "sending_organisation",
            "from_organisation_connection": {
                "id": 24816,
                "sending_organisation_id": 171287,
                "receiving_organisation_id": 171288,
                "accepted_at": null,
                "disconnected_at": null,
                "rejected_at": null,
                "created_at": "2026-05-21T16:14:57.000000Z",
                "updated_at": "2026-05-21T16:14:57.000000Z",
                "status": "pending",
                "sharing_settings": []
            },
            "created_at": "2026-05-21T16:14:57.000000Z",
            "updated_at": "2026-05-21T16:14:57.000000Z"
        },
        {
            "id": 8,
            "type": "suppliers_to_brand",
            "to_endpoint": "receiving_organisation",
            "to_organisation_connection": {
                "id": 24817,
                "sending_organisation_id": 171286,
                "receiving_organisation_id": 171288,
                "accepted_at": null,
                "disconnected_at": null,
                "rejected_at": null,
                "created_at": "2026-05-21T16:14:57.000000Z",
                "updated_at": "2026-05-21T16:14:57.000000Z",
                "status": "pending",
                "sharing_settings": []
            },
            "from_endpoint": "sending_organisation",
            "from_organisation_connection": {
                "id": 24816,
                "sending_organisation_id": 171287,
                "receiving_organisation_id": 171288,
                "accepted_at": null,
                "disconnected_at": null,
                "rejected_at": null,
                "created_at": "2026-05-21T16:14:57.000000Z",
                "updated_at": "2026-05-21T16:14:57.000000Z",
                "status": "pending",
                "sharing_settings": []
            },
            "created_at": "2026-05-21T16:14:57.000000Z",
            "updated_at": "2026-05-21T16:14:57.000000Z"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "/",
        "per_page": "100",
        "to": 2
    }
}
 

Request      

POST api/organisations/{organisation_id}/connections/{connection_id}/associations/sync

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

connection_id   integer     

The ID of the connection. Example: 1

Body Parameters

type   string     

List of allowed association types. Allowed types depend on the organisation type:

  • Vendor:
    • suppliers_to_brand. Example: suppliers_to_brand
Must be one of:
  • suppliers_to_brand
organisation_connection_ids   object  optional    

List of organisation connection IDs to sync the association with. The connections have to be active and the counterpart organisation type has to be allowed for the selected association type. The id of an existing record in the organisation_connections table.

Connections

Index

requires authentication

List all organisation connections

Each item in data can include one integer field per {@see OrganisationConnectionAssociationTypeEnum} case: {type}_association_count (e.g. suppliers_to_brand_association_count), from withCount on the connection model.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections?per_page=14&page=1&search=earum&filter%5Bstatus%5D=debitis&filter%5Binitiated_by%5D=odio&filter%5Blabels%5D=eum&filter%5Borganisation_type%5D=aperiam&filter%5Borganisation_location%5D=illo" \
    --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/organisations/1/connections"
);

const params = {
    "per_page": "14",
    "page": "1",
    "search": "earum",
    "filter[status]": "debitis",
    "filter[initiated_by]": "odio",
    "filter[labels]": "eum",
    "filter[organisation_type]": "aperiam",
    "filter[organisation_location]": "illo",
};
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,
            "sending_organisation_id": 15887,
            "receiving_organisation_id": 14374,
            "accepted_at": "2021-01-15 00:00:00",
            "disconnected_at": null,
            "rejected_at": null,
            "created_at": "2021-01-15T00:00:00.000000Z",
            "updated_at": "2021-01-15T00:00:00.000000Z",
            "status": "active",
            "receiving_organisation": {
                "id": 14374,
                "maxio_customer_id": 316054,
                "reference_id": "01-HRBL9S3SZDH-R",
                "pdc_id": null,
                "gateway_aid": "A284DO88",
                "uuid": "c6430540-00dd-48b8-933f-6efdd3d2f18c",
                "type_id": 2,
                "status": "approved",
                "name": "Bindal Silk Mills Private Limited",
                "legal_name": "Bindal Silk Mills Private Limited",
                "address_1": "p-216,kadodara",
                "address_2": null,
                "city": "Surat",
                "state": "Gujarat",
                "location": "IN",
                "zip": "394327",
                "phone": "02622 271009,",
                "email": "mail@bindalmill.com",
                "contact_first_name": "avichal",
                "contact_last_name": "arya",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2017-09-27T03:26:36.000000Z",
                "updated_at": "2026-05-12T15:38:33.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "India",
                "type": {
                    "id": 2,
                    "name": "Supplier",
                    "display_name": "Supplier",
                    "description": null,
                    "selectable": 1,
                    "created_at": "2026-05-08T21:42:16.000000Z",
                    "updated_at": "2026-05-21T16:14:29.000000Z"
                }
            },
            "sending_organisation": {
                "id": 15887,
                "maxio_customer_id": 317567,
                "reference_id": "01-WEJAVK2J8KK-Z",
                "pdc_id": null,
                "gateway_aid": "A137YR68",
                "uuid": "0c430135-8770-4d45-b010-c6d540a922f8",
                "type_id": 4,
                "status": "approved",
                "name": "Primark",
                "legal_name": "Primark",
                "address_1": "10 Grosvenor Street, London, W1K 4QY",
                "address_2": null,
                "city": "City Of London",
                "state": "London",
                "location": "GB",
                "zip": "",
                "phone": "+44 7525203334",
                "email": "hhabibhasan@primark.co.uk",
                "contact_first_name": "HANDE",
                "contact_last_name": "Tezer",
                "website": "https://www.primark.com/en/homepage",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2017-08-01T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:43:35.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "United Kingdom",
                "type": {
                    "id": 4,
                    "name": "Brand",
                    "display_name": "Brand",
                    "description": null,
                    "selectable": 1,
                    "created_at": "2026-05-08T21:42:16.000000Z",
                    "updated_at": "2026-05-21T16:14:29.000000Z"
                }
            }
        },
        {
            "id": 1,
            "sending_organisation_id": 15887,
            "receiving_organisation_id": 14374,
            "accepted_at": "2021-01-15 00:00:00",
            "disconnected_at": null,
            "rejected_at": null,
            "created_at": "2021-01-15T00:00:00.000000Z",
            "updated_at": "2021-01-15T00:00:00.000000Z",
            "status": "active",
            "receiving_organisation": {
                "id": 14374,
                "maxio_customer_id": 316054,
                "reference_id": "01-HRBL9S3SZDH-R",
                "pdc_id": null,
                "gateway_aid": "A284DO88",
                "uuid": "c6430540-00dd-48b8-933f-6efdd3d2f18c",
                "type_id": 2,
                "status": "approved",
                "name": "Bindal Silk Mills Private Limited",
                "legal_name": "Bindal Silk Mills Private Limited",
                "address_1": "p-216,kadodara",
                "address_2": null,
                "city": "Surat",
                "state": "Gujarat",
                "location": "IN",
                "zip": "394327",
                "phone": "02622 271009,",
                "email": "mail@bindalmill.com",
                "contact_first_name": "avichal",
                "contact_last_name": "arya",
                "website": null,
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2017-09-27T03:26:36.000000Z",
                "updated_at": "2026-05-12T15:38:33.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "India",
                "type": {
                    "id": 2,
                    "name": "Supplier",
                    "display_name": "Supplier",
                    "description": null,
                    "selectable": 1,
                    "created_at": "2026-05-08T21:42:16.000000Z",
                    "updated_at": "2026-05-21T16:14:29.000000Z"
                }
            },
            "sending_organisation": {
                "id": 15887,
                "maxio_customer_id": 317567,
                "reference_id": "01-WEJAVK2J8KK-Z",
                "pdc_id": null,
                "gateway_aid": "A137YR68",
                "uuid": "0c430135-8770-4d45-b010-c6d540a922f8",
                "type_id": 4,
                "status": "approved",
                "name": "Primark",
                "legal_name": "Primark",
                "address_1": "10 Grosvenor Street, London, W1K 4QY",
                "address_2": null,
                "city": "City Of London",
                "state": "London",
                "location": "GB",
                "zip": "",
                "phone": "+44 7525203334",
                "email": "hhabibhasan@primark.co.uk",
                "contact_first_name": "HANDE",
                "contact_last_name": "Tezer",
                "website": "https://www.primark.com/en/homepage",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": null,
                "created_at": "2017-08-01T00:00:00.000000Z",
                "updated_at": "2026-05-12T15:43:35.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": null,
                "profile_reviewed_by_user_id": null,
                "location_name": "United Kingdom",
                "type": {
                    "id": 4,
                    "name": "Brand",
                    "display_name": "Brand",
                    "description": null,
                    "selectable": 1,
                    "created_at": "2026-05-08T21:42:16.000000Z",
                    "updated_at": "2026-05-21T16:14:29.000000Z"
                }
            }
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "/",
        "per_page": "100",
        "to": 2
    }
}
 

Request      

GET api/organisations/{organisation_id}/connections

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 14

page   integer  optional    

the page number to show. Example: 1

search   string  optional    

Search in all of these columns: organisation_name, legal_name, organisation_location Example: earum

filter[status]   The status of the connection. Can be one of: active, pending, rejected, disconnected  optional    

Filter column status by any accepted value. custom Example: debitis

filter[initiated_by]   The organisation that initiated the connection. Can be one of: us, them  optional    

Filter column initiated_by by any accepted value. custom Example: odio

filter[labels]   Comma-separated label IDs. Returns connections that have at least one of these labels.  optional    

Filter column labels by any accepted value. custom Example: eum

filter[organisation_type]   Comma-separated organisation type IDs. Matches connections where either sendingOrganisation.type or receivingOrganisation.type has one of these type IDs.  optional    

Filter column organisation_type by any accepted value. custom Example: aperiam

filter[organisation_location]   Comma-separated location values. Matches connections where either sendingOrganisation.location or receivingOrganisation.location has one of these values.  optional    

Filter column organisation_location by any accepted value. custom Example: illo

Export connections as CSV

requires authentication

All connections for the organisation (unpaginated, one row per connection). The other party on each connection is used for the organisation columns.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/export" \
    --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/organisations/1/connections/export"
);

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):


file
 

Request      

GET api/organisations/{organisation_id}/connections/export

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Search connectable organisations

requires authentication

Search for connectable organisations

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/search-connectable-organisations?page=1&per_page=17&search=doloremque" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type_id\": 2,
    \"search\": \"quo\",
    \"exclude_connected\": \"0\",
    \"exclude_pending\": \"1\",
    \"include_all\": \"true\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/search-connectable-organisations"
);

const params = {
    "page": "1",
    "per_page": "17",
    "search": "doloremque",
};
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",
};

let body = {
    "type_id": 2,
    "search": "quo",
    "exclude_connected": "0",
    "exclude_pending": "1",
    "include_all": "true"
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": [
        {
            "id": 1,
            "maxio_customer_id": 268249,
            "reference_id": "01-J4CGS34JUJV-Q",
            "pdc_id": null,
            "gateway_aid": "A356IB10",
            "uuid": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
            "type_id": 2,
            "status": "approved",
            "name": "Ping Yang Pengye Shoes Com Ltd",
            "legal_name": "Ping Yang Pengye Shoes Com Ltd",
            "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
            "address_2": null,
            "city": "Wenzhou",
            "state": "Zhejiang",
            "location": "CN",
            "zip": "",
            "phone": "",
            "email": "pengye@126.com",
            "contact_first_name": "JIAN",
            "contact_last_name": "Le",
            "website": null,
            "avatar_url": null,
            "applicant_comment": null,
            "reviewer_comment": null,
            "registration_mail_sent_at": null,
            "created_at": "2021-11-04T12:19:55.000000Z",
            "updated_at": "2026-05-12T14:45:25.000000Z",
            "reviewer_comment_category": null,
            "profile_reviewed_at": null,
            "profile_reviewed_by_user_id": null,
            "location_name": "China"
        },
        {
            "id": 1,
            "maxio_customer_id": 268249,
            "reference_id": "01-J4CGS34JUJV-Q",
            "pdc_id": null,
            "gateway_aid": "A356IB10",
            "uuid": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
            "type_id": 2,
            "status": "approved",
            "name": "Ping Yang Pengye Shoes Com Ltd",
            "legal_name": "Ping Yang Pengye Shoes Com Ltd",
            "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
            "address_2": null,
            "city": "Wenzhou",
            "state": "Zhejiang",
            "location": "CN",
            "zip": "",
            "phone": "",
            "email": "pengye@126.com",
            "contact_first_name": "JIAN",
            "contact_last_name": "Le",
            "website": null,
            "avatar_url": null,
            "applicant_comment": null,
            "reviewer_comment": null,
            "registration_mail_sent_at": null,
            "created_at": "2021-11-04T12:19:55.000000Z",
            "updated_at": "2026-05-12T14:45:25.000000Z",
            "reviewer_comment_category": null,
            "profile_reviewed_at": null,
            "profile_reviewed_by_user_id": null,
            "location_name": "China"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/organisations/{organisation_id}/connections/search-connectable-organisations

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 17

search   string  optional    

Search in all of these columns: name, legal_name, id Example: doloremque

Body Parameters

type_id   integer     

The id of an existing record in the organisation_types table. Example: 2

search   string     

Example: quo

exclude_connected   string  optional    

Example: 0

Must be one of:
  • true
  • false
  • 1
  • 0
exclude_pending   string  optional    

Example: 1

Must be one of:
  • true
  • false
  • 1
  • 0
include_all   string  optional    

Example: true

Must be one of:
  • true
  • false
  • 1
  • 0

Show

requires authentication

Show an organisation connection

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/1" \
    --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/organisations/1/connections/1"
);

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,
        "sending_organisation_id": 15887,
        "receiving_organisation_id": 14374,
        "accepted_at": "2021-01-15 00:00:00",
        "disconnected_at": null,
        "rejected_at": null,
        "created_at": "2021-01-15T00:00:00.000000Z",
        "updated_at": "2021-01-15T00:00:00.000000Z",
        "status": "active",
        "sending_organisation": {
            "id": 15887,
            "reference_id": "01-WEJAVK2J8KK-Z",
            "type_id": 4,
            "name": "Primark",
            "address_1": "10 Grosvenor Street, London, W1K 4QY",
            "address_2": null,
            "city": "City Of London",
            "state": "London",
            "location": "GB",
            "zip": "",
            "phone": "+44 7525203334",
            "email": "hhabibhasan@primark.co.uk",
            "website": "https://www.primark.com/en/homepage",
            "avatar_url": null,
            "location_name": "United Kingdom"
        },
        "receiving_organisation": {
            "id": 14374,
            "reference_id": "01-HRBL9S3SZDH-R",
            "type_id": 2,
            "name": "Bindal Silk Mills Private Limited",
            "address_1": "p-216,kadodara",
            "address_2": null,
            "city": "Surat",
            "state": "Gujarat",
            "location": "IN",
            "zip": "394327",
            "phone": "02622 271009,",
            "email": "mail@bindalmill.com",
            "website": null,
            "avatar_url": null,
            "location_name": "India"
        },
        "labels": [],
        "sharing_settings": []
    }
}
 

Request      

GET api/organisations/{organisation_id}/connections/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the connection. Example: 1

Update

requires authentication

Update an organisation connection

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"labels\": [
        \"pxamwkwnkdhxndizbdxdk\"
    ],
    \"sharing_settings\": [
        {
            \"type\": \"quibusdam\",
            \"active\": false
        }
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/1"
);

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

let body = {
    "labels": [
        "pxamwkwnkdhxndizbdxdk"
    ],
    "sharing_settings": [
        {
            "type": "quibusdam",
            "active": false
        }
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "sending_organisation_id": 15887,
        "receiving_organisation_id": 14374,
        "accepted_at": "2021-01-15 00:00:00",
        "disconnected_at": null,
        "rejected_at": null,
        "created_at": "2021-01-15T00:00:00.000000Z",
        "updated_at": "2021-01-15T00:00:00.000000Z",
        "status": "active",
        "sharing_settings": []
    }
}
 

Request      

PUT api/organisations/{organisation_id}/connections/{id}

PATCH api/organisations/{organisation_id}/connections/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the connection. Example: 1

Body Parameters

labels   string[]  optional    

Must not be greater than 255 characters.

sharing_settings   object[]     
type   string     

List of sharing types to enable for this connection. Allowed values depend on the organisation type:

  • Supplier:

    • share_chemical_inventory
    • share_wastewater_reporting
    • share_laboratory_data
  • Brand:

    • share_connection_on_detox. Example: quibusdam
active   boolean     

Whether this sharing type is enabled (true) or disabled (false) for the connection. Example: false

Invite

requires authentication

Invite an organisation to connect

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/invite" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"organisation_id\": 8
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/invite"
);

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

let body = {
    "organisation_id": 8
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


Organisation connection initiated
 

Request      

POST api/organisations/{organisation_id}/connections/invite

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

organisation_id   integer     

The id of an existing record in the organisations table. Example: 8

Accept

requires authentication

Accept an organisation connection

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/1/accept" \
    --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/organisations/1/connections/1/accept"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Organisation connection accepted"
}
 

Request      

POST api/organisations/{organisation_id}/connections/{connection_id}/accept

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

connection_id   integer     

The ID of the connection. Example: 1

Reject

requires authentication

Reject an organisation connection

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/1/reject" \
    --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/organisations/1/connections/1/reject"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Organisation connection rejected"
}
 

Request      

POST api/organisations/{organisation_id}/connections/{connection_id}/reject

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

connection_id   integer     

The ID of the connection. Example: 1

Disconnect

requires authentication

Disconnect an organisation connection

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/1/disconnect" \
    --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/organisations/1/connections/1/disconnect"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Organisation disconnected"
}
 

Request      

POST api/organisations/{organisation_id}/connections/{connection_id}/disconnect

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

connection_id   integer     

The ID of the connection. Example: 1

Cancel

requires authentication

Cancel a pending organisation connection request

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/connections/1/cancel" \
    --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/organisations/1/connections/1/cancel"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "Connection request cancelled"
}
 

Request      

POST api/organisations/{organisation_id}/connections/{connection_id}/cancel

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

connection_id   integer     

The ID of the connection. Example: 1

Index

requires authentication

List all organisations.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations?filter%5Bstatus%5D=quod&filter%5Btype_id%5D=qui&sort=name&page=1&per_page=1&search=rerum" \
    --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/organisations"
);

const params = {
    "filter[status]": "quod",
    "filter[type_id]": "qui",
    "sort": "name",
    "page": "1",
    "per_page": "1",
    "search": "rerum",
};
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,
            "maxio_customer_id": 268249,
            "reference_id": "01-J4CGS34JUJV-Q",
            "pdc_id": null,
            "gateway_aid": "A356IB10",
            "uuid": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
            "type_id": 4,
            "status": "approved",
            "name": "Ping Yang Pengye Shoes Com Ltd",
            "legal_name": "Ping Yang Pengye Shoes Com Ltd",
            "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
            "address_2": null,
            "city": "Wenzhou",
            "state": "Zhejiang",
            "location": "CN",
            "zip": "",
            "phone": "",
            "email": "pengye@126.com",
            "contact_first_name": "JIAN",
            "contact_last_name": "Le",
            "website": null,
            "avatar_url": null,
            "applicant_comment": null,
            "reviewer_comment": null,
            "registration_mail_sent_at": null,
            "created_at": "2021-11-04T12:19:55.000000Z",
            "updated_at": "2026-05-12T14:45:25.000000Z",
            "reviewer_comment_category": null,
            "profile_reviewed_at": null,
            "profile_reviewed_by_user_id": null,
            "location_name": "China",
            "type_name": "Vendor"
        },
        {
            "id": 1,
            "maxio_customer_id": 268249,
            "reference_id": "01-J4CGS34JUJV-Q",
            "pdc_id": null,
            "gateway_aid": "A356IB10",
            "uuid": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
            "type_id": 2,
            "status": "approved",
            "name": "Ping Yang Pengye Shoes Com Ltd",
            "legal_name": "Ping Yang Pengye Shoes Com Ltd",
            "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
            "address_2": null,
            "city": "Wenzhou",
            "state": "Zhejiang",
            "location": "CN",
            "zip": "",
            "phone": "",
            "email": "pengye@126.com",
            "contact_first_name": "JIAN",
            "contact_last_name": "Le",
            "website": null,
            "avatar_url": null,
            "applicant_comment": null,
            "reviewer_comment": null,
            "registration_mail_sent_at": null,
            "created_at": "2021-11-04T12:19:55.000000Z",
            "updated_at": "2026-05-12T14:45:25.000000Z",
            "reviewer_comment_category": null,
            "profile_reviewed_at": null,
            "profile_reviewed_by_user_id": null,
            "location_name": "China",
            "type_name": "ZDHC Internal"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "/",
        "per_page": "50",
        "to": 2
    }
}
 

Request      

GET api/organisations

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

filter[status]   string  optional    

Filter column status by any accepted value. Matches exact value. Example: quod

filter[type_id]   string  optional    

Filter column type_id by any accepted value. Matches exact value. Example: qui

sort   string  optional    

sort by any accepted column: name, type_name, status, created_at, contact_first_name, contact_last_name. prefix a "-" before the column name to sort in descending order Example: name

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 1

search   string  optional    

Search in all of these columns: name, status, contact_first_name, contact_last_name Example: rerum

Show

Show an organisation's data.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1"
);

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


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "maxio_customer_id": 268249,
        "reference_id": "01-J4CGS34JUJV-Q",
        "pdc_id": null,
        "gateway_aid": "A356IB10",
        "uuid": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
        "type_id": 2,
        "status": "approved",
        "name": "Ping Yang Pengye Shoes Com Ltd",
        "legal_name": "Ping Yang Pengye Shoes Com Ltd",
        "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
        "address_2": null,
        "city": "Wenzhou",
        "state": "Zhejiang",
        "location": "CN",
        "zip": "",
        "phone": "",
        "email": "pengye@126.com",
        "contact_first_name": "JIAN",
        "contact_last_name": "Le",
        "website": null,
        "avatar_url": null,
        "applicant_comment": null,
        "reviewer_comment": null,
        "registration_mail_sent_at": null,
        "created_at": "2021-11-04T12:19:55.000000Z",
        "updated_at": "2026-05-12T14:45:25.000000Z",
        "reviewer_comment_category": null,
        "profile_reviewed_at": null,
        "profile_reviewed_by_user_id": null,
        "location_name": "China",
        "type": {
            "id": 2,
            "name": "Supplier",
            "display_name": "Supplier",
            "description": null,
            "selectable": 1,
            "created_at": "2026-05-08T21:42:16.000000Z",
            "updated_at": "2026-05-21T16:14:29.000000Z"
        },
        "industry_identifiers": [],
        "conformance_level_products": [],
        "field_comments": null
    }
}
 

Request      

GET api/organisations/{subject_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

subject_id   integer     

The ID of the subject. Example: 1

Update

Update an organisation's data. Use a PATCH request for partial updates to get better performance.

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "name=egbuussunzhkpzvj"\
    --form "legal_name=exudnihxcxv"\
    --form "address_1=quo"\
    --form "city=phwsbzixobtbkspks"\
    --form "state=rpkiszfycyxzapeuv"\
    --form "location=ST"\
    --form "zip=gaszzravbwufxl"\
    --form "phone=+1234567890"\
    --form "email=cremin.jillian@example.net"\
    --form "contact_first_name=quaerat"\
    --form "contact_last_name=provident"\
    --form "website=https://example.com"\
    --form "conformance_level_products[][id]=19"\
    --form "conformance_level_products[][count]=45"\
    --form "status=rejected"\
    --form "reviewer_comment=velit"\
    --form "reviewer_comment_category=Other"\
    --form "industry_ids[][id]=12"\
    --form "industry_ids[][value]=axenwqbsnkponnxrsodv"\
    --form "safety_data_sheet=@/tmp/phpjoHfEG" 
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1"
);

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

const body = new FormData();
body.append('name', 'egbuussunzhkpzvj');
body.append('legal_name', 'exudnihxcxv');
body.append('address_1', 'quo');
body.append('city', 'phwsbzixobtbkspks');
body.append('state', 'rpkiszfycyxzapeuv');
body.append('location', 'ST');
body.append('zip', 'gaszzravbwufxl');
body.append('phone', '+1234567890');
body.append('email', 'cremin.jillian@example.net');
body.append('contact_first_name', 'quaerat');
body.append('contact_last_name', 'provident');
body.append('website', 'https://example.com');
body.append('conformance_level_products[][id]', '19');
body.append('conformance_level_products[][count]', '45');
body.append('status', 'rejected');
body.append('reviewer_comment', 'velit');
body.append('reviewer_comment_category', 'Other');
body.append('industry_ids[][id]', '12');
body.append('industry_ids[][value]', 'axenwqbsnkponnxrsodv');
body.append('safety_data_sheet', document.querySelector('input[name="safety_data_sheet"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Example response (200, Success):


{
    "message": "updated successfully"
}
 

Example response (422, Validation Error):


{
    "message": "[error message from the first field failing validation]",
    "errors": {
        "[field_name]": [
            "[any validator message failing]"
        ]
    }
}
 

Request      

PUT api/organisations/{subject_id}

PATCH api/organisations/{subject_id}

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

subject_id   integer     

The ID of the subject. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: egbuussunzhkpzvj

legal_name   string     

Must not be greater than 255 characters. Example: exudnihxcxv

address_1   string     

Example: quo

address_2   string  optional    
city   string     

Must not be greater than 255 characters. Example: phwsbzixobtbkspks

state   string     

Must not be greater than 255 characters. Example: rpkiszfycyxzapeuv

location   string     

Example: ST

Must be one of:
  • AF
  • AX
  • AL
  • DZ
  • AS
  • AD
  • AO
  • AI
  • AQ
  • AG
  • AR
  • AM
  • AW
  • AU
  • AT
  • AZ
  • BS
  • BH
  • BD
  • BB
  • BY
  • BE
  • BZ
  • BJ
  • BM
  • BT
  • BO
  • BA
  • BW
  • BV
  • BR
  • IO
  • VG
  • BN
  • BG
  • BF
  • BI
  • KH
  • CM
  • CA
  • CV
  • BQ
  • KY
  • CF
  • TD
  • CL
  • CN
  • CX
  • CC
  • CO
  • KM
  • CG
  • CD
  • CK
  • CR
  • CI
  • HR
  • CU
  • CW
  • CY
  • CZ
  • DK
  • DJ
  • DM
  • DO
  • EC
  • EG
  • SV
  • GQ
  • ER
  • EE
  • SZ
  • ET
  • FK
  • FO
  • FJ
  • FI
  • FR
  • GF
  • PF
  • TF
  • GA
  • GM
  • GE
  • DE
  • GH
  • GI
  • GR
  • GL
  • GD
  • GP
  • GU
  • GT
  • GG
  • GN
  • GW
  • GY
  • HT
  • HM
  • HN
  • HK
  • HU
  • IS
  • IN
  • ID
  • IR
  • IQ
  • IE
  • IM
  • IL
  • IT
  • JM
  • JP
  • JE
  • JO
  • KZ
  • KE
  • KI
  • KW
  • KG
  • LA
  • LV
  • LB
  • LS
  • LR
  • LY
  • LI
  • LT
  • LU
  • MO
  • MG
  • MW
  • MY
  • MV
  • ML
  • MT
  • MH
  • MQ
  • MR
  • MU
  • YT
  • MX
  • FM
  • MD
  • MC
  • MN
  • ME
  • MS
  • MA
  • MZ
  • MM
  • NA
  • NR
  • NP
  • NL
  • NC
  • NZ
  • NI
  • NE
  • NG
  • NU
  • NF
  • KP
  • MK
  • MP
  • NO
  • OM
  • PK
  • PW
  • PS
  • PA
  • PG
  • PY
  • PE
  • PH
  • PN
  • PL
  • PT
  • PR
  • QA
  • RE
  • RO
  • RU
  • RW
  • WS
  • SM
  • ST
  • SA
  • SN
  • RS
  • SC
  • SL
  • SG
  • SX
  • SK
  • SI
  • SB
  • SO
  • ZA
  • GS
  • KR
  • SS
  • ES
  • LK
  • BL
  • SH
  • KN
  • LC
  • MF
  • PM
  • VC
  • SD
  • SR
  • SJ
  • SE
  • CH
  • SY
  • TW
  • TJ
  • TZ
  • TH
  • TL
  • TG
  • TK
  • TO
  • TT
  • TN
  • TR
  • TM
  • TC
  • TV
  • UM
  • VI
  • UG
  • UA
  • AE
  • GB
  • US
  • UY
  • UZ
  • VU
  • VA
  • VE
  • VN
  • WF
  • EH
  • YE
  • ZM
  • ZW
zip   string     

Must not be greater than 64 characters. Example: gaszzravbwufxl

phone   string  optional    

Must be at least 8 characters. Must not be greater than 20 characters. Example: +1234567890

email   string     

Must be a valid email address. Must not be greater than 255 characters. Example: cremin.jillian@example.net

contact_first_name   string     

Example: quaerat

contact_last_name   string     

Example: provident

website   string     

[MANDATORY ONLY FOR: Vendors & Chemical Formulators] The website of the organisation. Must not be greater than 255 characters. Example: https://example.com

industry_ids   object[]  optional    

[ONLY: Suppliers & Vendors] The industry identifiers associated with the organisation.

id   integer  optional    

This field is required when industry_ids.*.value is present. The id of an existing record in the industry_identifiers table. Example: 12

value   string  optional    

This field is required when industry_ids.*.id is present. Must not be greater than 255 characters. Example: axenwqbsnkponnxrsodv

safety_data_sheet   file     

[ONLY: Chemical Formulators] Safety data sheet provided as a file upload. Must be a file. Example: /tmp/phpjoHfEG

conformance_level_products   object[]     
id   integer  optional    

This field is required when conformance_level_products.*.count is present. The id of an existing record in the conformance_levels table. Example: 19

count   integer  optional    

This field is required when conformance_level_products.*.id is present. Must be at least 0. Example: 45

status   string  optional    

Example: rejected

Must be one of:
  • approved
  • submitted
  • needs_correction
  • rejected
reviewer_comment   string  optional    

Example: velit

reviewer_comment_category   string  optional    

Example: Other

Must be one of:
  • Incomplete information
  • Invalid documentation
  • Unqualified organisation type
  • Non-compliance with Requirements
  • Other

Distinct Status

requires authentication

Get a list of distinct organisation statuses.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations-distinct-status" \
    --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/organisations-distinct-status"
);

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, Success):


{
    "data": [
        "submitted",
        "needs_correction",
        "approved",
        "rejected"
    ]
}
 

Request      

GET api/organisations-distinct-status

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Distinct Types

requires authentication

Get a list of distinct organisation types.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations-distinct-types" \
    --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/organisations-distinct-types"
);

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, Success):


{
    "data": {
        "1": "Supplier",
        "2": "Vendor"
    }
}
 

Request      

GET api/organisations-distinct-types

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Profile

Public profile

requires authentication

Get a public profile of an organisation.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/organisation-profile/1" \
    --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/organisations/1/organisation-profile/1"
);

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,
        "reference_id": "01-J4CGS34JUJV-Q",
        "type_id": 2,
        "name": "Ping Yang Pengye Shoes Com Ltd",
        "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
        "address_2": null,
        "city": "Wenzhou",
        "state": "Zhejiang",
        "location": "CN",
        "zip": "",
        "phone": "",
        "email": "pengye@126.com",
        "website": null,
        "avatar_url": null,
        "location_name": "China",
        "os_hub_identifier": null,
        "type": {
            "id": 2,
            "name": "Supplier"
        },
        "further_details": null
    }
}
 

Request      

GET api/organisations/{organisation_id}/organisation-profile/{subject_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

subject_id   integer     

The ID of the subject. Example: 1

Visibility Settings

Show Visibility settings

requires authentication

Get all visibility settings of an organisation, grouped by visibility type.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/visibility-settings" \
    --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/organisations/1/visibility-settings"
);

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, Success):


{
    "message": "Visibility settings fetched successfully"
}
 

Request      

GET api/organisations/{organisation_id}/visibility-settings

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Update Visibility settings

requires authentication

Update the visibility settings of an organisation.

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/visibility-settings" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"visibility_type\": \"sds_files\",
    \"visibility_settings\": [
        {
            \"organisation_type_id\": 7,
            \"visible\": false
        }
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/visibility-settings"
);

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

let body = {
    "visibility_type": "sds_files",
    "visibility_settings": [
        {
            "organisation_type_id": 7,
            "visible": false
        }
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, Success):


{
    "message": "Visibility settings updated successfully"
}
 

Example response (422, Validation Error):


{
    "message": "[error message from the first field failing validation]",
    "errors": {
        "[field_name]": [
            "[any validator message failing]"
        ]
    }
}
 

Request      

PUT api/organisations/{organisation_id}/visibility-settings

PATCH api/organisations/{organisation_id}/visibility-settings

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

visibility_type   string     

Visibility type: organisation_profile_details or sds_files. sds_files is ONLY available for Chemical Formulators.
Other organisation types (e.g. Supplier) will receive a validation error if they use sds_files. Example: sds_files

Must be one of:
  • organisation_profile_details
  • sds_files
visibility_settings   object[]     

Must have at least 1 items.

organisation_type_id   integer     

The id of an existing record in the organisation_types table. Example: 7

Must be one of:
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
visible   boolean     

Example: false

History

Index

requires authentication

List all history entries for an organisation.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/history" \
    --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/organisations/1/history"
);

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": [
        [],
        []
    ],
    "links": {
        "first": "/?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "/",
        "per_page": "10",
        "to": 2
    }
}
 

Request      

GET api/organisations/{organisation_id}/history

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Invitations

Index

requires authentication

List all invitations for the organisation.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/invitation?per_page=20&page=1" \
    --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/organisations/1/invitation"
);

const params = {
    "per_page": "20",
    "page": "1",
};
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,
            "reference_id": "06-QAX2XTKPKQT-Y",
            "uuid": "a1bbba36-062c-44ea-adaf-c10774547880",
            "inviting_organisation_id": 19430,
            "inviting_user_id": 18968,
            "receiving_organisation_id": 19430,
            "receiving_user_id": 18968,
            "status": "INVITED",
            "valid_until": "2026-05-15T21:42:30.000000Z",
            "redeemed_at": null,
            "auto_connect": false,
            "created_at": "2026-05-08T21:42:30.000000Z",
            "updated_at": "2026-05-08T21:42:30.000000Z",
            "receiving_organisation": {
                "id": 19430,
                "reference_id": "01-TMEREQBXYLR-U",
                "type_id": 1,
                "name": "test-ZDHC Internal",
                "address_1": "8565 Schumm Extension Suite 074",
                "address_2": "Suite 307",
                "city": "Aileenfurt",
                "state": "Iowa",
                "location": "ZA",
                "zip": "91167",
                "phone": "+15156239240",
                "email": "marques89@mclaughlin.net",
                "website": "http://denesik.net/reiciendis-et-repellendus-debitis-maiores-maxime-temporibus-et",
                "avatar_url": null,
                "location_name": "South Africa"
            },
            "receiving_user": {
                "id": 18968,
                "email": "admin@localhost",
                "profile_picture_url": null
            },
            "inviting_user": {
                "id": 18968,
                "email": "admin@localhost",
                "profile_picture_url": null
            }
        },
        {
            "id": 1,
            "reference_id": "06-QAX2XTKPKQT-Y",
            "uuid": "a1bbba36-062c-44ea-adaf-c10774547880",
            "inviting_organisation_id": 19430,
            "inviting_user_id": 18968,
            "receiving_organisation_id": 19430,
            "receiving_user_id": 18968,
            "status": "INVITED",
            "valid_until": "2026-05-15T21:42:30.000000Z",
            "redeemed_at": null,
            "auto_connect": false,
            "created_at": "2026-05-08T21:42:30.000000Z",
            "updated_at": "2026-05-08T21:42:30.000000Z",
            "receiving_organisation": {
                "id": 19430,
                "reference_id": "01-TMEREQBXYLR-U",
                "type_id": 1,
                "name": "test-ZDHC Internal",
                "address_1": "8565 Schumm Extension Suite 074",
                "address_2": "Suite 307",
                "city": "Aileenfurt",
                "state": "Iowa",
                "location": "ZA",
                "zip": "91167",
                "phone": "+15156239240",
                "email": "marques89@mclaughlin.net",
                "website": "http://denesik.net/reiciendis-et-repellendus-debitis-maiores-maxime-temporibus-et",
                "avatar_url": null,
                "location_name": "South Africa"
            },
            "receiving_user": {
                "id": 18968,
                "email": "admin@localhost",
                "profile_picture_url": null
            },
            "inviting_user": {
                "id": 18968,
                "email": "admin@localhost",
                "profile_picture_url": null
            }
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "/",
        "per_page": "100",
        "to": 2
    }
}
 

Request      

GET api/organisations/{organisation_id}/invitation

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 20

page   integer  optional    

the page number to show. Example: 1

Store

requires authentication

Create a new invitation for the organisation

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/invitation" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"organisation_type_id\": 6,
    \"email\": \"skonopelski@example.net\",
    \"auto_connect\": false
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/invitation"
);

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

let body = {
    "organisation_type_id": 6,
    "email": "skonopelski@example.net",
    "auto_connect": false
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

POST api/organisations/{organisation_id}/invitation

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

organisation_type_id   integer     

The id of an existing record in the organisation_types table. Example: 6

email   string     

Must be a valid email address. Must not be greater than 254 characters. Example: skonopelski@example.net

auto_connect   boolean  optional    

Example: false

Registration

Register

requires authentication

Register a new organisation.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/registration/register/1?email=qwuckert%40example.com&user_id=26192174&user_is_registered=" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "user_first_name=wtnqelbxtqcokrineybe"\
    --form "user_last_name=o"\
    --form "user_password=gaij"\
    --form "user_password_confirmation=est"\
    --form "user_phone=hooelgofbaddru"\
    --form "user_locale=fo_FO"\
    --form "user_location=ikrzyiizsygopkwftsbuagkwg"\
    --form "name=uoasqouvyyameuiaedaegm"\
    --form "legal_name=ajdyxvnullemxump"\
    --form "address_1=incidunt"\
    --form "city=pjtjz"\
    --form "state=oubwlmzhmuufzntkkbyn"\
    --form "location=ZA"\
    --form "zip=o"\
    --form "phone=pjbrrbzafmfcb"\
    --form "email=brandi96@example.org"\
    --form "contact_first_name=amet"\
    --form "contact_last_name=in"\
    --form "website=awoumhqzg"\
    --form "conformance_level_products[][id]=6"\
    --form "conformance_level_products[][count]=11"\
    --form "tas_document_id=similique"\
    --form "tas_accepted=1"\
    --form "industry_ids[][id]=2"\
    --form "industry_ids[][value]=moygjoemxqkvmfupfelekmb"\
    --form "safety_data_sheet=@/tmp/phpiiepIL" 
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/registration/register/1"
);

const params = {
    "email": "qwuckert@example.com",
    "user_id": "26192174",
    "user_is_registered": "0",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('user_first_name', 'wtnqelbxtqcokrineybe');
body.append('user_last_name', 'o');
body.append('user_password', 'gaij');
body.append('user_password_confirmation', 'est');
body.append('user_phone', 'hooelgofbaddru');
body.append('user_locale', 'fo_FO');
body.append('user_location', 'ikrzyiizsygopkwftsbuagkwg');
body.append('name', 'uoasqouvyyameuiaedaegm');
body.append('legal_name', 'ajdyxvnullemxump');
body.append('address_1', 'incidunt');
body.append('city', 'pjtjz');
body.append('state', 'oubwlmzhmuufzntkkbyn');
body.append('location', 'ZA');
body.append('zip', 'o');
body.append('phone', 'pjbrrbzafmfcb');
body.append('email', 'brandi96@example.org');
body.append('contact_first_name', 'amet');
body.append('contact_last_name', 'in');
body.append('website', 'awoumhqzg');
body.append('conformance_level_products[][id]', '6');
body.append('conformance_level_products[][count]', '11');
body.append('tas_document_id', 'similique');
body.append('tas_accepted', '1');
body.append('industry_ids[][id]', '2');
body.append('industry_ids[][value]', 'moygjoemxqkvmfupfelekmb');
body.append('safety_data_sheet', document.querySelector('input[name="safety_data_sheet"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Example response (200, Success):


{
    "message": "registered successfully",
    "organisationID": "[id]",
    "registrationID": "[uuid]"
}
 

Example response (422, Validation Error):


{
    "message": "[error message from the first field failing validation]",
    "errors": {
        "[field_name]": [
            "[any validator message failing]"
        ]
    }
}
 

Request      

POST api/organisations/registration/register/{invitation_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

invitation_id   integer     

The ID of the invitation. Example: 1

Query Parameters

email   string     

required Example: qwuckert@example.com

user_id   number     

required Example: 26192174

user_is_registered   boolean     

required Example: false

Body Parameters

user_first_name   string     

(Only required for unregistered users). Must be at least 2 characters. Must not be greater than 50 characters. Example: wtnqelbxtqcokrineybe

user_last_name   string     

(Only required for unregistered users). Must be at least 2 characters. Must not be greater than 50 characters. Example: o

user_password   string     

(Only required for unregistered users). Must not be greater than 255 characters. Example: gaij

user_password_confirmation   string     

(Only required for unregistered users). The value and user_password must match. Example: est

user_phone   string  optional    

(Only required for unregistered users). Must be at least 8 characters. Must not be greater than 20 characters. Example: hooelgofbaddru

user_locale   string  optional    

(Only required for unregistered users). Must not be greater than 12 characters. Example: fo_FO

user_location   string  optional    

(Only required for unregistered users). Must not be greater than 255 characters. Example: ikrzyiizsygopkwftsbuagkwg

name   string     

Must not be greater than 255 characters. Example: uoasqouvyyameuiaedaegm

legal_name   string     

Must not be greater than 255 characters. Example: ajdyxvnullemxump

address_1   string     

Example: incidunt

address_2   string  optional    
city   string     

Must not be greater than 255 characters. Example: pjtjz

state   string     

Must not be greater than 255 characters. Example: oubwlmzhmuufzntkkbyn

location   string     

Example: ZA

Must be one of:
  • AF
  • AX
  • AL
  • DZ
  • AS
  • AD
  • AO
  • AI
  • AQ
  • AG
  • AR
  • AM
  • AW
  • AU
  • AT
  • AZ
  • BS
  • BH
  • BD
  • BB
  • BY
  • BE
  • BZ
  • BJ
  • BM
  • BT
  • BO
  • BA
  • BW
  • BV
  • BR
  • IO
  • VG
  • BN
  • BG
  • BF
  • BI
  • KH
  • CM
  • CA
  • CV
  • BQ
  • KY
  • CF
  • TD
  • CL
  • CN
  • CX
  • CC
  • CO
  • KM
  • CG
  • CD
  • CK
  • CR
  • CI
  • HR
  • CU
  • CW
  • CY
  • CZ
  • DK
  • DJ
  • DM
  • DO
  • EC
  • EG
  • SV
  • GQ
  • ER
  • EE
  • SZ
  • ET
  • FK
  • FO
  • FJ
  • FI
  • FR
  • GF
  • PF
  • TF
  • GA
  • GM
  • GE
  • DE
  • GH
  • GI
  • GR
  • GL
  • GD
  • GP
  • GU
  • GT
  • GG
  • GN
  • GW
  • GY
  • HT
  • HM
  • HN
  • HK
  • HU
  • IS
  • IN
  • ID
  • IR
  • IQ
  • IE
  • IM
  • IL
  • IT
  • JM
  • JP
  • JE
  • JO
  • KZ
  • KE
  • KI
  • KW
  • KG
  • LA
  • LV
  • LB
  • LS
  • LR
  • LY
  • LI
  • LT
  • LU
  • MO
  • MG
  • MW
  • MY
  • MV
  • ML
  • MT
  • MH
  • MQ
  • MR
  • MU
  • YT
  • MX
  • FM
  • MD
  • MC
  • MN
  • ME
  • MS
  • MA
  • MZ
  • MM
  • NA
  • NR
  • NP
  • NL
  • NC
  • NZ
  • NI
  • NE
  • NG
  • NU
  • NF
  • KP
  • MK
  • MP
  • NO
  • OM
  • PK
  • PW
  • PS
  • PA
  • PG
  • PY
  • PE
  • PH
  • PN
  • PL
  • PT
  • PR
  • QA
  • RE
  • RO
  • RU
  • RW
  • WS
  • SM
  • ST
  • SA
  • SN
  • RS
  • SC
  • SL
  • SG
  • SX
  • SK
  • SI
  • SB
  • SO
  • ZA
  • GS
  • KR
  • SS
  • ES
  • LK
  • BL
  • SH
  • KN
  • LC
  • MF
  • PM
  • VC
  • SD
  • SR
  • SJ
  • SE
  • CH
  • SY
  • TW
  • TJ
  • TZ
  • TH
  • TL
  • TG
  • TK
  • TO
  • TT
  • TN
  • TR
  • TM
  • TC
  • TV
  • UM
  • VI
  • UG
  • UA
  • AE
  • GB
  • US
  • UY
  • UZ
  • VU
  • VA
  • VE
  • VN
  • WF
  • EH
  • YE
  • ZM
  • ZW
zip   string     

Must not be greater than 64 characters. Example: o

phone   string  optional    

Must be at least 8 characters. Must not be greater than 20 characters. Example: pjbrrbzafmfcb

email   string     

Must be a valid email address. Must not be greater than 255 characters. Example: brandi96@example.org

contact_first_name   string     

Example: amet

contact_last_name   string     

Example: in

website   string     

Must not be greater than 255 characters. Example: awoumhqzg

industry_ids   object[]  optional    
id   integer  optional    

This field is required when industry_ids.*.value is present. The id of an existing record in the industry_identifiers table. Example: 2

value   string  optional    

This field is required when industry_ids.*.id is present. Must not be greater than 255 characters. Example: moygjoemxqkvmfupfelekmb

safety_data_sheet   file     

Must be a file. Example: /tmp/phpiiepIL

conformance_level_products   object[]     
id   integer  optional    

This field is required when conformance_level_products.*.count is present. The id of an existing record in the conformance_levels table. Example: 6

count   integer  optional    

This field is required when conformance_level_products.*.id is present. Must be at least 0. Example: 11

tas_document_id   string     

The id of an existing record in the App\Models\TermsAndServiceDocument table. Example: similique

tas_accepted   boolean     

Must be accepted. Example: true

Status

See a non-active organisation's registration status.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/registration/a5361e60-8447-3494-aa0f-62d06c506a28/status" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/registration/a5361e60-8447-3494-aa0f-62d06c506a28/status"
);

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


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1,
        "maxio_customer_id": 268249,
        "reference_id": "01-J4CGS34JUJV-Q",
        "pdc_id": null,
        "gateway_aid": "A356IB10",
        "uuid": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
        "type_id": 2,
        "status": "approved",
        "name": "Ping Yang Pengye Shoes Com Ltd",
        "legal_name": "Ping Yang Pengye Shoes Com Ltd",
        "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
        "address_2": null,
        "city": "Wenzhou",
        "state": "Zhejiang",
        "location": "CN",
        "zip": "",
        "phone": "",
        "email": "pengye@126.com",
        "contact_first_name": "JIAN",
        "contact_last_name": "Le",
        "website": null,
        "avatar_url": null,
        "applicant_comment": null,
        "reviewer_comment": null,
        "registration_mail_sent_at": null,
        "created_at": "2021-11-04T12:19:55.000000Z",
        "updated_at": "2026-05-12T14:45:25.000000Z",
        "reviewer_comment_category": null,
        "profile_reviewed_at": null,
        "profile_reviewed_by_user_id": null,
        "location_name": "China",
        "type": {
            "id": 2,
            "name": "Supplier",
            "display_name": "Supplier",
            "description": null,
            "selectable": 1,
            "created_at": "2026-05-08T21:42:16.000000Z",
            "updated_at": "2026-05-21T16:14:29.000000Z"
        },
        "industry_identifiers": [],
        "conformance_level_products": [],
        "field_comments": null
    }
}
 

Request      

GET api/organisations/registration/{organisation_uuid}/status

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_uuid   string     

Example: a5361e60-8447-3494-aa0f-62d06c506a28

Update

Update the organisations data from the user side.

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/registration/52b57d4c-5f72-3114-a000-aef3fd55e35b/update" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "name=kihup"\
    --form "legal_name=gyv"\
    --form "address_1=occaecati"\
    --form "city=x"\
    --form "state=bm"\
    --form "location=MN"\
    --form "zip=hndjiaeppjteqjjwrxff"\
    --form "phone=+1234567890"\
    --form "email=stefanie05@example.net"\
    --form "contact_first_name=qui"\
    --form "contact_last_name=et"\
    --form "website=https://example.com"\
    --form "conformance_level_products[][id]=17"\
    --form "conformance_level_products[][count]=0"\
    --form "applicant_comment=temporibus"\
    --form "industry_ids[][id]=7"\
    --form "industry_ids[][value]=kmrouuge"\
    --form "safety_data_sheet=@/tmp/phpfdHLoL" 
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/registration/52b57d4c-5f72-3114-a000-aef3fd55e35b/update"
);

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

const body = new FormData();
body.append('name', 'kihup');
body.append('legal_name', 'gyv');
body.append('address_1', 'occaecati');
body.append('city', 'x');
body.append('state', 'bm');
body.append('location', 'MN');
body.append('zip', 'hndjiaeppjteqjjwrxff');
body.append('phone', '+1234567890');
body.append('email', 'stefanie05@example.net');
body.append('contact_first_name', 'qui');
body.append('contact_last_name', 'et');
body.append('website', 'https://example.com');
body.append('conformance_level_products[][id]', '17');
body.append('conformance_level_products[][count]', '0');
body.append('applicant_comment', 'temporibus');
body.append('industry_ids[][id]', '7');
body.append('industry_ids[][value]', 'kmrouuge');
body.append('safety_data_sheet', document.querySelector('input[name="safety_data_sheet"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Example response (200, Success):


{
    "message": "updated successfully"
}
 

Example response (422, Validation Error):


{
    "message": "[error message from the first field failing validation]",
    "errors": {
        "[field_name]": [
            "[any validator message failing]"
        ]
    }
}
 

Request      

PUT api/organisations/registration/{organisation_uuid}/update

PATCH api/organisations/registration/{organisation_uuid}/update

Headers

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

organisation_uuid   string     

Example: 52b57d4c-5f72-3114-a000-aef3fd55e35b

Body Parameters

name   string     

Must not be greater than 255 characters. Example: kihup

legal_name   string     

Must not be greater than 255 characters. Example: gyv

address_1   string     

Example: occaecati

address_2   string  optional    
city   string     

Must not be greater than 255 characters. Example: x

state   string     

Must not be greater than 255 characters. Example: bm

location   string     

Example: MN

Must be one of:
  • AF
  • AX
  • AL
  • DZ
  • AS
  • AD
  • AO
  • AI
  • AQ
  • AG
  • AR
  • AM
  • AW
  • AU
  • AT
  • AZ
  • BS
  • BH
  • BD
  • BB
  • BY
  • BE
  • BZ
  • BJ
  • BM
  • BT
  • BO
  • BA
  • BW
  • BV
  • BR
  • IO
  • VG
  • BN
  • BG
  • BF
  • BI
  • KH
  • CM
  • CA
  • CV
  • BQ
  • KY
  • CF
  • TD
  • CL
  • CN
  • CX
  • CC
  • CO
  • KM
  • CG
  • CD
  • CK
  • CR
  • CI
  • HR
  • CU
  • CW
  • CY
  • CZ
  • DK
  • DJ
  • DM
  • DO
  • EC
  • EG
  • SV
  • GQ
  • ER
  • EE
  • SZ
  • ET
  • FK
  • FO
  • FJ
  • FI
  • FR
  • GF
  • PF
  • TF
  • GA
  • GM
  • GE
  • DE
  • GH
  • GI
  • GR
  • GL
  • GD
  • GP
  • GU
  • GT
  • GG
  • GN
  • GW
  • GY
  • HT
  • HM
  • HN
  • HK
  • HU
  • IS
  • IN
  • ID
  • IR
  • IQ
  • IE
  • IM
  • IL
  • IT
  • JM
  • JP
  • JE
  • JO
  • KZ
  • KE
  • KI
  • KW
  • KG
  • LA
  • LV
  • LB
  • LS
  • LR
  • LY
  • LI
  • LT
  • LU
  • MO
  • MG
  • MW
  • MY
  • MV
  • ML
  • MT
  • MH
  • MQ
  • MR
  • MU
  • YT
  • MX
  • FM
  • MD
  • MC
  • MN
  • ME
  • MS
  • MA
  • MZ
  • MM
  • NA
  • NR
  • NP
  • NL
  • NC
  • NZ
  • NI
  • NE
  • NG
  • NU
  • NF
  • KP
  • MK
  • MP
  • NO
  • OM
  • PK
  • PW
  • PS
  • PA
  • PG
  • PY
  • PE
  • PH
  • PN
  • PL
  • PT
  • PR
  • QA
  • RE
  • RO
  • RU
  • RW
  • WS
  • SM
  • ST
  • SA
  • SN
  • RS
  • SC
  • SL
  • SG
  • SX
  • SK
  • SI
  • SB
  • SO
  • ZA
  • GS
  • KR
  • SS
  • ES
  • LK
  • BL
  • SH
  • KN
  • LC
  • MF
  • PM
  • VC
  • SD
  • SR
  • SJ
  • SE
  • CH
  • SY
  • TW
  • TJ
  • TZ
  • TH
  • TL
  • TG
  • TK
  • TO
  • TT
  • TN
  • TR
  • TM
  • TC
  • TV
  • UM
  • VI
  • UG
  • UA
  • AE
  • GB
  • US
  • UY
  • UZ
  • VU
  • VA
  • VE
  • VN
  • WF
  • EH
  • YE
  • ZM
  • ZW
zip   string     

Must not be greater than 64 characters. Example: hndjiaeppjteqjjwrxff

phone   string  optional    

Must be at least 8 characters. Must not be greater than 20 characters. Example: +1234567890

email   string     

Must be a valid email address. Must not be greater than 255 characters. Example: stefanie05@example.net

contact_first_name   string     

Example: qui

contact_last_name   string     

Example: et

website   string     

[MANDATORY ONLY FOR: Vendors & Chemical Formulators] The website of the organisation. Must not be greater than 255 characters. Example: https://example.com

industry_ids   object[]  optional    

[ONLY: Suppliers & Vendors] The industry identifiers associated with the organisation.

id   integer  optional    

This field is required when industry_ids.*.value is present. The id of an existing record in the industry_identifiers table. Example: 7

value   string  optional    

This field is required when industry_ids.*.id is present. Must not be greater than 255 characters. Example: kmrouuge

safety_data_sheet   file     

[ONLY: Chemical Formulators] Safety data sheet provided as a file upload. Must be a file. Example: /tmp/phpfdHLoL

conformance_level_products   object[]     
id   integer  optional    

This field is required when conformance_level_products.*.count is present. The id of an existing record in the conformance_levels table. Example: 17

count   integer  optional    

This field is required when conformance_level_products.*.id is present. Must be at least 0. Example: 0

applicant_comment   string  optional    

Example: temporibus

Subscriptions

Index

requires authentication

Get Subscriptions

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/subscriptions?per_page=19&page=1&filter%5Bsubscribable_product_id%5D=13&filter%5Bstatus%5D=aut&filter%5Binvoice_created_at%5D=illo&filter%5Bstart_at%5D=optio&filter%5Bvalid_until%5D=deserunt&filter%5Bcreated_at%5D=aut&filter%5Bupdated_at%5D=iure&search=in&sort=id&column=id" \
    --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/organisations/1/subscriptions"
);

const params = {
    "per_page": "19",
    "page": "1",
    "filter[subscribable_product_id]": "13",
    "filter[status]": "aut",
    "filter[invoice_created_at]": "illo",
    "filter[start_at]": "optio",
    "filter[valid_until]": "deserunt",
    "filter[created_at]": "aut",
    "filter[updated_at]": "iure",
    "search": "in",
    "sort": "id",
    "column": "id",
};
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": 1505,
            "organisation_id": 21,
            "subscribable_product_id": 32,
            "status": "active",
            "auto_renew": true,
            "selected_stairstep": {
                "name": "Product Tiers",
                "handle": "public_product_tiers",
                "component_id": 16288,
                "price_point_id": 56144,
                "allocated_quantity": "0.0"
            },
            "maxio_subscription_id": 374452,
            "expired_at": null,
            "created_at": "2026-05-12T08:06:44.000000Z",
            "updated_at": "2026-05-21T00:16:12.000000Z",
            "deleted_at": null,
            "subscribable_product": {
                "id": 32,
                "subcribable_product_family_handle": "bulling-plans",
                "subcribable_product_family_id": 2942,
                "name": "Chemical Formulators Yearly",
                "handle": "chemical-formulator-yearly",
                "maxio_product_id": 5684,
                "created_at": "2026-05-12T08:06:30.000000Z",
                "updated_at": "2026-05-12T08:06:30.000000Z",
                "deleted_at": null
            },
            "current_period": {
                "id": 16,
                "organisation_product_subscription_id": 1505,
                "starts_at": "2026-05-05T13:47:05.000000Z",
                "ends_at": "2027-05-05T13:47:05.000000Z",
                "role": "signup",
                "maxio_invoice_uid": "inv_c5hw3pwtm8rzc",
                "maxio_payment_id": "6374764",
                "payment_status": "paid",
                "invoice_created_at": "2026-05-05T13:47:05.000000Z",
                "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                "invoice_due_date_at": "2026-05-05T00:00:00.000000Z",
                "created_at": "2026-05-12T08:06:44.000000Z",
                "updated_at": "2026-05-12T08:06:44.000000Z"
            },
            "periods": [
                {
                    "id": 15,
                    "organisation_product_subscription_id": 1505,
                    "starts_at": "2027-05-05T13:47:05.000000Z",
                    "ends_at": "2028-05-05T13:47:05.000000Z",
                    "role": "renewal",
                    "maxio_invoice_uid": "inv_c5hwh2zwhpn5c",
                    "maxio_payment_id": "6374811",
                    "payment_status": "paid",
                    "invoice_created_at": "2026-05-05T14:21:27.000000Z",
                    "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                    "invoice_due_date_at": "2027-05-05T00:00:00.000000Z",
                    "created_at": "2026-05-12T08:06:44.000000Z",
                    "updated_at": "2026-05-12T08:06:44.000000Z"
                },
                {
                    "id": 16,
                    "organisation_product_subscription_id": 1505,
                    "starts_at": "2026-05-05T13:47:05.000000Z",
                    "ends_at": "2027-05-05T13:47:05.000000Z",
                    "role": "signup",
                    "maxio_invoice_uid": "inv_c5hw3pwtm8rzc",
                    "maxio_payment_id": "6374764",
                    "payment_status": "paid",
                    "invoice_created_at": "2026-05-05T13:47:05.000000Z",
                    "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                    "invoice_due_date_at": "2026-05-05T00:00:00.000000Z",
                    "created_at": "2026-05-12T08:06:44.000000Z",
                    "updated_at": "2026-05-12T08:06:44.000000Z"
                }
            ],
            "invoices": [],
            "usage": {
                "publishing_chemical_products": {
                    "max": 0,
                    "used": 0,
                    "remaining": 0
                }
            }
        },
        {
            "id": 1505,
            "organisation_id": 21,
            "subscribable_product_id": 32,
            "status": "active",
            "auto_renew": true,
            "selected_stairstep": {
                "name": "Product Tiers",
                "handle": "public_product_tiers",
                "component_id": 16288,
                "price_point_id": 56144,
                "allocated_quantity": "0.0"
            },
            "maxio_subscription_id": 374452,
            "expired_at": null,
            "created_at": "2026-05-12T08:06:44.000000Z",
            "updated_at": "2026-05-21T00:16:12.000000Z",
            "deleted_at": null,
            "subscribable_product": {
                "id": 32,
                "subcribable_product_family_handle": "bulling-plans",
                "subcribable_product_family_id": 2942,
                "name": "Chemical Formulators Yearly",
                "handle": "chemical-formulator-yearly",
                "maxio_product_id": 5684,
                "created_at": "2026-05-12T08:06:30.000000Z",
                "updated_at": "2026-05-12T08:06:30.000000Z",
                "deleted_at": null
            },
            "current_period": {
                "id": 16,
                "organisation_product_subscription_id": 1505,
                "starts_at": "2026-05-05T13:47:05.000000Z",
                "ends_at": "2027-05-05T13:47:05.000000Z",
                "role": "signup",
                "maxio_invoice_uid": "inv_c5hw3pwtm8rzc",
                "maxio_payment_id": "6374764",
                "payment_status": "paid",
                "invoice_created_at": "2026-05-05T13:47:05.000000Z",
                "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                "invoice_due_date_at": "2026-05-05T00:00:00.000000Z",
                "created_at": "2026-05-12T08:06:44.000000Z",
                "updated_at": "2026-05-12T08:06:44.000000Z"
            },
            "periods": [
                {
                    "id": 15,
                    "organisation_product_subscription_id": 1505,
                    "starts_at": "2027-05-05T13:47:05.000000Z",
                    "ends_at": "2028-05-05T13:47:05.000000Z",
                    "role": "renewal",
                    "maxio_invoice_uid": "inv_c5hwh2zwhpn5c",
                    "maxio_payment_id": "6374811",
                    "payment_status": "paid",
                    "invoice_created_at": "2026-05-05T14:21:27.000000Z",
                    "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                    "invoice_due_date_at": "2027-05-05T00:00:00.000000Z",
                    "created_at": "2026-05-12T08:06:44.000000Z",
                    "updated_at": "2026-05-12T08:06:44.000000Z"
                },
                {
                    "id": 16,
                    "organisation_product_subscription_id": 1505,
                    "starts_at": "2026-05-05T13:47:05.000000Z",
                    "ends_at": "2027-05-05T13:47:05.000000Z",
                    "role": "signup",
                    "maxio_invoice_uid": "inv_c5hw3pwtm8rzc",
                    "maxio_payment_id": "6374764",
                    "payment_status": "paid",
                    "invoice_created_at": "2026-05-05T13:47:05.000000Z",
                    "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                    "invoice_due_date_at": "2026-05-05T00:00:00.000000Z",
                    "created_at": "2026-05-12T08:06:44.000000Z",
                    "updated_at": "2026-05-12T08:06:44.000000Z"
                }
            ],
            "invoices": [],
            "usage": {
                "publishing_chemical_products": {
                    "max": 0,
                    "used": 0,
                    "remaining": 0
                }
            }
        }
    ]
}
 

Request      

GET api/organisations/{organisation_id}/subscriptions

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 19

page   integer  optional    

the page number to show. Example: 1

filter[subscribable_product_id]   integer  optional    

Filter column subscribable_product_id by any accepted value. Filter by product ID (multiple selection allowed) Example: 13

filter[subscribable_products.handle]   string  optional    

Filter column subscribable_products.handle by any accepted value. Filter by product handle (multiple selection allowed) Example: illo

filter[status]   string  optional    

Filter column status by any accepted value. Filter by status (multiple selection allowed) Example: aut

filter[invoice_created_at]   datetime  optional    

Filter column invoice_created_at by any accepted value. Filter by invoice created date Example: illo

filter[start_at]   datetime  optional    

Filter column start_at by any accepted value. Filter by start date Example: optio

filter[valid_until]   datetime  optional    

Filter column valid_until by any accepted value. Filter by valid until date Example: deserunt

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. Filter by created date Example: aut

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. Filter by updated date Example: iure

search   string  optional    

Search in all of these columns: subscribable_product.name Example: in

sort   string  optional    

sort by any accepted column: id, subscribable_product.name, status, invoice_created_at, start_at, valid_until, created_at, updated_at. prefix a "-" before the column name to sort in descending order Example: id

column   string  optional    

get a distinct list of filterable values for any of the columns: id, subscribable_product.name, status, invoice_created_at, start_at, valid_until, created_at, updated_at. Example: id

Chargify.js security token

requires authentication

Returns a signed JWT for use as securityToken in Chargify.js client config. Call this when loading the Chargify.js form; pass the token to chargify.load({ securityToken: ... }). Uses organisation id as subject (sub) for per-account rate limiting in Maxio.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/subscriptions/chargify-security-token" \
    --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/organisations/1/subscriptions/chargify-security-token"
);

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": {
        "security_token": "eyJ0eXAiOiJKV1QiLCJhbGc..."
    }
}
 

Example response (429):


Too many requests (rate limit: 10/minute, 60/hour per organisation)
 

Example response (500):


Chargify.js keys not configured
 

Request      

GET api/organisations/{organisation_id}/subscriptions/chargify-security-token

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Show

requires authentication

Show a Subscription

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/subscriptions/1505" \
    --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/organisations/1/subscriptions/1505"
);

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": 1505,
        "organisation_id": 21,
        "subscribable_product_id": 32,
        "status": "active",
        "auto_renew": true,
        "selected_stairstep": {
            "name": "Product Tiers",
            "handle": "public_product_tiers",
            "component_id": 16288,
            "price_point_id": 56144,
            "allocated_quantity": "0.0"
        },
        "maxio_subscription_id": 374452,
        "expired_at": null,
        "created_at": "2026-05-12T08:06:44.000000Z",
        "updated_at": "2026-05-21T00:16:12.000000Z",
        "deleted_at": null,
        "current_period": {
            "id": 16,
            "organisation_product_subscription_id": 1505,
            "starts_at": "2026-05-05T13:47:05.000000Z",
            "ends_at": "2027-05-05T13:47:05.000000Z",
            "role": "signup",
            "maxio_invoice_uid": "inv_c5hw3pwtm8rzc",
            "maxio_payment_id": "6374764",
            "payment_status": "paid",
            "invoice_created_at": "2026-05-05T13:47:05.000000Z",
            "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
            "invoice_due_date_at": "2026-05-05T00:00:00.000000Z",
            "created_at": "2026-05-12T08:06:44.000000Z",
            "updated_at": "2026-05-12T08:06:44.000000Z"
        },
        "periods": [
            {
                "id": 15,
                "organisation_product_subscription_id": 1505,
                "starts_at": "2027-05-05T13:47:05.000000Z",
                "ends_at": "2028-05-05T13:47:05.000000Z",
                "role": "renewal",
                "maxio_invoice_uid": "inv_c5hwh2zwhpn5c",
                "maxio_payment_id": "6374811",
                "payment_status": "paid",
                "invoice_created_at": "2026-05-05T14:21:27.000000Z",
                "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                "invoice_due_date_at": "2027-05-05T00:00:00.000000Z",
                "created_at": "2026-05-12T08:06:44.000000Z",
                "updated_at": "2026-05-12T08:06:44.000000Z"
            },
            {
                "id": 16,
                "organisation_product_subscription_id": 1505,
                "starts_at": "2026-05-05T13:47:05.000000Z",
                "ends_at": "2027-05-05T13:47:05.000000Z",
                "role": "signup",
                "maxio_invoice_uid": "inv_c5hw3pwtm8rzc",
                "maxio_payment_id": "6374764",
                "payment_status": "paid",
                "invoice_created_at": "2026-05-05T13:47:05.000000Z",
                "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                "invoice_due_date_at": "2026-05-05T00:00:00.000000Z",
                "created_at": "2026-05-12T08:06:44.000000Z",
                "updated_at": "2026-05-12T08:06:44.000000Z"
            }
        ],
        "invoices": [],
        "usage": {
            "publishing_chemical_products": {
                "max": 0,
                "used": 0,
                "remaining": 0
            }
        }
    }
}
 

Example response (500):


Failed to load subscription invoices from Maxio
 

Request      

GET api/organisations/{organisation_id}/subscriptions/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the subscription. Example: 1505

Product details

requires authentication

Get product details including available components and prices for the given product handle. Used by the frontend to decide which components to show when creating a subscription.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/subscriptions/product-details/quidem" \
    --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/organisations/1/subscriptions/product-details/quidem"
);

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": {
        "product": {
            "name": null,
            "handle": null,
            "description": null,
            "accounting_code": null,
            "price_in_cents": null,
            "interval": null,
            "interval_unit": null,
            "trial_price_in_cents": null,
            "trial_interval": null,
            "trial_interval_unit": null,
            "expiration_interval": null,
            "expiration_interval_unit": null
        }
    }
}
 

Example response (404):


Product not found
 

Request      

GET api/organisations/{organisation_id}/subscriptions/product-details/{product_handle}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

product_handle   string     

Example: quidem

Coupon Validation

requires authentication

Validate coupons for a product

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/subscriptions/validate-coupons/similique" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"coupon\": \"ysndjhnqxryxgkkoss\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/subscriptions/validate-coupons/similique"
);

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

let body = {
    "coupon": "ysndjhnqxryxgkkoss"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "code": null,
        "description": null,
        "amount": null,
        "amount_in_cents": null,
        "percentage": null,
        "compounding_strategy": null,
        "start_date": null,
        "end_date": null,
        "recurring": null,
        "duration_period_count": null,
        "duration_interval": null,
        "duration_interval_unit": null,
        "stackable": null
    }
}
 

Example response (400):


Coupon invalid, expired or not found
 

Example response (404):


Product not found
 

Request      

POST api/organisations/{organisation_id}/subscriptions/validate-coupons/{product_handle}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

product_handle   string     

Example: similique

Body Parameters

coupon   string     

Must not be greater than 255 characters. Example: ysndjhnqxryxgkkoss

Create a new subscription

requires authentication

Create a new subscription for the organisation (existing Maxio customer). Runs a subscription preview first, if testing is enabled, returns the preview response. If testing is disabled, creates the subscription. Customer must send all required customer/payment/billing data. Tier/component amounts supported via components.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/subscriptions/harum" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_testing\": true,
    \"chargify_token\": \"vepvtfwcvo\",
    \"collection_method\": \"automatic\",
    \"payment_profile_id\": 6,
    \"payment_type\": \"credit_card\",
    \"first_name\": \"d\",
    \"last_name\": \"eqfrotpozqhkfono\",
    \"billing_first_name\": \"f\",
    \"billing_last_name\": \"zvrbsmpttygiuerniftmjbwoa\",
    \"email\": \"boyle.ivah@example.net\",
    \"locale\": \"cch_NG\",
    \"organization\": \"hdglqhvlih\",
    \"phone\": \"xiencdfcixmkuuvbycfunrxdz\",
    \"address\": \"d\",
    \"address_2\": \"nltgd\",
    \"city\": \"mdsmosashnc\",
    \"state\": \"riuepoeijzoz\",
    \"country\": \"tw\",
    \"zip\": \"udgnpsdkuzyglemb\",
    \"billing_address\": \"evsp\",
    \"billing_address_2\": \"sgihico\",
    \"billing_city\": \"frezkfxkr\",
    \"billing_state\": \"egpcjaq\",
    \"billing_country\": \"gj\",
    \"billing_zip\": \"w\",
    \"tax_id\": \"quasi\",
    \"coupon_codes\": [
        \"xftcis\"
    ],
    \"components\": [
        {
            \"component_id\": 17,
            \"allocated_quantity\": 7,
            \"quantity\": 68,
            \"price_point_id\": 80
        }
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/subscriptions/harum"
);

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

let body = {
    "is_testing": true,
    "chargify_token": "vepvtfwcvo",
    "collection_method": "automatic",
    "payment_profile_id": 6,
    "payment_type": "credit_card",
    "first_name": "d",
    "last_name": "eqfrotpozqhkfono",
    "billing_first_name": "f",
    "billing_last_name": "zvrbsmpttygiuerniftmjbwoa",
    "email": "boyle.ivah@example.net",
    "locale": "cch_NG",
    "organization": "hdglqhvlih",
    "phone": "xiencdfcixmkuuvbycfunrxdz",
    "address": "d",
    "address_2": "nltgd",
    "city": "mdsmosashnc",
    "state": "riuepoeijzoz",
    "country": "tw",
    "zip": "udgnpsdkuzyglemb",
    "billing_address": "evsp",
    "billing_address_2": "sgihico",
    "billing_city": "frezkfxkr",
    "billing_state": "egpcjaq",
    "billing_country": "gj",
    "billing_zip": "w",
    "tax_id": "quasi",
    "coupon_codes": [
        "xftcis"
    ],
    "components": [
        {
            "component_id": 17,
            "allocated_quantity": 7,
            "quantity": 68,
            "price_point_id": 80
        }
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1505,
        "organisation_id": 21,
        "subscribable_product_id": 32,
        "status": "active",
        "auto_renew": true,
        "selected_stairstep": {
            "name": "Product Tiers",
            "handle": "public_product_tiers",
            "component_id": 16288,
            "price_point_id": 56144,
            "allocated_quantity": "0.0"
        },
        "maxio_subscription_id": 374452,
        "expired_at": null,
        "created_at": "2026-05-12T08:06:44.000000Z",
        "updated_at": "2026-05-21T00:16:12.000000Z",
        "deleted_at": null,
        "current_period": {
            "id": 16,
            "organisation_product_subscription_id": 1505,
            "starts_at": "2026-05-05T13:47:05.000000Z",
            "ends_at": "2027-05-05T13:47:05.000000Z",
            "role": "signup",
            "maxio_invoice_uid": "inv_c5hw3pwtm8rzc",
            "maxio_payment_id": "6374764",
            "payment_status": "paid",
            "invoice_created_at": "2026-05-05T13:47:05.000000Z",
            "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
            "invoice_due_date_at": "2026-05-05T00:00:00.000000Z",
            "created_at": "2026-05-12T08:06:44.000000Z",
            "updated_at": "2026-05-12T08:06:44.000000Z"
        },
        "periods": [
            {
                "id": 15,
                "organisation_product_subscription_id": 1505,
                "starts_at": "2027-05-05T13:47:05.000000Z",
                "ends_at": "2028-05-05T13:47:05.000000Z",
                "role": "renewal",
                "maxio_invoice_uid": "inv_c5hwh2zwhpn5c",
                "maxio_payment_id": "6374811",
                "payment_status": "paid",
                "invoice_created_at": "2026-05-05T14:21:27.000000Z",
                "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                "invoice_due_date_at": "2027-05-05T00:00:00.000000Z",
                "created_at": "2026-05-12T08:06:44.000000Z",
                "updated_at": "2026-05-12T08:06:44.000000Z"
            },
            {
                "id": 16,
                "organisation_product_subscription_id": 1505,
                "starts_at": "2026-05-05T13:47:05.000000Z",
                "ends_at": "2027-05-05T13:47:05.000000Z",
                "role": "signup",
                "maxio_invoice_uid": "inv_c5hw3pwtm8rzc",
                "maxio_payment_id": "6374764",
                "payment_status": "paid",
                "invoice_created_at": "2026-05-05T13:47:05.000000Z",
                "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                "invoice_due_date_at": "2026-05-05T00:00:00.000000Z",
                "created_at": "2026-05-12T08:06:44.000000Z",
                "updated_at": "2026-05-12T08:06:44.000000Z"
            }
        ],
        "invoices": [],
        "usage": {
            "publishing_chemical_products": {
                "max": 0,
                "used": 0,
                "remaining": 0
            }
        }
    }
}
 

Example response (400):


Organisation has no Maxio customer ID
 

Example response (500):


Maxio preview or create failed
 

Request      

POST api/organisations/{organisation_id}/subscriptions/{product_handle}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

product_handle   string     

Example: harum

Body Parameters

is_testing   boolean     

Should be used to validate the subscription payload and for price precalculation. Example: true

chargify_token   string  optional    

The chargify token for the subscription generated with chargify.js. Must not be greater than 255 characters. Example: vepvtfwcvo

collection_method   string     

The collection method for the subscription. Can be "automatic" or "remittance" => invoice based. If remittance is used, the subscription has to be paied within 60 days and no further payment details needed. Example: automatic

Must be one of:
  • automatic
  • remittance
payment_profile_id   integer  optional    

Must be at least 1. Example: 6

payment_type   string     

Example: credit_card

Must be one of:
  • credit_card
  • bank_transfer
first_name   string     

Must not be greater than 255 characters. Example: d

last_name   string     

Must not be greater than 255 characters. Example: eqfrotpozqhkfono

billing_first_name   string     

Must not be greater than 255 characters. Example: f

billing_last_name   string     

Must not be greater than 255 characters. Example: zvrbsmpttygiuerniftmjbwoa

email   string     

Must be a valid email address. Must not be greater than 255 characters. Example: boyle.ivah@example.net

locale   string  optional    

Must not be greater than 10 characters. Example: cch_NG

organization   string     

Must not be greater than 255 characters. Example: hdglqhvlih

phone   string     

Must not be greater than 255 characters. Example: xiencdfcixmkuuvbycfunrxdz

address   string     

Must not be greater than 255 characters. Example: d

address_2   string  optional    

Must not be greater than 255 characters. Example: nltgd

city   string     

Must not be greater than 255 characters. Example: mdsmosashnc

state   string     

Must not be greater than 255 characters. Example: riuepoeijzoz

country   string     

The country of the organisation. Must be a valid ISO 3166-1 alpha-2 code. Must be 2 characters. Example: tw

zip   string     

Must not be greater than 255 characters. Example: udgnpsdkuzyglemb

billing_address   string     

Must not be greater than 255 characters. Example: evsp

billing_address_2   string  optional    

Must not be greater than 255 characters. Example: sgihico

billing_city   string     

Must not be greater than 255 characters. Example: frezkfxkr

billing_state   string     

Must not be greater than 255 characters. Example: egpcjaq

billing_country   string     

The country of the billing address. Must be a valid ISO 3166-1 alpha-2 code. Must be 2 characters. Example: gj

billing_zip   string     

Must not be greater than 255 characters. Example: w

tax_id   string  optional    

Optional VAT or tax registration number. Sent to Maxio as vat_number for tax calculation. Do not include the ISO 3166-1 alpha-2 country prefix (e.g. use "123456789" for a German number, not "DE123456789"). When provided: 2–50 characters, must start with a letter or digit, and may contain only letters, digits, dots (.), and hyphens (-). Example: quasi

components   object[]  optional    
component_id   integer     

Example: 17

allocated_quantity   number     

Must be at least 0. Example: 7

quantity   integer  optional    

Must be at least 0. Example: 68

price_point_id   integer     

Must be at least 1. Example: 80

coupon_codes   string[]     

Must not be greater than 255 characters.

Update a subscription (stairstep upgrade only)

requires authentication

Preview or apply a prorated stairstep component upgrade. Only upgrades are allowed; downgrades are rejected. The upgrade charge is prorated for the remaining period and does not extend the subscription end date.

Send is_testing=true to get a preview (allocation_preview with total_in_cents etc.). Send is_testing=false to apply.

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/subscriptions/1505" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_testing\": true,
    \"chargify_token\": \"wanwdkhqvbwgssehxbw\",
    \"collection_method\": \"automatic\",
    \"payment_profile_id\": 34,
    \"payment_type\": \"credit_card\",
    \"first_name\": \"ibbta\",
    \"last_name\": \"xfgcupotnaskp\",
    \"billing_first_name\": \"htbkrhogqouoxmvtrj\",
    \"billing_last_name\": \"bypdnpugpvvockqigtq\",
    \"email\": \"andre.rolfson@example.com\",
    \"locale\": \"ti_ER\",
    \"organization\": \"anchb\",
    \"phone\": \"dcguiudvwrtg\",
    \"address\": \"dcosynrpaqvieplplosmbr\",
    \"address_2\": \"lkbmphgconuwnxxgraun\",
    \"city\": \"ifqtnmbbvvbo\",
    \"state\": \"jgjoyf\",
    \"country\": \"hq\",
    \"zip\": \"rrkpifipgryvkoistqr\",
    \"billing_address\": \"fgejlsehnsaoz\",
    \"billing_address_2\": \"ggq\",
    \"billing_city\": \"egnqkstowpzc\",
    \"billing_state\": \"au\",
    \"billing_country\": \"dd\",
    \"billing_zip\": \"kulnbkm\",
    \"tax_id\": \"voluptatibus\",
    \"components\": [
        {
            \"component_id\": 84,
            \"allocated_quantity\": 44
        }
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/subscriptions/1505"
);

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

let body = {
    "is_testing": true,
    "chargify_token": "wanwdkhqvbwgssehxbw",
    "collection_method": "automatic",
    "payment_profile_id": 34,
    "payment_type": "credit_card",
    "first_name": "ibbta",
    "last_name": "xfgcupotnaskp",
    "billing_first_name": "htbkrhogqouoxmvtrj",
    "billing_last_name": "bypdnpugpvvockqigtq",
    "email": "andre.rolfson@example.com",
    "locale": "ti_ER",
    "organization": "anchb",
    "phone": "dcguiudvwrtg",
    "address": "dcosynrpaqvieplplosmbr",
    "address_2": "lkbmphgconuwnxxgraun",
    "city": "ifqtnmbbvvbo",
    "state": "jgjoyf",
    "country": "hq",
    "zip": "rrkpifipgryvkoistqr",
    "billing_address": "fgejlsehnsaoz",
    "billing_address_2": "ggq",
    "billing_city": "egnqkstowpzc",
    "billing_state": "au",
    "billing_country": "dd",
    "billing_zip": "kulnbkm",
    "tax_id": "voluptatibus",
    "components": [
        {
            "component_id": 84,
            "allocated_quantity": 44
        }
    ]
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1505,
        "organisation_id": 21,
        "subscribable_product_id": 32,
        "status": "active",
        "auto_renew": true,
        "selected_stairstep": {
            "name": "Product Tiers",
            "handle": "public_product_tiers",
            "component_id": 16288,
            "price_point_id": 56144,
            "allocated_quantity": "0.0"
        },
        "maxio_subscription_id": 374452,
        "expired_at": null,
        "created_at": "2026-05-12T08:06:44.000000Z",
        "updated_at": "2026-05-21T00:16:12.000000Z",
        "deleted_at": null,
        "current_period": {
            "id": 16,
            "organisation_product_subscription_id": 1505,
            "starts_at": "2026-05-05T13:47:05.000000Z",
            "ends_at": "2027-05-05T13:47:05.000000Z",
            "role": "signup",
            "maxio_invoice_uid": "inv_c5hw3pwtm8rzc",
            "maxio_payment_id": "6374764",
            "payment_status": "paid",
            "invoice_created_at": "2026-05-05T13:47:05.000000Z",
            "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
            "invoice_due_date_at": "2026-05-05T00:00:00.000000Z",
            "created_at": "2026-05-12T08:06:44.000000Z",
            "updated_at": "2026-05-12T08:06:44.000000Z"
        },
        "periods": [
            {
                "id": 15,
                "organisation_product_subscription_id": 1505,
                "starts_at": "2027-05-05T13:47:05.000000Z",
                "ends_at": "2028-05-05T13:47:05.000000Z",
                "role": "renewal",
                "maxio_invoice_uid": "inv_c5hwh2zwhpn5c",
                "maxio_payment_id": "6374811",
                "payment_status": "paid",
                "invoice_created_at": "2026-05-05T14:21:27.000000Z",
                "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                "invoice_due_date_at": "2027-05-05T00:00:00.000000Z",
                "created_at": "2026-05-12T08:06:44.000000Z",
                "updated_at": "2026-05-12T08:06:44.000000Z"
            },
            {
                "id": 16,
                "organisation_product_subscription_id": 1505,
                "starts_at": "2026-05-05T13:47:05.000000Z",
                "ends_at": "2027-05-05T13:47:05.000000Z",
                "role": "signup",
                "maxio_invoice_uid": "inv_c5hw3pwtm8rzc",
                "maxio_payment_id": "6374764",
                "payment_status": "paid",
                "invoice_created_at": "2026-05-05T13:47:05.000000Z",
                "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                "invoice_due_date_at": "2026-05-05T00:00:00.000000Z",
                "created_at": "2026-05-12T08:06:44.000000Z",
                "updated_at": "2026-05-12T08:06:44.000000Z"
            }
        ],
        "invoices": [],
        "usage": {
            "publishing_chemical_products": {
                "max": 0,
                "used": 0,
                "remaining": 0
            }
        }
    }
}
 

Example response (400):


Organisation has no Maxio customer ID
 

Example response (422):


Component is not a stairstep of this subscription's product; or only upgrades allowed (no downgrade)
 

Example response (500):


Maxio preview or allocation failed
 

Request      

PUT api/organisations/{organisation_id}/subscriptions/{id}

PATCH api/organisations/{organisation_id}/subscriptions/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the subscription. Example: 1505

Body Parameters

is_testing   boolean     

When true, returns a prorated upgrade preview without applying the change. When false, applies the stairstep upgrade (payment/customer data required). Example: true

chargify_token   string  optional    

Chargify.js token for the payment method. Required when applying with collection_method=automatic and no payment_profile_id is sent. Must not be greater than 255 characters. Example: wanwdkhqvbwgssehxbw

collection_method   string     

Collection method. Use "automatic" for immediate charge with payment details, "remittance" for invoice. Same as create. Example: automatic

Must be one of:
  • automatic
  • remittance
payment_profile_id   integer  optional    

Existing payment profile ID to use for the upgrade charge. Alternative to chargify_token when applying. Must be at least 1. Example: 34

payment_type   string     

Payment type: credit_card or bank_transfer. Same as create. Example: credit_card

Must be one of:
  • credit_card
  • bank_transfer
first_name   string     

Must not be greater than 255 characters. Example: ibbta

last_name   string     

Must not be greater than 255 characters. Example: xfgcupotnaskp

billing_first_name   string     

Must not be greater than 255 characters. Example: htbkrhogqouoxmvtrj

billing_last_name   string     

Must not be greater than 255 characters. Example: bypdnpugpvvockqigtq

email   string     

Must be a valid email address. Must not be greater than 255 characters. Example: andre.rolfson@example.com

locale   string  optional    

Locale (e.g. en, de). Optional, defaults to en. Must not be greater than 10 characters. Example: ti_ER

organization   string     

Must not be greater than 255 characters. Example: anchb

phone   string     

Must not be greater than 255 characters. Example: dcguiudvwrtg

address   string     

Must not be greater than 255 characters. Example: dcosynrpaqvieplplosmbr

address_2   string  optional    

Must not be greater than 255 characters. Example: lkbmphgconuwnxxgraun

city   string     

Must not be greater than 255 characters. Example: ifqtnmbbvvbo

state   string     

Must not be greater than 255 characters. Example: jgjoyf

country   string     

The country of the organisation. Must be a valid ISO 3166-1 alpha-2 code. Must be 2 characters. Example: hq

zip   string     

Must not be greater than 255 characters. Example: rrkpifipgryvkoistqr

billing_address   string     

Must not be greater than 255 characters. Example: fgejlsehnsaoz

billing_address_2   string  optional    

Must not be greater than 255 characters. Example: ggq

billing_city   string     

Must not be greater than 255 characters. Example: egnqkstowpzc

billing_state   string     

Must not be greater than 255 characters. Example: au

billing_country   string     

The country of the billing address. Must be a valid ISO 3166-1 alpha-2 code. Must be 2 characters. Example: dd

billing_zip   string     

Must not be greater than 255 characters. Example: kulnbkm

tax_id   string  optional    

Optional VAT or tax registration number. Sent to Maxio as vat_number for tax calculation. Do not include the ISO 3166-1 alpha-2 country prefix (e.g. use "123456789" for a German number, not "DE123456789"). When provided: 2–50 characters, must start with a letter or digit, and may contain only letters, digits, dots (.), and hyphens (-). Example: voluptatibus

components   object     

Exactly one component (stairstep) to upgrade. Only upgrades are allowed; downgrades are rejected. Must contain 1 items.

0   object  optional    
component_id   integer     

Must be at least 1. Example: 84

allocated_quantity   integer     

Must be at least 1. Example: 44

Renew subscription (billing / payment data only).

requires authentication

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/subscriptions/1505/renew" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"is_testing\": true,
    \"chargify_token\": \"jdoljrcm\",
    \"collection_method\": \"remittance\",
    \"payment_profile_id\": 82,
    \"payment_type\": \"bank_transfer\",
    \"first_name\": \"afzjfxvhqcmr\",
    \"last_name\": \"tzllddpm\",
    \"billing_first_name\": \"dgzpzveobtdyv\",
    \"billing_last_name\": \"ivrcyfh\",
    \"email\": \"neva.adams@example.com\",
    \"locale\": \"sr_BA\",
    \"organization\": \"stakc\",
    \"phone\": \"gmyjooofxpmxyxqomzyr\",
    \"address\": \"jiouwspbllwpmxuehgtuyyz\",
    \"address_2\": \"xdgndiaibqxecbiefea\",
    \"city\": \"lle\",
    \"state\": \"gzfipusqgaeybmcx\",
    \"country\": \"lw\",
    \"zip\": \"ieoqr\",
    \"billing_address\": \"vlckxzvlthqt\",
    \"billing_address_2\": \"pbkywmqcdoncrrrrynmjdimpj\",
    \"billing_city\": \"zqwdycndjmjwodxolgffjnaer\",
    \"billing_state\": \"zxpxmyhzb\",
    \"billing_country\": \"td\",
    \"billing_zip\": \"qvldyimycax\",
    \"tax_id\": \"sit\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/subscriptions/1505/renew"
);

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

let body = {
    "is_testing": true,
    "chargify_token": "jdoljrcm",
    "collection_method": "remittance",
    "payment_profile_id": 82,
    "payment_type": "bank_transfer",
    "first_name": "afzjfxvhqcmr",
    "last_name": "tzllddpm",
    "billing_first_name": "dgzpzveobtdyv",
    "billing_last_name": "ivrcyfh",
    "email": "neva.adams@example.com",
    "locale": "sr_BA",
    "organization": "stakc",
    "phone": "gmyjooofxpmxyxqomzyr",
    "address": "jiouwspbllwpmxuehgtuyyz",
    "address_2": "xdgndiaibqxecbiefea",
    "city": "lle",
    "state": "gzfipusqgaeybmcx",
    "country": "lw",
    "zip": "ieoqr",
    "billing_address": "vlckxzvlthqt",
    "billing_address_2": "pbkywmqcdoncrrrrynmjdimpj",
    "billing_city": "zqwdycndjmjwodxolgffjnaer",
    "billing_state": "zxpxmyhzb",
    "billing_country": "td",
    "billing_zip": "qvldyimycax",
    "tax_id": "sit"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 1505,
        "organisation_id": 21,
        "subscribable_product_id": 32,
        "status": "active",
        "auto_renew": true,
        "selected_stairstep": {
            "name": "Product Tiers",
            "handle": "public_product_tiers",
            "component_id": 16288,
            "price_point_id": 56144,
            "allocated_quantity": "0.0"
        },
        "maxio_subscription_id": 374452,
        "expired_at": null,
        "created_at": "2026-05-12T08:06:44.000000Z",
        "updated_at": "2026-05-21T00:16:12.000000Z",
        "deleted_at": null,
        "current_period": {
            "id": 16,
            "organisation_product_subscription_id": 1505,
            "starts_at": "2026-05-05T13:47:05.000000Z",
            "ends_at": "2027-05-05T13:47:05.000000Z",
            "role": "signup",
            "maxio_invoice_uid": "inv_c5hw3pwtm8rzc",
            "maxio_payment_id": "6374764",
            "payment_status": "paid",
            "invoice_created_at": "2026-05-05T13:47:05.000000Z",
            "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
            "invoice_due_date_at": "2026-05-05T00:00:00.000000Z",
            "created_at": "2026-05-12T08:06:44.000000Z",
            "updated_at": "2026-05-12T08:06:44.000000Z"
        },
        "periods": [
            {
                "id": 15,
                "organisation_product_subscription_id": 1505,
                "starts_at": "2027-05-05T13:47:05.000000Z",
                "ends_at": "2028-05-05T13:47:05.000000Z",
                "role": "renewal",
                "maxio_invoice_uid": "inv_c5hwh2zwhpn5c",
                "maxio_payment_id": "6374811",
                "payment_status": "paid",
                "invoice_created_at": "2026-05-05T14:21:27.000000Z",
                "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                "invoice_due_date_at": "2027-05-05T00:00:00.000000Z",
                "created_at": "2026-05-12T08:06:44.000000Z",
                "updated_at": "2026-05-12T08:06:44.000000Z"
            },
            {
                "id": 16,
                "organisation_product_subscription_id": 1505,
                "starts_at": "2026-05-05T13:47:05.000000Z",
                "ends_at": "2027-05-05T13:47:05.000000Z",
                "role": "signup",
                "maxio_invoice_uid": "inv_c5hw3pwtm8rzc",
                "maxio_payment_id": "6374764",
                "payment_status": "paid",
                "invoice_created_at": "2026-05-05T13:47:05.000000Z",
                "invoice_paid_at": "2026-05-05T00:00:00.000000Z",
                "invoice_due_date_at": "2026-05-05T00:00:00.000000Z",
                "created_at": "2026-05-12T08:06:44.000000Z",
                "updated_at": "2026-05-12T08:06:44.000000Z"
            }
        ],
        "invoices": [],
        "usage": {
            "publishing_chemical_products": {
                "max": 0,
                "used": 0,
                "remaining": 0
            }
        }
    }
}
 

Request      

POST api/organisations/{organisation_id}/subscriptions/{subscription_id}/renew

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

subscription_id   integer     

The ID of the subscription. Example: 1505

Body Parameters

is_testing   boolean     

When true, validates payload and returns renewal preview only. When false, applies renewal (clears delayed cancel in Maxio and re-syncs). Example: true

chargify_token   string  optional    

The chargify token generated with Chargify.js. Must not be greater than 255 characters. Example: jdoljrcm

collection_method   string     

The collection method. Can be "automatic" or "remittance" (invoice-based). Example: remittance

Must be one of:
  • automatic
  • remittance
payment_profile_id   integer  optional    

Must be at least 1. Example: 82

payment_type   string     

Example: bank_transfer

Must be one of:
  • credit_card
  • bank_transfer
first_name   string     

Must not be greater than 255 characters. Example: afzjfxvhqcmr

last_name   string     

Must not be greater than 255 characters. Example: tzllddpm

billing_first_name   string     

Must not be greater than 255 characters. Example: dgzpzveobtdyv

billing_last_name   string     

Must not be greater than 255 characters. Example: ivrcyfh

email   string     

Must be a valid email address. Must not be greater than 255 characters. Example: neva.adams@example.com

locale   string  optional    

Must not be greater than 10 characters. Example: sr_BA

organization   string     

Must not be greater than 255 characters. Example: stakc

phone   string     

Must not be greater than 255 characters. Example: gmyjooofxpmxyxqomzyr

address   string     

Must not be greater than 255 characters. Example: jiouwspbllwpmxuehgtuyyz

address_2   string  optional    

Must not be greater than 255 characters. Example: xdgndiaibqxecbiefea

city   string     

Must not be greater than 255 characters. Example: lle

state   string     

Must not be greater than 255 characters. Example: gzfipusqgaeybmcx

country   string     

Organisation country (ISO 3166-1 alpha-2). Must be 2 characters. Example: lw

zip   string     

Must not be greater than 255 characters. Example: ieoqr

billing_address   string     

Must not be greater than 255 characters. Example: vlckxzvlthqt

billing_address_2   string  optional    

Must not be greater than 255 characters. Example: pbkywmqcdoncrrrrynmjdimpj

billing_city   string     

Must not be greater than 255 characters. Example: zqwdycndjmjwodxolgffjnaer

billing_state   string     

Must not be greater than 255 characters. Example: zxpxmyhzb

billing_country   string     

Billing country (ISO 3166-1 alpha-2). Must be 2 characters. Example: td

billing_zip   string     

Must not be greater than 255 characters. Example: qvldyimycax

tax_id   string  optional    

Optional VAT or tax registration number. Sent to Maxio as vat_number for tax calculation. Do not include the ISO 3166-1 alpha-2 country prefix (e.g. use "123456789" for a German number, not "DE123456789"). When provided: 2–50 characters, must start with a letter or digit, and may contain only letters, digits, dots (.), and hyphens (-). Example: sit

Types

Index

Get a paginated list of organisation types. Calling this unauthenticated will only return selectable types.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation-types?per_page=20&sort=name&page=1&search=quis" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation-types"
);

const params = {
    "per_page": "20",
    "sort": "name",
    "page": "1",
    "search": "quis",
};
Object.keys(params)
    .forEach(key => url.searchParams.append(key, params[key]));

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


fetch(url, {
    method: "GET",
    headers,
}).then(response => response.json());

Example response (200):


{
    "data": [
        {
            "id": 1,
            "name": "ZDHC Internal",
            "display_name": "ZDHC Internal",
            "description": null,
            "selectable": 0,
            "created_at": "2026-05-08T21:42:16.000000Z",
            "updated_at": "2026-05-21T16:14:29.000000Z"
        },
        {
            "id": 1,
            "name": "ZDHC Internal",
            "display_name": "ZDHC Internal",
            "description": null,
            "selectable": 0,
            "created_at": "2026-05-08T21:42:16.000000Z",
            "updated_at": "2026-05-21T16:14:29.000000Z"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "/",
        "per_page": "50",
        "to": 2
    }
}
 

Request      

GET api/organisation-types

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 20

sort   string  optional    

sort by any accepted column: name, display_name, selectable, created_at, updated_at. prefix a "-" before the column name to sort in descending order Example: name

page   integer  optional    

the page number to show. Example: 1

search   string  optional    

Search in all of these columns: name Example: quis

Store

requires authentication

Create a new organisation type.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/organisation-types" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"trv\",
    \"display_name\": \"j\",
    \"description\": \"Quos amet odit reprehenderit modi voluptatum deleniti qui.\",
    \"selectable\": true
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/organisation-types"
);

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

let body = {
    "name": "trv",
    "display_name": "j",
    "description": "Quos amet odit reprehenderit modi voluptatum deleniti qui.",
    "selectable": true
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, success):


{
    "message": "Organisation type created successfully."
}
 

Example response (422, Validation Error):


{
    "message": "[error message from the first field failing validation]",
    "errors": {
        "[field_name]": [
            "[any validator message failing]"
        ]
    }
}
 

Request      

POST api/organisations/{organisation_id}/organisation-types

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: trv

display_name   string     

Must not be greater than 255 characters. Example: j

description   string  optional    

Must not be greater than 65535 characters. Example: Quos amet odit reprehenderit modi voluptatum deleniti qui.

selectable   boolean     

Example: true

Update

requires authentication

Update an organisation type.

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/organisation-types/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"name\": \"vfejkxhx\",
    \"display_name\": \"pqlykuxt\",
    \"description\": \"Et explicabo dolor sed voluptatem.\",
    \"selectable\": true
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/organisation-types/1"
);

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

let body = {
    "name": "vfejkxhx",
    "display_name": "pqlykuxt",
    "description": "Et explicabo dolor sed voluptatem.",
    "selectable": true
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, success):


{
    "message": "Organisation type updated successfully."
}
 

Example response (422, Validation Error):


{
    "message": "[error message from the first field failing validation]",
    "errors": {
        "[field_name]": [
            "[any validator message failing]"
        ]
    }
}
 

Request      

PUT api/organisations/{organisation_id}/organisation-types/{id}

PATCH api/organisations/{organisation_id}/organisation-types/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the organisation type. Example: 1

Body Parameters

name   string     

Must not be greater than 255 characters. Example: vfejkxhx

display_name   string     

Must not be greater than 255 characters. Example: pqlykuxt

description   string  optional    

Must not be greater than 65535 characters. Example: Et explicabo dolor sed voluptatem.

selectable   boolean     

Example: true

Destroy

requires authentication

Delete an organisation type.

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/organisation-types/1" \
    --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/organisations/1/organisation-types/1"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200, success):


{
    "message": "Organisation type deleted successfully."
}
 

Example response (422, Type in Use):


{
    "message": "Cannot delete organisation type as it is in use."
}
 

Request      

DELETE api/organisations/{organisation_id}/organisation-types/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the organisation type. Example: 1

Users

Index

requires authentication

Get users for an organisation.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/users?per_page=11&page=1" \
    --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/organisations/1/users"
);

const params = {
    "per_page": "11",
    "page": "1",
};
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,
            "organisation_id": 8990,
            "user_id": 5,
            "invited_by": null,
            "role_id": 4,
            "last_authorization": null,
            "invitation_sent_at": null,
            "invitation_accepted_at": "2026-05-08T21:42:00.000000Z",
            "created_at": "2026-05-08T21:42:00.000000Z",
            "updated_at": "2026-05-08T21:42:00.000000Z",
            "deleted_at": null,
            "user": {
                "id": 5,
                "first_name": "LAN",
                "last_name": "REN",
                "email": "renxiaolan@126.com",
                "email_verified_at": "2016-12-17T01:09:41.000000Z",
                "phone": "0086-575-856232",
                "location": "CN",
                "created_at": "2016-12-17T01:09:41.000000Z",
                "updated_at": "2016-12-17T01:09:41.000000Z",
                "deleted_at": null,
                "profile_picture_url": null
            },
            "role": {
                "id": 4,
                "parent_id": 3,
                "name": "ORGANISATION_ADMIN"
            }
        },
        {
            "id": 1,
            "organisation_id": 8990,
            "user_id": 5,
            "invited_by": null,
            "role_id": 4,
            "last_authorization": null,
            "invitation_sent_at": null,
            "invitation_accepted_at": "2026-05-08T21:42:00.000000Z",
            "created_at": "2026-05-08T21:42:00.000000Z",
            "updated_at": "2026-05-08T21:42:00.000000Z",
            "deleted_at": null,
            "user": {
                "id": 5,
                "first_name": "LAN",
                "last_name": "REN",
                "email": "renxiaolan@126.com",
                "email_verified_at": "2016-12-17T01:09:41.000000Z",
                "phone": "0086-575-856232",
                "location": "CN",
                "created_at": "2016-12-17T01:09:41.000000Z",
                "updated_at": "2016-12-17T01:09:41.000000Z",
                "deleted_at": null,
                "profile_picture_url": null
            },
            "role": {
                "id": 4,
                "parent_id": 3,
                "name": "ORGANISATION_ADMIN"
            }
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "/",
        "per_page": "100",
        "to": 2
    }
}
 

Request      

GET api/organisations/{organisation_id}/users

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 11

page   integer  optional    

the page number to show. Example: 1

Show

requires authentication

Show an organisation user

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/users/1/getOrganisationUser" \
    --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/organisations/1/users/1/getOrganisationUser"
);

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,
        "organisation_id": 8990,
        "user_id": 5,
        "invited_by": null,
        "role_id": 4,
        "last_authorization": null,
        "invitation_sent_at": null,
        "invitation_accepted_at": "2026-05-08T21:42:00.000000Z",
        "created_at": "2026-05-08T21:42:00.000000Z",
        "updated_at": "2026-05-08T21:42:00.000000Z",
        "deleted_at": null,
        "role": {
            "id": 4,
            "parent_id": 3,
            "name": "ORGANISATION_ADMIN"
        }
    }
}
 

Request      

GET api/organisations/{organisation_id}/users/{user_id}/getOrganisationUser

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

user_id   integer     

The ID of the user. Example: 1

Invite

requires authentication

Invite users to an organisation.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/invite" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"emails\": [
        \"dedric27@example.net\"
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/invite"
);

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

let body = {
    "emails": [
        "dedric27@example.net"
    ]
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

POST api/organisations/{organisation_id}/invite

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

emails   string[]     

Must be a valid email address.

Resend invitation

requires authentication

Notify a user that has already been invited again.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/users/1/resend-invitation" \
    --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/organisations/1/users/1/resend-invitation"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

POST api/organisations/{organisation_id}/users/{organisationUser_id}/resend-invitation

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

organisationUser_id   integer     

The ID of the organisationUser. Example: 1

Change role

requires authentication

Change the role of a user in an organisation.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/users/1/role/change" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"role_id\": 1
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/users/1/role/change"
);

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

let body = {
    "role_id": 1
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

POST api/organisations/{organisation_id}/users/{organisationUser_id}/role/change

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

organisationUser_id   integer     

The ID of the organisationUser. Example: 1

Body Parameters

role_id   integer     

The ID of the role to change the user to. Example: 1

Detach

requires authentication

Detach a user from an organisation.

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/users/1/detach" \
    --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/organisations/1/users/1/detach"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

DELETE api/organisations/{organisation_id}/users/{organisationUser_id}/detach

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

organisationUser_id   integer     

The ID of the organisationUser. Example: 1

Supplier Profile

Show

requires authentication

Get the supplier profile

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/supplier-profile/show" \
    --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/organisations/1/supplier-profile/show"
);

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,
        "organisation_id": 171159,
        "facility_type_id": 11,
        "discharge_volume": null,
        "discharge_points_count": null,
        "sludge_generation": 0,
        "created_at": "2026-05-12T14:04:42.000000Z",
        "updated_at": "2026-05-12T14:04:42.000000Z",
        "attributes": []
    }
}
 

Request      

GET api/organisations/{organisation_id}/supplier-profile/show

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Update

requires authentication

Update the supplier profile for the organisation

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/supplier-profile/update?facility_type_id=dolor&attributes[]=337&discharge_volume=21&discharge_points_count=3&sludge_generation=1" \
    --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/organisations/1/supplier-profile/update"
);

const params = {
    "facility_type_id": "dolor",
    "attributes[0]": "337",
    "discharge_volume": "21",
    "discharge_points_count": "3",
    "sludge_generation": "1",
};
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: "PUT",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

PUT api/organisations/{organisation_id}/supplier-profile/update

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

facility_type_id   string     

The id of an existing record in the supplier_facility_types table. Example: dolor

attributes   string[]  optional    
Must be one of:
  • 1
  • 18
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 114
  • 115
  • 116
  • 117
  • 118
  • 119
  • 120
  • 121
  • 122
  • 123
  • 124
  • 125
  • 126
  • 127
  • 128
  • 129
  • 177
  • 178
  • 179
  • 180
  • 181
  • 182
  • 183
  • 184
  • 185
  • 186
  • 187
  • 188
  • 189
  • 190
  • 191
  • 192
  • 193
  • 194
  • 195
  • 196
  • 197
  • 198
  • 199
  • 200
  • 201
  • 202
  • 203
  • 204
  • 205
  • 206
  • 207
  • 208
  • 209
  • 210
  • 211
  • 212
  • 213
  • 214
  • 215
  • 216
  • 217
  • 218
  • 219
  • 220
  • 221
  • 222
  • 239
  • 301
  • 302
  • 303
  • 304
  • 305
  • 306
  • 335
  • 336
  • 337
  • 338
  • 339
  • 340
  • 341
  • 342
  • 343
  • 344
  • 345
  • 346
  • 347
  • 348
  • 349
  • 350
  • 398
  • 399
  • 400
  • 401
  • 402
  • 403
  • 404
  • 405
  • 406
  • 407
  • 408
  • 409
  • 410
  • 411
  • 412
  • 413
  • 414
  • 415
  • 416
  • 417
  • 418
  • 419
  • 420
  • 421
  • 422
  • 423
  • 424
  • 425
  • 426
  • 427
  • 428
  • 429
  • 430
  • 431
  • 432
  • 433
  • 434
  • 435
  • 436
  • 437
  • 438
  • 439
  • 440
  • 441
  • 442
  • 523
  • 540
  • 602
  • 603
  • 604
  • 605
  • 606
  • 607
  • 636
  • 637
  • 638
  • 639
  • 640
  • 641
  • 642
  • 643
  • 644
  • 645
  • 646
  • 647
  • 648
  • 649
  • 650
  • 651
  • 699
  • 700
  • 701
  • 702
  • 703
  • 704
  • 705
  • 706
  • 707
  • 708
  • 709
  • 710
  • 711
  • 712
  • 713
  • 714
  • 715
  • 716
  • 717
  • 718
  • 719
  • 720
  • 721
  • 722
  • 723
  • 724
  • 725
  • 726
  • 727
  • 728
  • 729
  • 730
  • 731
  • 732
  • 733
  • 734
  • 735
  • 736
  • 737
  • 738
  • 739
  • 740
  • 741
  • 742
  • 743
  • 744
  • 761
  • 823
  • 824
  • 825
  • 826
  • 827
  • 828
  • 857
  • 858
  • 859
  • 860
  • 861
  • 862
  • 863
  • 864
  • 865
  • 866
  • 867
  • 868
  • 869
  • 870
  • 871
  • 872
  • 920
  • 921
  • 922
  • 923
  • 924
  • 925
  • 926
  • 927
  • 928
  • 929
  • 930
  • 931
  • 932
  • 933
  • 934
  • 935
  • 936
  • 937
  • 938
  • 939
  • 940
  • 941
  • 942
  • 943
  • 944
  • 945
  • 946
  • 947
  • 948
  • 949
  • 950
  • 951
  • 952
  • 953
  • 954
  • 955
  • 956
  • 957
  • 958
  • 959
  • 960
  • 961
  • 962
  • 963
  • 964
  • 965
  • 982
  • 1044
  • 1045
  • 1046
  • 1047
  • 1048
  • 1049
  • 1078
  • 1079
  • 1080
  • 1081
  • 1082
  • 1083
  • 1084
  • 1085
  • 1086
  • 1087
  • 1088
  • 1089
  • 1090
  • 1091
  • 1092
  • 1093
  • 1141
  • 1142
  • 1143
  • 1144
  • 1145
  • 1146
  • 1147
  • 1148
  • 1149
  • 1150
  • 1151
  • 1152
  • 1153
  • 1154
  • 1155
  • 1156
  • 1157
  • 1158
  • 1159
  • 1160
  • 1161
  • 1162
  • 1163
  • 1164
  • 1165
  • 1166
  • 1167
  • 1168
  • 1169
  • 1170
  • 1171
  • 1172
  • 1173
  • 1174
  • 1175
  • 1176
  • 1177
  • 1178
  • 1179
  • 1180
  • 1181
  • 1182
  • 1183
  • 1184
  • 1185
  • 1186
  • 1203
  • 1265
  • 1266
  • 1267
  • 1268
  • 1269
  • 1270
  • 1299
  • 1300
  • 1301
  • 1302
  • 1303
  • 1304
  • 1305
  • 1306
  • 1307
  • 1308
  • 1309
  • 1310
  • 1311
  • 1312
  • 1313
  • 1314
  • 1362
  • 1363
  • 1364
  • 1365
  • 1366
  • 1367
  • 1368
  • 1369
  • 1370
  • 1371
  • 1372
  • 1373
  • 1374
  • 1375
  • 1376
  • 1377
  • 1378
  • 1379
  • 1380
  • 1381
  • 1382
  • 1383
  • 1384
  • 1385
  • 1386
  • 1387
  • 1388
  • 1389
  • 1390
  • 1391
  • 1392
  • 1393
  • 1394
  • 1395
  • 1396
  • 1397
  • 1398
  • 1399
  • 1400
  • 1401
  • 1402
  • 1403
  • 1404
  • 1405
  • 1406
  • 1407
  • 1424
  • 1486
  • 1487
  • 1488
  • 1489
  • 1490
  • 1491
  • 1520
  • 1521
  • 1522
  • 1523
  • 1524
  • 1525
  • 1526
  • 1527
  • 1528
  • 1529
  • 1530
  • 1531
  • 1532
  • 1533
  • 1534
  • 1535
  • 1583
  • 1584
  • 1585
  • 1586
  • 1587
  • 1588
  • 1589
  • 1590
  • 1591
  • 1592
  • 1593
  • 1594
  • 1595
  • 1596
  • 1597
  • 1598
  • 1599
  • 1600
  • 1601
  • 1602
  • 1603
  • 1604
  • 1605
  • 1606
  • 1607
  • 1608
  • 1609
  • 1610
  • 1611
  • 1612
  • 1613
  • 1614
  • 1615
  • 1616
  • 1617
  • 1618
  • 1619
  • 1620
  • 1621
  • 1622
  • 1623
  • 1624
  • 1625
  • 1626
  • 1627
  • 1628
  • 1645
  • 1707
  • 1708
  • 1709
  • 1710
  • 1711
  • 1712
  • 1741
  • 1742
  • 1743
  • 1744
  • 1745
  • 1746
  • 1747
  • 1748
  • 1749
  • 1750
  • 1751
  • 1752
  • 1753
  • 1754
  • 1755
  • 1756
  • 1804
  • 1805
  • 1806
  • 1807
  • 1808
  • 1809
  • 1810
  • 1811
  • 1812
  • 1813
  • 1814
  • 1815
  • 1816
  • 1817
  • 1818
  • 1819
  • 1820
  • 1821
  • 1822
  • 1823
  • 1824
  • 1825
  • 1826
  • 1827
  • 1828
  • 1829
  • 1830
  • 1831
  • 1832
  • 1833
  • 1834
  • 1835
  • 1836
  • 1837
  • 1838
  • 1839
  • 1840
  • 1841
  • 1842
  • 1843
  • 1844
  • 1845
  • 1846
  • 1847
  • 1848
discharge_volume   number  optional    

Must not be greater than 2147483647. Example: 21

discharge_points_count   number  optional    

Must not be greater than 3. Example: 3

sludge_generation   boolean  optional    

Example: true

Facility types

requires authentication

Get the facility types

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/supplier-profile/facility-types" \
    --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/organisations/supplier-profile/facility-types"
);

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,
        "name": "Accessories and Trims",
        "description": "Manufacture and processing of materials that are attached to the body of the garments for functional purpose."
    }
}
 

Request      

GET api/organisations/supplier-profile/facility-types

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Attribute groups

requires authentication

Get attributes suitable for the facility type

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/supplier-profile/attribute-groups" \
    --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/organisations/supplier-profile/attribute-groups"
);

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,
            "name": "Materials",
            "profile_type": "supplier_profile",
            "service_id": null,
            "single_select": 0,
            "type": null,
            "required": null,
            "items_type": null,
            "attributes": [
                {
                    "id": 1,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Cotton",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        1,
                        2,
                        3
                    ]
                },
                {
                    "id": 2,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Bast fibres and Bamboo",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 3,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Bamboo",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 4,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Flax (Linen)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 5,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Hemp",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 6,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Jute",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 7,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Nettle",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 8,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Ramie",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 9,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Banana",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 10,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Leaf fibres",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 11,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Bamboo",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 12,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Flax (Linen)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 13,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Hemp",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 14,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Jute",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 15,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Nettle",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 16,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Ramie",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 17,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Banana",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 18,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Kapok",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        1,
                        2,
                        3
                    ]
                },
                {
                    "id": 19,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Animal",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 20,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Wool",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 21,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Alpaca",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 22,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Angora",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 23,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Camel",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 24,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Cashmere",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 25,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Guanaco",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 26,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Lama",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 27,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Mohair",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 28,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Vicuna",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 29,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Yak",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 30,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Horse hair",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 31,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Vicugna",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 32,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Silk",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 33,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "MMCF",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 34,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Acetate (Diacetate, Triacetate)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 35,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Cupro",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 36,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Lyocell",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 37,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Modal",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 38,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Viscose",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 39,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Synthetics",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 40,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Acrylic",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 41,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Elastane (Spandex) ",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 42,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyamide (Nylon)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 43,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyester",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 44,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyethylene",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 45,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyethylene terephthalate (PET)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 46,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polylactic acid (PLA)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 47,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polypropylene",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 48,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Secondary Raw Materials",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 49,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 48,
                    "short": null,
                    "name": "Recycled (any of the above)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 50,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Finished Leather",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        2
                    ]
                },
                {
                    "id": 51,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wood",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        4
                    ]
                },
                {
                    "id": 52,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Agricultural waste",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        4
                    ]
                },
                {
                    "id": 53,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Textile waste",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        4
                    ]
                },
                {
                    "id": 54,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Goose down",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        7
                    ]
                },
                {
                    "id": 55,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Goose feather",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        7
                    ]
                },
                {
                    "id": 56,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Duck down",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        7
                    ]
                },
                {
                    "id": 57,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Duck feather",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        7
                    ]
                },
                {
                    "id": 58,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Recycled Fibres",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        9
                    ]
                },
                {
                    "id": 59,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 58,
                    "short": null,
                    "name": "Recycled (any of the above)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        9
                    ]
                },
                {
                    "id": 60,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Fabrics",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 61,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Leather",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 62,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Ethylene vinyl acetate (EVA)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        6,
                        8
                    ]
                },
                {
                    "id": 63,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Polyurethane (PU)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        6,
                        8
                    ]
                },
                {
                    "id": 64,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Polyvinyl chloride (PVC)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        6,
                        8
                    ]
                },
                {
                    "id": 65,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Thermoplastic polyurethane (TPU)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 66,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Thermoplastic elastomers (TPE)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 67,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Acrylonitrile butadiene styrene (ABS)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 68,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Neoprene",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 69,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Styrene ethylene butylene styrene (SEBS)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 70,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Fresh hides/skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 71,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Brined hides/Skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 72,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wet or dry-salted hides/skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 73,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Limed splits",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 74,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Pickled hides/skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 75,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wet blue hides/skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 76,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wet white/wet green hides/skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 77,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Crust hides/skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 78,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Splits (tanned)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 79,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Splits (crust)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                }
            ]
        },
        {
            "id": 1,
            "name": "Materials",
            "profile_type": "supplier_profile",
            "service_id": null,
            "single_select": 0,
            "type": null,
            "required": null,
            "items_type": null,
            "attributes": [
                {
                    "id": 1,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Cotton",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        1,
                        2,
                        3
                    ]
                },
                {
                    "id": 2,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Bast fibres and Bamboo",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 3,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Bamboo",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 4,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Flax (Linen)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 5,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Hemp",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 6,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Jute",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 7,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Nettle",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 8,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Ramie",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 9,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Banana",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 10,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Leaf fibres",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 11,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Bamboo",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 12,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Flax (Linen)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 13,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Hemp",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 14,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Jute",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 15,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Nettle",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 16,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Ramie",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 17,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Banana",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 18,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Kapok",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        1,
                        2,
                        3
                    ]
                },
                {
                    "id": 19,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Animal",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 20,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Wool",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 21,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Alpaca",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 22,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Angora",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 23,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Camel",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 24,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Cashmere",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 25,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Guanaco",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 26,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Lama",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 27,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Mohair",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 28,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Vicuna",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 29,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Yak",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 30,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Horse hair",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 31,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Vicugna",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 32,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Silk",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 33,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "MMCF",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 34,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Acetate (Diacetate, Triacetate)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 35,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Cupro",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 36,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Lyocell",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 37,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Modal",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 38,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Viscose",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 39,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Synthetics",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 40,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Acrylic",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 41,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Elastane (Spandex) ",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 42,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyamide (Nylon)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 43,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyester",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 44,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyethylene",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 45,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyethylene terephthalate (PET)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 46,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polylactic acid (PLA)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 47,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polypropylene",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 48,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Secondary Raw Materials",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 49,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 48,
                    "short": null,
                    "name": "Recycled (any of the above)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        3
                    ]
                },
                {
                    "id": 50,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Finished Leather",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        2
                    ]
                },
                {
                    "id": 51,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wood",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        4
                    ]
                },
                {
                    "id": 52,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Agricultural waste",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        4
                    ]
                },
                {
                    "id": 53,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Textile waste",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        4
                    ]
                },
                {
                    "id": 54,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Goose down",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        7
                    ]
                },
                {
                    "id": 55,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Goose feather",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        7
                    ]
                },
                {
                    "id": 56,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Duck down",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        7
                    ]
                },
                {
                    "id": 57,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Duck feather",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        7
                    ]
                },
                {
                    "id": 58,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Recycled Fibres",
                    "selectable": 0,
                    "order": null,
                    "facility_types": [
                        9
                    ]
                },
                {
                    "id": 59,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 58,
                    "short": null,
                    "name": "Recycled (any of the above)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        9
                    ]
                },
                {
                    "id": 60,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Fabrics",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 61,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Leather",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 62,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Ethylene vinyl acetate (EVA)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        6,
                        8
                    ]
                },
                {
                    "id": 63,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Polyurethane (PU)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        6,
                        8
                    ]
                },
                {
                    "id": 64,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Polyvinyl chloride (PVC)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        6,
                        8
                    ]
                },
                {
                    "id": 65,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Thermoplastic polyurethane (TPU)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 66,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Thermoplastic elastomers (TPE)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 67,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Acrylonitrile butadiene styrene (ABS)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 68,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Neoprene",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 69,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Styrene ethylene butylene styrene (SEBS)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        8
                    ]
                },
                {
                    "id": 70,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Fresh hides/skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 71,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Brined hides/Skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 72,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wet or dry-salted hides/skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 73,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Limed splits",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 74,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Pickled hides/skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 75,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wet blue hides/skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 76,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wet white/wet green hides/skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 77,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Crust hides/skins",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 78,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Splits (tanned)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                },
                {
                    "id": 79,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Splits (crust)",
                    "selectable": 1,
                    "order": null,
                    "facility_types": [
                        5
                    ]
                }
            ]
        }
    ]
}
 

Request      

GET api/organisations/supplier-profile/attribute-groups

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Vendor reports

Index

requires authentication

List of vendor reports created for organisations of type brand

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/vendor-reports?per_page=1&page=1&filter%5Blevel%5D=level_1&filter%5Bperiod%5D=quarter&filter%5Bstatus%5D=autem&filter%5Bfor_organisation_id%5D=6&filter%5Brequested_at%5D=%3D+2026-06-18+16%3A14%3A58&filter%5Bcompleted_at%5D=%3C+2026-06-20+16%3A14%3A58&filter%5Bcreated_at%5D=%3C+2026-06-16+16%3A14%3A58&filter%5Bupdated_at%5D=%3E%3D+2026-06-05+16%3A14%3A58&sort=id&column=id" \
    --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/organisations/1/vendor-reports"
);

const params = {
    "per_page": "1",
    "page": "1",
    "filter[level]": "level_1",
    "filter[period]": "quarter",
    "filter[status]": "autem",
    "filter[for_organisation_id]": "6",
    "filter[requested_at]": "= 2026-06-18 16:14:58",
    "filter[completed_at]": "< 2026-06-20 16:14:58",
    "filter[created_at]": "< 2026-06-16 16:14:58",
    "filter[updated_at]": ">= 2026-06-05 16:14:58",
    "sort": "id",
    "column": "id",
};
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,
            "organisation_id": 171289,
            "for_organisation_id": 171290,
            "level": "level_2",
            "status": "pending",
            "period": "quarter",
            "requested_at": "2026-05-21T16:14:58.000000Z",
            "completed_at": null,
            "created_at": "2026-05-21T16:14:58.000000Z",
            "updated_at": "2026-05-21T16:14:58.000000Z",
            "deleted_at": null,
            "organisation": {
                "id": 171289,
                "reference_id": "01-NWLKTVBWP3KN-N",
                "type_id": 2,
                "name": "Gaylord PLC",
                "address_1": "570 Jerde Plaza Suite 087",
                "address_2": "Suite 585",
                "city": "Zitashire",
                "state": "Iowa",
                "location": "AE",
                "zip": "00039-1499",
                "phone": "+16695743979",
                "email": "christop05@jaskolski.info",
                "website": "http://kunde.info/maiores-rerum-dolores-ex-quam",
                "avatar_url": null,
                "location_name": "United Arab Emirates"
            },
            "for_organisation": {
                "id": 171290,
                "reference_id": "01-ZJVDEPSLW7Q6-S",
                "type_id": 2,
                "name": "Torphy-Wuckert",
                "address_1": "996 Price Plaza",
                "address_2": "Apt. 716",
                "city": "New Immanuelland",
                "state": "Arkansas",
                "location": "CC",
                "zip": "30640",
                "phone": "+14708398723",
                "email": "katherine.jenkins@davis.com",
                "website": "http://wuckert.com/",
                "avatar_url": null,
                "location_name": "Cocos (Keeling) Islands"
            }
        },
        {
            "id": 1,
            "organisation_id": 171289,
            "for_organisation_id": 171290,
            "level": "level_2",
            "status": "pending",
            "period": "quarter",
            "requested_at": "2026-05-21T16:14:58.000000Z",
            "completed_at": null,
            "created_at": "2026-05-21T16:14:58.000000Z",
            "updated_at": "2026-05-21T16:14:58.000000Z",
            "deleted_at": null,
            "organisation": {
                "id": 171289,
                "reference_id": "01-NWLKTVBWP3KN-N",
                "type_id": 2,
                "name": "Gaylord PLC",
                "address_1": "570 Jerde Plaza Suite 087",
                "address_2": "Suite 585",
                "city": "Zitashire",
                "state": "Iowa",
                "location": "AE",
                "zip": "00039-1499",
                "phone": "+16695743979",
                "email": "christop05@jaskolski.info",
                "website": "http://kunde.info/maiores-rerum-dolores-ex-quam",
                "avatar_url": null,
                "location_name": "United Arab Emirates"
            },
            "for_organisation": {
                "id": 171290,
                "reference_id": "01-ZJVDEPSLW7Q6-S",
                "type_id": 2,
                "name": "Torphy-Wuckert",
                "address_1": "996 Price Plaza",
                "address_2": "Apt. 716",
                "city": "New Immanuelland",
                "state": "Arkansas",
                "location": "CC",
                "zip": "30640",
                "phone": "+14708398723",
                "email": "katherine.jenkins@davis.com",
                "website": "http://wuckert.com/",
                "avatar_url": null,
                "location_name": "Cocos (Keeling) Islands"
            }
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": "/?page=1",
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "last_page": 1,
        "links": [
            {
                "url": null,
                "label": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 100,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/organisations/{organisation_id}/vendor-reports

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 1

page   integer  optional    

the page number to show. Example: 1

filter[level]   string  optional    

Filter column level by any accepted value. Report depth / disclosure level. Example: level_1

Must be one of:
  • level_1
  • level_2
  • level_3
filter[period]   string  optional    

Filter column period by any accepted value. Covered time window for the report. Example: quarter

Must be one of:
  • quarter
  • half_year
  • year
filter[status]   string  optional    

Filter column status by any accepted value. Workflow status (comma-separated for multiple values). Example: autem

filter[for_organisation_id]   integer  optional    

Filter column for_organisation_id by any accepted value. Target organisation id (comma-separated for multiple values). Example: 6

filter[requested_at]   datetime  optional    

Filter column requested_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: = 2026-06-18 16:14:58

filter[completed_at]   datetime  optional    

Filter column completed_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: < 2026-06-20 16:14:58

filter[created_at]   datetime  optional    

Filter column created_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: < 2026-06-16 16:14:58

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: >= 2026-06-05 16:14:58

sort   string  optional    

sort by any accepted column: id, level, status, period, for_organisation_id, requested_at, completed_at, created_at, updated_at. prefix a "-" before the column name to sort in descending order Example: id

column   string  optional    

get a distinct list of filterable values for any of the columns: id, organisation_id, for_organisation_id, level, status, period, requested_at, completed_at, created_at, updated_at. Example: id

Store

requires authentication

Queue or persist a new vendor report

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/vendor-reports" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"for_organisation_id\": 1,
    \"level\": \"level_3\",
    \"period\": \"half_year\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/vendor-reports"
);

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

let body = {
    "for_organisation_id": 1,
    "level": "level_3",
    "period": "half_year"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "id": 2,
    "organisation_id": 171291,
    "for_organisation_id": 171292,
    "level": "level_1",
    "status": "pending",
    "period": "quarter",
    "requested_at": "2026-05-21T16:14:58.000000Z",
    "completed_at": null,
    "created_at": "2026-05-21T16:14:58.000000Z",
    "updated_at": "2026-05-21T16:14:58.000000Z",
    "deleted_at": null,
    "organisation": {
        "id": 171291,
        "reference_id": "01-76FBVQWXTF7X-H",
        "type_id": 2,
        "name": "Roob-Cassin",
        "address_1": "6601 Randi Divide Suite 303",
        "address_2": "Apt. 634",
        "city": "Lake Stanley",
        "state": "Maine",
        "location": "GG",
        "zip": "04508",
        "phone": "+13369419143",
        "email": "eulah10@oberbrunner.net",
        "website": "http://www.mclaughlin.info/ut-sapiente-sit-eos-praesentium-ut-explicabo-deserunt",
        "avatar_url": null,
        "location_name": "Guernsey"
    },
    "for_organisation": {
        "id": 171292,
        "reference_id": "01-NWLKTXYUXZ8T-V",
        "type_id": 2,
        "name": "Wisozk and Sons",
        "address_1": "5124 Romaguera Via",
        "address_2": "Apt. 132",
        "city": "Favianfort",
        "state": "South Dakota",
        "location": "BE",
        "zip": "89434",
        "phone": "+18705914433",
        "email": "stark.joy@wilkinson.com",
        "website": "http://www.halvorson.biz/",
        "avatar_url": null,
        "location_name": "Belgium"
    }
}
 

Request      

POST api/organisations/{organisation_id}/vendor-reports

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

for_organisation_id   integer     

Numeric identifier of the target organisation the vendor report is about (the “report subject” organisation).

Format and presence

  • Required. Must be a positive integer.
  • Must reference an existing row in the organisations table (id).

Organisation type

  • The target organisation must be a Brand (its organisation type must match the Brand type). Requests for non-brand organisations are rejected.

Relationship to the for_organisation (from the URL {organisation})

  • For report level 1 (level_1), only the rules above apply: a valid Brand id is sufficient.
  • For report level 2 (level_2) or level 3 (level_3), additional rules apply:
    • There must be an organisation connection between your organisation and the for_organisation.
    • On that connection, there must be at least one connection association owned by your organisation whose type is suppliers to brand—i.e. the connection must be set up so that suppliers are associated for reporting in that context. If the organisations are connected but that association is missing, the request fails.

Choose the for_organisation’s primary key id as returned by organisation APIs, not a reference code, unless your client maps codes to ids beforehand. The id of an existing record in the organisations table. Example: 1

level   string     

Example: level_3

Must be one of:
  • level_1
  • level_2
  • level_3
period   string     

Example: half_year

Must be one of:
  • quarter
  • half_year
  • year

Download (PDF)

requires authentication

Download the vendor report as a PDF. Currently returns a single empty page as a placeholder.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisations/1/vendor-reports/3/download" \
    --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/organisations/1/vendor-reports/3/download"
);

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):


content of the pdf
 

Example response (200):


content of the pdf
 

Request      

GET api/organisations/{organisation_id}/vendor-reports/{vendor_report_id}/download

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

vendor_report_id   integer     

The ID of the vendor report. Example: 3

vendor_report   integer     

Vendor report id. Example: 3

Destroy

requires authentication

Delete a vendor report

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisations/1/vendor-reports/8" \
    --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/organisations/1/vendor-reports/8"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

DELETE api/organisations/{organisation_id}/vendor-reports/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

id   integer     

The ID of the vendor report. Example: 8

vendor_report   integer     

Vendor report id. Example: 18

Reference ID Generator

Generate

requires authentication

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/generate-reference-id" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"table_name\": \"at\",
    \"count\": 39
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/generate-reference-id"
);

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

let body = {
    "table_name": "at",
    "count": 39
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, successful):


{
    "message": "Reference ID generated successfully.",
    "data": {
        "reference_id": "1234567890"
    }
}
 

Request      

POST api/generate-reference-id

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

table_name   string     

Example: at

count   integer     

Must be at least 1. Example: 39

System

Logs

Channel Settings

requires authentication

Get all logging channel settings.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/system/logs/settings" \
    --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/system/logs/settings"
);

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):


{
    "channel1": {
        "fields": [
            "context->ip",
            "context->action_type",
            "context->user_id",
        ],
        "filters": [
            {
                "type": "exact",
                "column": "context->ip",
                "field": {
                    "name": "textfield",
                },
            },
        ],
        "sorts": [
            "context->ip",
            "context->action_type",
            "context->user_id",
        ]
    }
}
 

Request      

GET api/system/logs/settings

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Channel

requires authentication

See all logs for a channel

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/system/logs/channel/consequatur?archived=&per_page=50&sort=%60sort%3D-created_at%60" \
    --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/system/logs/channel/consequatur"
);

const params = {
    "archived": "0",
    "per_page": "50",
    "sort": "`sort=-created_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,
            "channel": "organisation",
            "level": "INFO",
            "message": "[created] App\\Models\\Organisation",
            "context": {
                "ip": "127.0.0.1",
                "auth_id": null,
                "changes": {
                    "id": 19424,
                    "zip": "12345",
                    "city": "Invited city",
                    "name": "Bureau Veritas",
                    "uuid": "a1bbba2d-02f0-435e-bcc2-da28195fb810",
                    "email": "invited@localhost",
                    "phone": "+1234567890",
                    "state": "Invited state",
                    "status": "approved",
                    "type_id": 9,
                    "website": "https://invited.com",
                    "location": "US",
                    "address_1": "Invited street 1",
                    "address_2": "Invited street 2",
                    "legal_name": "Invited company",
                    "reference_id": "01-TMERKB8EK4F-M",
                    "contact_last_name": "Organisation",
                    "contact_first_name": "Invited",
                    "profile_reviewed_at": {
                        "date": "1987-09-15 21:19:59.000000",
                        "timezone": "UTC",
                        "timezone_type": 3
                    },
                    "registration_mail_sent_at": {
                        "date": "1989-11-09 04:04:34.000000",
                        "timezone": "UTC",
                        "timezone_type": 3
                    }
                },
                "context": {
                    "url": "console",
                    "user": "unauthenticated",
                    "user_role": "unauthenticated"
                },
                "endpoint": "console",
                "auth_mail": null,
                "action_type": "created",
                "organisation_id": 19424,
                "organisation_reference_id": "01-TMERKB8EK4F-M"
            },
            "created_at": "2026-05-08 21:42:24",
            "deleted_at": null
        },
        {
            "id": 1,
            "channel": "organisation",
            "level": "INFO",
            "message": "[created] App\\Models\\Organisation",
            "context": {
                "ip": "127.0.0.1",
                "auth_id": null,
                "changes": {
                    "id": 19424,
                    "zip": "12345",
                    "city": "Invited city",
                    "name": "Bureau Veritas",
                    "uuid": "a1bbba2d-02f0-435e-bcc2-da28195fb810",
                    "email": "invited@localhost",
                    "phone": "+1234567890",
                    "state": "Invited state",
                    "status": "approved",
                    "type_id": 9,
                    "website": "https://invited.com",
                    "location": "US",
                    "address_1": "Invited street 1",
                    "address_2": "Invited street 2",
                    "legal_name": "Invited company",
                    "reference_id": "01-TMERKB8EK4F-M",
                    "contact_last_name": "Organisation",
                    "contact_first_name": "Invited",
                    "profile_reviewed_at": {
                        "date": "1987-09-15 21:19:59.000000",
                        "timezone": "UTC",
                        "timezone_type": 3
                    },
                    "registration_mail_sent_at": {
                        "date": "1989-11-09 04:04:34.000000",
                        "timezone": "UTC",
                        "timezone_type": 3
                    }
                },
                "context": {
                    "url": "console",
                    "user": "unauthenticated",
                    "user_role": "unauthenticated"
                },
                "endpoint": "console",
                "auth_mail": null,
                "action_type": "created",
                "organisation_id": 19424,
                "organisation_reference_id": "01-TMERKB8EK4F-M"
            },
            "created_at": "2026-05-08 21:42:24",
            "deleted_at": null
        }
    ]
}
 

Request      

GET api/system/logs/channel/{channel}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

channel   string     

The channel. Example: consequatur

Query Parameters

archived   boolean  optional    

Whether to list only archived channels. Example: false

per_page   integer  optional    

Number of channels per page. Example: 50

sort   string  optional    

Sort by any configured sort value. Example: sort=-created_at

Export

requires authentication

Export to CSV

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/system/logs/channel/voluptas/export" \
    --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/system/logs/channel/voluptas/export"
);

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 (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 89
vary: Origin
 

{
    "message": "Channel not found"
}
 

Request      

GET api/system/logs/channel/{channel}/export

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

channel   string     

The channel. Example: voluptas

Archive

requires authentication

Archive logs (soft delete)

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/system/logs/channel/repellat/archive" \
    --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/system/logs/channel/repellat/archive"
);

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 (404):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 88
vary: Origin
 

{
    "message": "Channel not found"
}
 

Request      

GET api/system/logs/channel/{channel}/archive

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

channel   string     

The channel. Example: repellat

Delete Archived

requires authentication

Delete archived logs (force delete)

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/system/logs/channel/corrupti/delete-archived" \
    --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/system/logs/channel/corrupti/delete-archived"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Request      

DELETE api/system/logs/channel/{channel}/delete-archived

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

channel   string     

The channel. Example: corrupti

Blade Preview

Preview

requires authentication

Preview any View. Supports php commands and defaults to strings. Only available when debug enabled.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/system/organisation/1/blade/preview/voluptas" \
    --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/system/organisation/1/blade/preview/voluptas"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/system/organisation/{organisation_id}/blade/preview/{view}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

view   string     

Example: voluptas

Sync Lab Users

Webhook

requires authentication

Webhook to handle syncing lab users.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/system/sync-lab-users" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"api_key\": \"et\",
    \"data\": []
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/system/sync-lab-users"
);

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

let body = {
    "api_key": "et",
    "data": []
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "not handled"
}
 

Example response (200):


{}
 

Request      

POST api/system/sync-lab-users

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Body Parameters

api_key   string     

Example: et

data   object     

Mail

Preview

requires authentication

Preview any mailable, supplied with any query parameter arguments for that mailable.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/system/organisation/1/mail/preview/ut" \
    --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/system/organisation/1/mail/preview/ut"
);

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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 77
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/system/organisation/{organisation_id}/mail/preview/{mailableClass}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

mailableClass   string     

Example: ut

Terms and Service

Active Terms and Service Document

requires authentication

Get current active ToC Document.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/system/terms-and-service/active?per_page=3&page=1" \
    --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/system/terms-and-service/active"
);

const params = {
    "per_page": "3",
    "page": "1",
};
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,
        "related_type": "App\\Models\\Organisation",
        "document_title": "TaS Example.pdf",
        "created_at": "2026-05-08T21:42:15.000000Z",
        "updated_at": "2026-05-08T21:42:15.000000Z",
        "public_file_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf"
    }
}
 

Request      

GET api/system/terms-and-service/active

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 3

page   integer  optional    

the page number to show. Example: 1

Active Terms and Conditions

requires authentication

Get current active ToC Document.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/system/terms-and-conditions/active?per_page=5&page=1" \
    --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/system/terms-and-conditions/active"
);

const params = {
    "per_page": "5",
    "page": "1",
};
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,
        "related_type": "App\\Models\\Organisation",
        "document_title": "TaS Example.pdf",
        "created_at": "2026-05-08T21:42:15.000000Z",
        "updated_at": "2026-05-08T21:42:15.000000Z",
        "public_file_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf"
    }
}
 

Request      

GET api/system/terms-and-conditions/active

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 5

page   integer  optional    

the page number to show. Example: 1

Store

requires authentication

Store a new terms and service document.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/system/organisation/1/terms-and-service" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "document=@/tmp/phpkPlNia" 
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/system/organisation/1/terms-and-service"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('document', document.querySelector('input[name="document"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

POST api/system/organisation/{organisation_id}/terms-and-service

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Body Parameters

document   file     

Must be a file. Example: /tmp/phpkPlNia

Store

requires authentication

Store a new terms and conditions document.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/system/user/1/terms-and-conditions" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "document=@/tmp/phpOHPkla" 
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/system/user/1/terms-and-conditions"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('document', document.querySelector('input[name="document"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

POST api/system/user/{user_id}/terms-and-conditions

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

Body Parameters

document   file     

Must be a file. Example: /tmp/phpOHPkla

Terms and Service

Accept

accept a TaS document for an organisation.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/terms-and-service/accept/1/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/terms-and-service/accept/1/1"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


Terms and dervice document accepted
 

Request      

POST api/terms-and-service/accept/{organisation_id}/{document_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

document_id   integer     

The ID of the document. Example: 1

Accept Terms and Conditions

accept a TaC document for a user.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/terms-and-conditions/accept/1/1" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/terms-and-conditions/accept/1/1"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


Terms and conditions document accepted
 

Request      

POST api/terms-and-conditions/accept/{user_id}/{document_id}

Headers

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

document_id   integer     

The ID of the document. Example: 1

Users

Notifications

Index

requires authentication

List all notifications for a user.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/users/1/notifications?page=1&per_page=12" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"read\": true,
    \"unread\": false
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/users/1/notifications"
);

const params = {
    "page": "1",
    "per_page": "12",
};
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",
};

let body = {
    "read": true,
    "unread": false
};

fetch(url, {
    method: "GET",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "data": [
        {
            "id": 1,
            "user_id": 18968,
            "type": "account_updates",
            "message": "Seeded data has been renewed. (This notification is only for pre existing system accounts)",
            "url": null,
            "read_at": null,
            "created_at": "2026-05-08T21:42:30.000000Z",
            "updated_at": "2026-05-08T21:42:30.000000Z"
        },
        {
            "id": 1,
            "user_id": 18968,
            "type": "account_updates",
            "message": "Seeded data has been renewed. (This notification is only for pre existing system accounts)",
            "url": null,
            "read_at": null,
            "created_at": "2026-05-08T21:42:30.000000Z",
            "updated_at": "2026-05-08T21:42:30.000000Z"
        }
    ]
}
 

Request      

GET api/users/{user_id}/notifications

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 12

Body Parameters

read   boolean  optional    

Example: true

unread   boolean  optional    

Example: false

Count unread

requires authentication

Get the amount of unread notifications for a user

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/users/1/notifications/count" \
    --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/users/1/notifications/count"
);

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: {
     count: 1
 }
}
 

Request      

GET api/users/{user_id}/notifications/count

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

Mark as read

requires authentication

Mark a single or all notifications as read for a user.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/users/1/notifications/mark-as-read/1" \
    --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/users/1/notifications/mark-as-read/1"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
 message: "Notification(s) marked as read"
}
 

Request      

POST api/users/{user_id}/notifications/mark-as-read/{notification?}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

notification   integer  optional    

Example: 1

Mark as unread

requires authentication

Mark a notification as unread for a user.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/users/1/notifications/mark-as-unread/1" \
    --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/users/1/notifications/mark-as-unread/1"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
 message: "Notification marked as unread"
}
 

Request      

POST api/users/{user_id}/notifications/mark-as-unread/{notification_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

notification_id   integer     

The ID of the notification. Example: 1

Show Notification Settings

requires authentication

Show notification settings for a user.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/users/1/notifications/settings" \
    --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/users/1/notifications/settings"
);

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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 75
vary: Origin
 

{
    "message": "You do not have access to this user"
}
 

Request      

GET api/users/{user_id}/notifications/settings

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

Update Notification Settings

requires authentication

Update notification settings for a user.

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/users/1/notifications/settings" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"product_updates\": true,
    \"organisation_updates\": false,
    \"weekly_notification_digest\": true,
    \"marketing_updates\": true
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/users/1/notifications/settings"
);

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

let body = {
    "product_updates": true,
    "organisation_updates": false,
    "weekly_notification_digest": true,
    "marketing_updates": true
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PUT api/users/{user_id}/notifications/settings

PATCH api/users/{user_id}/notifications/settings

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

Body Parameters

product_updates   boolean     

Example: true

organisation_updates   boolean     

Example: false

weekly_notification_digest   boolean     

Example: true

marketing_updates   boolean     

Example: true

Show

requires authentication

Get the properties of a user.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/users/1" \
    --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/users/1"
);

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,
        "reference_id": "02-PYSRAKAS6CQ-B",
        "ulid": "01KR4RMPQWBKWZ0XYZJ2JH0CQM",
        "pdc_id": null,
        "role_id": 2,
        "first_name": "Amy",
        "last_name": "Huang",
        "email": "amyhuang@ecic.com.tw",
        "email_verified_at": "2017-06-17T04:45:09.000000Z",
        "phone": "+886910807779",
        "location": "TW",
        "locale": "en-US",
        "created_at": "2017-06-17T04:45:09.000000Z",
        "updated_at": "2017-06-17T04:45:09.000000Z",
        "deleted_at": null,
        "last_active_at": null,
        "profile_reviewed_at": null,
        "status": "active",
        "profile_picture_url": null,
        "location_name": "Taiwan"
    }
}
 

Request      

GET api/users/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the user. Example: 1

user   integer  optional    

The ID of the user. Example: 1

Update

requires authentication

Update a user.

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/users/1" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"first_name\": \"cahfqbnhhoonozgzgnisepm\",
    \"last_name\": \"auzktkuxt\",
    \"email\": \"kessler.ryan@example.com\",
    \"phone\": \"+1234567890\",
    \"password\": \"&0aoMRurry\",
    \"location\": \"US\",
    \"locale\": \"en_JM\",
    \"profile_picture\": \"v\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/users/1"
);

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

let body = {
    "first_name": "cahfqbnhhoonozgzgnisepm",
    "last_name": "auzktkuxt",
    "email": "kessler.ryan@example.com",
    "phone": "+1234567890",
    "password": "&0aoMRurry",
    "location": "US",
    "locale": "en_JM",
    "profile_picture": "v"
};

fetch(url, {
    method: "PUT",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200, successful):


{
    "message": "User updated successfully",
    "email_verification_required": false,
    "password_sent": false,
    "new_avatar_url": "https://example.com/avatar.jpg"
}
 

Example response (422, Validation Error):


{
    "message": "[error message from the first field failing validation]",
    "errors": {
        "[field_name]": [
            "[any validator message failing]"
        ]
    }
}
 

Request      

PUT api/users/{id}

PATCH api/users/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the user. Example: 1

Body Parameters

first_name   string     

Must be at least 2 characters. Must not be greater than 50 characters. Example: cahfqbnhhoonozgzgnisepm

last_name   string     

Must be at least 2 characters. Must not be greater than 50 characters. Example: auzktkuxt

email   string     

Must be a valid email address. Must not be greater than 254 characters. Example: kessler.ryan@example.com

phone   string  optional    

The user's phone number. Must be at least 8 characters. Must not be greater than 20 characters. Example: +1234567890

password   string  optional    

Must not be greater than 255 characters. Example: &0aoMRurry

password_confirmation   string  optional    

The value and password must match.

location   string  optional    

The user's location. Must not be greater than 255 characters. Example: US

locale   string  optional    

Must not be greater than 12 characters. Example: en_JM

profile_picture   string  optional    

Must not be greater than 2048 characters. Example: v

Destroy

requires authentication

Delete a user

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/users/1" \
    --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/users/1"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200, successful):


{
    "message": "User deleted successfully"
}
 

Request      

DELETE api/users/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

id   integer     

The ID of the user. Example: 1

IsRegistered

requires authentication

Checks if user is registered

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/users/1/is-registered" \
    --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/users/1/is-registered"
);

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, successful):


{
    "message": "User is not yet registered"
}
 

Example response (500, unsuccessful):


{
    "message": "User is already registered"
}
 

Request      

GET api/users/{user_id}/is-registered

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

Organisations

requires authentication

Get the organisations for a specific user or the authenticated user.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/users/1/organisations?pending=1&non_accepted=1&only_trashed=1&priority=12&per_page=5&sort=reference_id&page=1" \
    --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/users/1/organisations"
);

const params = {
    "pending": "1",
    "non_accepted": "1",
    "only_trashed": "1",
    "priority": "12",
    "per_page": "5",
    "sort": "reference_id",
    "page": "1",
};
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,
            "maxio_customer_id": 268249,
            "reference_id": "01-J4CGS34JUJV-Q",
            "pdc_id": null,
            "gateway_aid": "A356IB10",
            "uuid": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
            "type_id": 2,
            "status": "approved",
            "name": "Ping Yang Pengye Shoes Com Ltd",
            "legal_name": "Ping Yang Pengye Shoes Com Ltd",
            "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
            "address_2": null,
            "city": "Wenzhou",
            "state": "Zhejiang",
            "location": "CN",
            "zip": "",
            "phone": "",
            "email": "pengye@126.com",
            "contact_first_name": "JIAN",
            "contact_last_name": "Le",
            "website": null,
            "avatar_url": null,
            "applicant_comment": null,
            "reviewer_comment": null,
            "registration_mail_sent_at": null,
            "created_at": "2021-11-04T12:19:55.000000Z",
            "updated_at": "2026-05-12T14:45:25.000000Z",
            "reviewer_comment_category": null,
            "profile_reviewed_at": null,
            "profile_reviewed_by_user_id": null,
            "location_name": "China",
            "type": {
                "id": 2,
                "name": "Supplier",
                "display_name": "Supplier",
                "description": null,
                "selectable": 1,
                "created_at": "2026-05-08T21:42:16.000000Z",
                "updated_at": "2026-05-21T16:14:29.000000Z"
            },
            "organisation_users": [
                {
                    "id": 471,
                    "organisation_id": 1,
                    "user_id": 5524,
                    "invited_by": null,
                    "role_id": 4,
                    "last_authorization": null,
                    "invitation_sent_at": null,
                    "invitation_accepted_at": "2026-05-08T21:42:00.000000Z",
                    "created_at": "2026-05-08T21:42:00.000000Z",
                    "updated_at": "2026-05-08T21:42:00.000000Z",
                    "deleted_at": null,
                    "role": {
                        "id": 4,
                        "parent_id": 3,
                        "name": "ORGANISATION_ADMIN"
                    },
                    "organisation": {
                        "id": 1,
                        "maxio_customer_id": 268249,
                        "reference_id": "01-J4CGS34JUJV-Q",
                        "pdc_id": null,
                        "gateway_aid": "A356IB10",
                        "uuid": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
                        "type_id": 2,
                        "status": "approved",
                        "name": "Ping Yang Pengye Shoes Com Ltd",
                        "legal_name": "Ping Yang Pengye Shoes Com Ltd",
                        "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
                        "address_2": null,
                        "city": "Wenzhou",
                        "state": "Zhejiang",
                        "location": "CN",
                        "zip": "",
                        "phone": "",
                        "email": "pengye@126.com",
                        "contact_first_name": "JIAN",
                        "contact_last_name": "Le",
                        "website": null,
                        "avatar_url": null,
                        "applicant_comment": null,
                        "reviewer_comment": null,
                        "registration_mail_sent_at": null,
                        "created_at": "2021-11-04T12:19:55.000000Z",
                        "updated_at": "2026-05-12T14:45:25.000000Z",
                        "reviewer_comment_category": null,
                        "profile_reviewed_at": null,
                        "profile_reviewed_by_user_id": null,
                        "location_name": "China"
                    }
                }
            ]
        },
        {
            "id": 1,
            "maxio_customer_id": 268249,
            "reference_id": "01-J4CGS34JUJV-Q",
            "pdc_id": null,
            "gateway_aid": "A356IB10",
            "uuid": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
            "type_id": 2,
            "status": "approved",
            "name": "Ping Yang Pengye Shoes Com Ltd",
            "legal_name": "Ping Yang Pengye Shoes Com Ltd",
            "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
            "address_2": null,
            "city": "Wenzhou",
            "state": "Zhejiang",
            "location": "CN",
            "zip": "",
            "phone": "",
            "email": "pengye@126.com",
            "contact_first_name": "JIAN",
            "contact_last_name": "Le",
            "website": null,
            "avatar_url": null,
            "applicant_comment": null,
            "reviewer_comment": null,
            "registration_mail_sent_at": null,
            "created_at": "2021-11-04T12:19:55.000000Z",
            "updated_at": "2026-05-12T14:45:25.000000Z",
            "reviewer_comment_category": null,
            "profile_reviewed_at": null,
            "profile_reviewed_by_user_id": null,
            "location_name": "China",
            "type": {
                "id": 2,
                "name": "Supplier",
                "display_name": "Supplier",
                "description": null,
                "selectable": 1,
                "created_at": "2026-05-08T21:42:16.000000Z",
                "updated_at": "2026-05-21T16:14:29.000000Z"
            },
            "organisation_users": [
                {
                    "id": 471,
                    "organisation_id": 1,
                    "user_id": 5524,
                    "invited_by": null,
                    "role_id": 4,
                    "last_authorization": null,
                    "invitation_sent_at": null,
                    "invitation_accepted_at": "2026-05-08T21:42:00.000000Z",
                    "created_at": "2026-05-08T21:42:00.000000Z",
                    "updated_at": "2026-05-08T21:42:00.000000Z",
                    "deleted_at": null,
                    "role": {
                        "id": 4,
                        "parent_id": 3,
                        "name": "ORGANISATION_ADMIN"
                    },
                    "organisation": {
                        "id": 1,
                        "maxio_customer_id": 268249,
                        "reference_id": "01-J4CGS34JUJV-Q",
                        "pdc_id": null,
                        "gateway_aid": "A356IB10",
                        "uuid": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
                        "type_id": 2,
                        "status": "approved",
                        "name": "Ping Yang Pengye Shoes Com Ltd",
                        "legal_name": "Ping Yang Pengye Shoes Com Ltd",
                        "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
                        "address_2": null,
                        "city": "Wenzhou",
                        "state": "Zhejiang",
                        "location": "CN",
                        "zip": "",
                        "phone": "",
                        "email": "pengye@126.com",
                        "contact_first_name": "JIAN",
                        "contact_last_name": "Le",
                        "website": null,
                        "avatar_url": null,
                        "applicant_comment": null,
                        "reviewer_comment": null,
                        "registration_mail_sent_at": null,
                        "created_at": "2021-11-04T12:19:55.000000Z",
                        "updated_at": "2026-05-12T14:45:25.000000Z",
                        "reviewer_comment_category": null,
                        "profile_reviewed_at": null,
                        "profile_reviewed_by_user_id": null,
                        "location_name": "China"
                    }
                }
            ]
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "/",
        "per_page": "50",
        "to": 2
    }
}
 

Request      

GET api/users/{user_id}/organisations

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

Query Parameters

pending   boolean  optional    

Include organisations that have pending invitations. Defaults to true. Example: true

non_accepted   boolean  optional    

Include organisations that have not been accepted. Defaults to true. Example: true

only_trashed   boolean  optional    

Example: true

priority   integer  optional    

Sort by ID by priority. Example: 12

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 5

sort   string  optional    

sort by any accepted column: reference_id, name, role_name, type_name, membership_accepted_at, membership_deleted_at, created_at. prefix a "-" before the column name to sort in descending order Example: reference_id

page   integer  optional    

the page number to show. Example: 1

Accept Invitation

requires authentication

Accept an invitation to join an organisation.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/users/1/accept-invitation/1" \
    --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/users/1/accept-invitation/1"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

POST api/users/{user_id}/accept-invitation/{organisationUser_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

organisationUser_id   integer     

The ID of the organisationUser. Example: 1

Reject Invitation

requires authentication

Reject an invitation to join an organisation.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/users/1/reject-invitation/1" \
    --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/users/1/reject-invitation/1"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

POST api/users/{user_id}/reject-invitation/{organisationUser_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

user_id   integer     

The ID of the user. Example: 1

organisationUser_id   integer     

The ID of the organisationUser. Example: 1

Wastewater

Clearstream Report

Show

requires authentication

get the clearstream report as a pdf

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/clearstream-report" \
    --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/organisation/1/wastewater/reporting/1/clearstream-report"
);

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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 74
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/{report_id}/clearstream-report

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Facility information

Show attribute groups

requires authentication

Get a list of attribute groups related to report profiles

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/attribute-groups" \
    --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/organisation/1/wastewater/reporting/attribute-groups"
);

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,
            "name": "Materials",
            "profile_type": "supplier_profile",
            "service_id": null,
            "single_select": 0,
            "type": null,
            "required": null,
            "items_type": null,
            "attributes": [
                {
                    "id": 1,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Cotton",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 2,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Bast fibres and Bamboo",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 3,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Bamboo",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 4,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Flax (Linen)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 5,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Hemp",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 6,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Jute",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 7,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Nettle",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 8,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Ramie",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 9,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Banana",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 10,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Leaf fibres",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 11,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Bamboo",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 12,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Flax (Linen)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 13,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Hemp",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 14,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Jute",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 15,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Nettle",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 16,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Ramie",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 17,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Banana",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 18,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Kapok",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 19,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Animal",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 20,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Wool",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 21,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Alpaca",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 22,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Angora",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 23,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Camel",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 24,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Cashmere",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 25,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Guanaco",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 26,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Lama",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 27,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Mohair",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 28,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Vicuna",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 29,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Yak",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 30,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Horse hair",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 31,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Vicugna",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 32,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Silk",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 33,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "MMCF",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 34,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Acetate (Diacetate, Triacetate)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 35,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Cupro",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 36,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Lyocell",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 37,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Modal",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 38,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Viscose",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 39,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Synthetics",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 40,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Acrylic",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 41,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Elastane (Spandex) ",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 42,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyamide (Nylon)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 43,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyester",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 44,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyethylene",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 45,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyethylene terephthalate (PET)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 46,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polylactic acid (PLA)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 47,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polypropylene",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 48,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Secondary Raw Materials",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 49,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 48,
                    "short": null,
                    "name": "Recycled (any of the above)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 50,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Finished Leather",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 51,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wood",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 52,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Agricultural waste",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 53,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Textile waste",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 54,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Goose down",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 55,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Goose feather",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 56,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Duck down",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 57,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Duck feather",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 58,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Recycled Fibres",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 59,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 58,
                    "short": null,
                    "name": "Recycled (any of the above)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 60,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Fabrics",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 61,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Leather",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 62,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Ethylene vinyl acetate (EVA)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 63,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Polyurethane (PU)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 64,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Polyvinyl chloride (PVC)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 65,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Thermoplastic polyurethane (TPU)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 66,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Thermoplastic elastomers (TPE)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 67,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Acrylonitrile butadiene styrene (ABS)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 68,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Neoprene",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 69,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Styrene ethylene butylene styrene (SEBS)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 70,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Fresh hides/skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 71,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Brined hides/Skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 72,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wet or dry-salted hides/skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 73,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Limed splits",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 74,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Pickled hides/skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 75,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wet blue hides/skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 76,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wet white/wet green hides/skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 77,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Crust hides/skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 78,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Splits (tanned)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 79,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Splits (crust)",
                    "selectable": 1,
                    "order": null
                }
            ]
        },
        {
            "id": 1,
            "name": "Materials",
            "profile_type": "supplier_profile",
            "service_id": null,
            "single_select": 0,
            "type": null,
            "required": null,
            "items_type": null,
            "attributes": [
                {
                    "id": 1,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Cotton",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 2,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Bast fibres and Bamboo",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 3,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Bamboo",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 4,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Flax (Linen)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 5,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Hemp",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 6,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Jute",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 7,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Nettle",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 8,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Ramie",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 9,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 2,
                    "short": null,
                    "name": "Banana",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 10,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Leaf fibres",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 11,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Bamboo",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 12,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Flax (Linen)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 13,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Hemp",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 14,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Jute",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 15,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Nettle",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 16,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Ramie",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 17,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 10,
                    "short": null,
                    "name": "Banana",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 18,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Kapok",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 19,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Animal",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 20,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Wool",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 21,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Alpaca",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 22,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Angora",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 23,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Camel",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 24,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Cashmere",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 25,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Guanaco",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 26,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Lama",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 27,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Mohair",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 28,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Vicuna",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 29,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Yak",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 30,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Horse hair",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 31,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Vicugna",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 32,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 19,
                    "short": null,
                    "name": "Silk",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 33,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "MMCF",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 34,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Acetate (Diacetate, Triacetate)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 35,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Cupro",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 36,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Lyocell",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 37,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Modal",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 38,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 33,
                    "short": null,
                    "name": "Viscose",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 39,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Synthetics",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 40,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Acrylic",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 41,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Elastane (Spandex) ",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 42,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyamide (Nylon)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 43,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyester",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 44,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyethylene",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 45,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polyethylene terephthalate (PET)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 46,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polylactic acid (PLA)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 47,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 39,
                    "short": null,
                    "name": "Polypropylene",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 48,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Secondary Raw Materials",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 49,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 48,
                    "short": null,
                    "name": "Recycled (any of the above)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 50,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Finished Leather",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 51,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wood",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 52,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Agricultural waste",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 53,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Textile waste",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 54,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Goose down",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 55,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Goose feather",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 56,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Duck down",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 57,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Duck feather",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 58,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Recycled Fibres",
                    "selectable": 0,
                    "order": null
                },
                {
                    "id": 59,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": 58,
                    "short": null,
                    "name": "Recycled (any of the above)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 60,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Fabrics",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 61,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Leather",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 62,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Ethylene vinyl acetate (EVA)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 63,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Polyurethane (PU)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 64,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Polyvinyl chloride (PVC)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 65,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Thermoplastic polyurethane (TPU)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 66,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Thermoplastic elastomers (TPE)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 67,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Acrylonitrile butadiene styrene (ABS)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 68,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Neoprene",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 69,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Styrene ethylene butylene styrene (SEBS)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 70,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Fresh hides/skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 71,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Brined hides/Skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 72,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wet or dry-salted hides/skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 73,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Limed splits",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 74,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Pickled hides/skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 75,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wet blue hides/skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 76,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Wet white/wet green hides/skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 77,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Crust hides/skins",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 78,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Splits (tanned)",
                    "selectable": 1,
                    "order": null
                },
                {
                    "id": 79,
                    "external_id": null,
                    "group_id": 1,
                    "parent_id": null,
                    "short": null,
                    "name": "Splits (crust)",
                    "selectable": 1,
                    "order": null
                }
            ]
        }
    ]
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/attribute-groups

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Show

requires authentication

Get information for the owned facility for the given report

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/facility-information" \
    --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/organisation/1/wastewater/reporting/1/facility-information"
);

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,
        "report_id": 29115,
        "version_id": 1,
        "requires_testing": 1,
        "completed_at": "2026-05-15 11:30:33",
        "created_at": "2026-05-15T11:29:20.000000Z",
        "updated_at": "2026-05-15T11:30:33.000000Z",
        "attributes": [
            {
                "id": 443,
                "external_id": 1,
                "group_id": 17,
                "parent_id": null,
                "short": null,
                "name": "Wastewater 2.2",
                "selectable": 1,
                "order": null,
                "pivot": {
                    "profile_id": 1,
                    "attribute_id": 443
                }
            },
            {
                "id": 461,
                "external_id": 1,
                "group_id": 18,
                "parent_id": null,
                "short": null,
                "name": "Textile",
                "selectable": 1,
                "order": null,
                "pivot": {
                    "profile_id": 1,
                    "attribute_id": 461
                }
            },
            {
                "id": 465,
                "external_id": 1,
                "group_id": 19,
                "parent_id": null,
                "short": null,
                "name": "Textile Accessories and Trims Assembler",
                "selectable": 1,
                "order": null,
                "pivot": {
                    "profile_id": 1,
                    "attribute_id": 465
                }
            },
            {
                "id": 466,
                "external_id": 2,
                "group_id": 19,
                "parent_id": null,
                "short": null,
                "name": "Textile Apparel Assembler (CMT)",
                "selectable": 1,
                "order": null,
                "pivot": {
                    "profile_id": 1,
                    "attribute_id": 466
                }
            },
            {
                "id": 468,
                "external_id": 4,
                "group_id": 19,
                "parent_id": null,
                "short": null,
                "name": "Textile Accessories and Trims Processor",
                "selectable": 1,
                "order": null,
                "pivot": {
                    "profile_id": 1,
                    "attribute_id": 468
                }
            },
            {
                "id": 500,
                "external_id": 2,
                "group_id": 20,
                "parent_id": null,
                "short": null,
                "name": "Indirect with pretreatment (with sludge)",
                "selectable": 1,
                "order": null,
                "pivot": {
                    "profile_id": 1,
                    "attribute_id": 500
                }
            },
            {
                "id": 505,
                "external_id": 1,
                "group_id": 21,
                "parent_id": null,
                "short": null,
                "name": "more than or equal 15m³ per day",
                "selectable": 1,
                "order": null,
                "pivot": {
                    "profile_id": 1,
                    "attribute_id": 505
                }
            },
            {
                "id": 507,
                "external_id": 1,
                "group_id": 22,
                "parent_id": null,
                "short": null,
                "name": "Yes",
                "selectable": 1,
                "order": null,
                "pivot": {
                    "profile_id": 1,
                    "attribute_id": 507
                }
            },
            {
                "id": 511,
                "external_id": 4,
                "group_id": 23,
                "parent_id": null,
                "short": null,
                "name": "Landfill with limited control measures",
                "selectable": 1,
                "order": null,
                "pivot": {
                    "profile_id": 1,
                    "attribute_id": 511
                }
            },
            {
                "id": 519,
                "external_id": 4,
                "group_id": 24,
                "parent_id": null,
                "short": null,
                "name": "Acetate",
                "selectable": 1,
                "order": null,
                "pivot": {
                    "profile_id": 1,
                    "attribute_id": 519
                }
            }
        ]
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/{report_id}/facility-information

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Store

requires authentication

Get facility information

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/facility-information" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"complete\": true,
    \"guideline_version\": 459,
    \"industry_type\": 463,
    \"facility_type\": [],
    \"discharge_type\": 501,
    \"above_15m\": 505,
    \"has_sludge\": 506,
    \"disposal_pathway\": 513,
    \"fiber_type\": 518
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/facility-information"
);

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

let body = {
    "complete": true,
    "guideline_version": 459,
    "industry_type": 463,
    "facility_type": [],
    "discharge_type": 501,
    "above_15m": 505,
    "has_sludge": 506,
    "disposal_pathway": 513,
    "fiber_type": 518
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/{report_id}/facility-information

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Body Parameters

complete   boolean  optional    

Example: true

guideline_version   integer     

Example: 459

Must be one of:
  • 443
  • 444
  • 445
  • 446
  • 447
  • 448
  • 449
  • 450
  • 451
  • 452
  • 453
  • 454
  • 455
  • 456
  • 457
  • 458
  • 459
  • 460
industry_type   integer     

Example: 463

Must be one of:
  • 461
  • 462
  • 463
  • 464
facility_type   object     
Must be one of:
  • 465
  • 466
  • 467
  • 468
  • 469
  • 470
  • 471
  • 472
  • 473
  • 474
  • 475
  • 476
  • 477
  • 478
  • 479
  • 480
  • 481
  • 482
  • 483
  • 484
  • 485
  • 486
  • 487
  • 488
  • 489
  • 490
  • 491
  • 492
  • 493
  • 494
  • 495
  • 496
  • 497
  • 498
discharge_type   integer     

Example: 501

Must be one of:
  • 499
  • 500
  • 501
  • 502
  • 503
above_15m   integer     

Example: 505

Must be one of:
  • 504
  • 505
has_sludge   integer     

Example: 506

Must be one of:
  • 506
  • 507
disposal_pathway   integer  optional    

Example: 513

Must be one of:
  • 508
  • 509
  • 510
  • 511
  • 512
  • 513
  • 514
  • 515
fiber_type   integer  optional    

Example: 518

Must be one of:
  • 516
  • 517
  • 518
  • 519
  • 520
  • 521
  • 522

Clearstream Requests

Index

requires authentication

Get assigned laboratory clearstream requests.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests?per_page=2&page=1" \
    --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/organisation/1/wastewater/reporting/laboratory-requests"
);

const params = {
    "per_page": "2",
    "page": "1",
};
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,
            "report_id": 29115,
            "laboratory_id": 19686,
            "reporting_cycle": "2026-2",
            "location": "NL",
            "status": "CLOSED",
            "upload_method": "manual",
            "sampling_completed_at": "2026-05-15T11:39:25.000000Z",
            "testing_started_at": "2026-05-15 11:39:32",
            "testing_completed_at": "2026-05-15T11:40:52.000000Z",
            "closed_at": null,
            "accepted_at": "2026-05-15 11:39:04",
            "rejected_at": null,
            "accepted_by_supplier_at": "2026-05-15 11:42:12",
            "rejected_by_supplier_at": null,
            "rejection_reason": null,
            "rejection_reason_by_supplier": null,
            "supplier_rejection_additional_info": null,
            "created_at": "2026-05-15T11:38:36.000000Z",
            "updated_at": "2026-05-15T11:42:12.000000Z"
        },
        {
            "id": 1,
            "report_id": 29115,
            "laboratory_id": 19686,
            "reporting_cycle": "2026-2",
            "location": "NL",
            "status": "CLOSED",
            "upload_method": "manual",
            "sampling_completed_at": "2026-05-15T11:39:25.000000Z",
            "testing_started_at": "2026-05-15 11:39:32",
            "testing_completed_at": "2026-05-15T11:40:52.000000Z",
            "closed_at": null,
            "accepted_at": "2026-05-15 11:39:04",
            "rejected_at": null,
            "accepted_by_supplier_at": "2026-05-15 11:42:12",
            "rejected_by_supplier_at": null,
            "rejection_reason": null,
            "rejection_reason_by_supplier": null,
            "supplier_rejection_additional_info": null,
            "created_at": "2026-05-15T11:38:36.000000Z",
            "updated_at": "2026-05-15T11:42:12.000000Z"
        }
    ],
    "links": {
        "first": "/?page=1",
        "last": null,
        "prev": null,
        "next": null
    },
    "meta": {
        "current_page": 1,
        "from": 1,
        "path": "/",
        "per_page": "100",
        "to": 2
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 100 Example: 2

page   integer  optional    

the page number to show. Example: 1

Show

requires authentication

Get details for a specific laboratory clearstream request.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1" \
    --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/organisation/1/wastewater/reporting/laboratory-requests/1"
);

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,
        "report_id": 29115,
        "laboratory_id": 19686,
        "reporting_cycle": "2026-2",
        "location": "NL",
        "status": "CLOSED",
        "upload_method": "manual",
        "sampling_completed_at": "2026-05-15T11:39:25.000000Z",
        "testing_started_at": "2026-05-15 11:39:32",
        "testing_completed_at": "2026-05-15T11:40:52.000000Z",
        "closed_at": null,
        "accepted_at": "2026-05-15 11:39:04",
        "rejected_at": null,
        "accepted_by_supplier_at": "2026-05-15 11:42:12",
        "rejected_by_supplier_at": null,
        "rejection_reason": null,
        "rejection_reason_by_supplier": null,
        "supplier_rejection_additional_info": null,
        "created_at": "2026-05-15T11:38:36.000000Z",
        "updated_at": "2026-05-15T11:42:12.000000Z",
        "report": {
            "id": 29115,
            "reference_id": "60-R4BSFHXLT9LR-A",
            "uuid": "a1c8f39f-c9ab-49d5-82b7-60820a045e11",
            "organisation_id": 74662,
            "status": "PASSED",
            "created_at": "2026-05-15T11:28:48.000000Z",
            "updated_at": "2026-05-18T09:29:45.000000Z",
            "archived_at": null,
            "last_viewed_at": "2026-05-18 09:29:45",
            "payment_completed_at": null,
            "organisation": {
                "id": 74662,
                "maxio_customer_id": 322059,
                "reference_id": "01-FRQLY3MSKVQT-Q",
                "pdc_id": null,
                "gateway_aid": null,
                "uuid": "a066d4f6-8210-47cb-8f3d-2442d7f0101e",
                "type_id": 2,
                "status": "approved",
                "name": "test-Supplier Nova",
                "legal_name": "Feil Ltd",
                "address_1": "92269 Nels Turnpike",
                "address_2": "Apt. 825",
                "city": "North Krystel",
                "state": "Montana",
                "location": "TD",
                "zip": "01071-1222",
                "phone": "+16899005036",
                "email": "katheryn.bailey@sawayn.info",
                "contact_first_name": "Reyes",
                "contact_last_name": "Williamson",
                "website": "http://hegmann.com/quibusdam-ex-perferendis-voluptatem-et-aut",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": "2025-02-13 04:48:38",
                "created_at": "2025-11-20T10:40:00.000000Z",
                "updated_at": "2026-05-15T09:35:59.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": "2026-01-19 13:19:40",
                "profile_reviewed_by_user_id": 47059,
                "location_name": "Chad"
            },
            "profile": {
                "id": 1,
                "report_id": 29115,
                "version_id": 1,
                "requires_testing": 1,
                "completed_at": "2026-05-15 11:30:33",
                "created_at": "2026-05-15T11:29:20.000000Z",
                "updated_at": "2026-05-15T11:30:33.000000Z",
                "attributes": [
                    {
                        "id": 443,
                        "external_id": 1,
                        "group_id": 17,
                        "parent_id": null,
                        "short": null,
                        "name": "Wastewater 2.2",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 443
                        },
                        "group": {
                            "id": 17,
                            "name": "guideline_version",
                            "profile_type": "report_profile",
                            "service_id": null,
                            "single_select": 1,
                            "type": "integer",
                            "required": 1,
                            "items_type": null
                        }
                    },
                    {
                        "id": 461,
                        "external_id": 1,
                        "group_id": 18,
                        "parent_id": null,
                        "short": null,
                        "name": "Textile",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 461
                        },
                        "group": {
                            "id": 18,
                            "name": "industry_type",
                            "profile_type": "report_profile",
                            "service_id": null,
                            "single_select": 1,
                            "type": "integer",
                            "required": 1,
                            "items_type": null
                        }
                    },
                    {
                        "id": 465,
                        "external_id": 1,
                        "group_id": 19,
                        "parent_id": null,
                        "short": null,
                        "name": "Textile Accessories and Trims Assembler",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 465
                        },
                        "group": {
                            "id": 19,
                            "name": "facility_type",
                            "profile_type": "report_profile",
                            "service_id": null,
                            "single_select": 0,
                            "type": "array",
                            "required": 1,
                            "items_type": "integer"
                        }
                    },
                    {
                        "id": 466,
                        "external_id": 2,
                        "group_id": 19,
                        "parent_id": null,
                        "short": null,
                        "name": "Textile Apparel Assembler (CMT)",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 466
                        },
                        "group": {
                            "id": 19,
                            "name": "facility_type",
                            "profile_type": "report_profile",
                            "service_id": null,
                            "single_select": 0,
                            "type": "array",
                            "required": 1,
                            "items_type": "integer"
                        }
                    },
                    {
                        "id": 468,
                        "external_id": 4,
                        "group_id": 19,
                        "parent_id": null,
                        "short": null,
                        "name": "Textile Accessories and Trims Processor",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 468
                        },
                        "group": {
                            "id": 19,
                            "name": "facility_type",
                            "profile_type": "report_profile",
                            "service_id": null,
                            "single_select": 0,
                            "type": "array",
                            "required": 1,
                            "items_type": "integer"
                        }
                    },
                    {
                        "id": 500,
                        "external_id": 2,
                        "group_id": 20,
                        "parent_id": null,
                        "short": null,
                        "name": "Indirect with pretreatment (with sludge)",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 500
                        },
                        "group": {
                            "id": 20,
                            "name": "discharge_type",
                            "profile_type": "report_profile",
                            "service_id": null,
                            "single_select": 1,
                            "type": "integer",
                            "required": 1,
                            "items_type": null
                        }
                    },
                    {
                        "id": 505,
                        "external_id": 1,
                        "group_id": 21,
                        "parent_id": null,
                        "short": null,
                        "name": "more than or equal 15m³ per day",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 505
                        },
                        "group": {
                            "id": 21,
                            "name": "above_15m",
                            "profile_type": "report_profile",
                            "service_id": null,
                            "single_select": 1,
                            "type": "integer",
                            "required": 1,
                            "items_type": null
                        }
                    },
                    {
                        "id": 507,
                        "external_id": 1,
                        "group_id": 22,
                        "parent_id": null,
                        "short": null,
                        "name": "Yes",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 507
                        },
                        "group": {
                            "id": 22,
                            "name": "has_sludge",
                            "profile_type": "report_profile",
                            "service_id": null,
                            "single_select": 1,
                            "type": "integer",
                            "required": 1,
                            "items_type": null
                        }
                    },
                    {
                        "id": 511,
                        "external_id": 4,
                        "group_id": 23,
                        "parent_id": null,
                        "short": null,
                        "name": "Landfill with limited control measures",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 511
                        },
                        "group": {
                            "id": 23,
                            "name": "disposal_pathway",
                            "profile_type": "report_profile",
                            "service_id": null,
                            "single_select": 1,
                            "type": "integer",
                            "required": 0,
                            "items_type": null
                        }
                    },
                    {
                        "id": 519,
                        "external_id": 4,
                        "group_id": 24,
                        "parent_id": null,
                        "short": null,
                        "name": "Acetate",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 519
                        },
                        "group": {
                            "id": 24,
                            "name": "fiber_type",
                            "profile_type": "report_profile",
                            "service_id": null,
                            "single_select": 1,
                            "type": "integer",
                            "required": 0,
                            "items_type": null
                        }
                    }
                ]
            }
        }
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

Accept

requires authentication

Accept a laboratory clearstream request.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/accept" \
    --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/organisation/1/wastewater/reporting/laboratory-requests/1/accept"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/accept

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

Reject

requires authentication

Reject a laboratory clearstream request.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/reject?rejection_reason=excepturi" \
    --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/organisation/1/wastewater/reporting/laboratory-requests/1/reject"
);

const params = {
    "rejection_reason": "excepturi",
};
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: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/reject

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

Query Parameters

rejection_reason   string     

Example: excepturi

Store

requires authentication

Create a new laboratory clearstream request.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/laboratory-requests?laboratory_id=10" \
    --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/organisation/1/wastewater/reporting/1/laboratory-requests"
);

const params = {
    "laboratory_id": "10",
};
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: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Example response (200):


{
    "data": {
        "id": 1,
        "report_id": 29115,
        "laboratory_id": 19686,
        "reporting_cycle": "2026-2",
        "location": "NL",
        "status": "CLOSED",
        "upload_method": "manual",
        "sampling_completed_at": "2026-05-15T11:39:25.000000Z",
        "testing_started_at": "2026-05-15 11:39:32",
        "testing_completed_at": "2026-05-15T11:40:52.000000Z",
        "closed_at": null,
        "accepted_at": "2026-05-15 11:39:04",
        "rejected_at": null,
        "accepted_by_supplier_at": "2026-05-15 11:42:12",
        "rejected_by_supplier_at": null,
        "rejection_reason": null,
        "rejection_reason_by_supplier": null,
        "supplier_rejection_additional_info": null,
        "created_at": "2026-05-15T11:38:36.000000Z",
        "updated_at": "2026-05-15T11:42:12.000000Z",
        "report": {
            "id": 29115,
            "reference_id": "60-R4BSFHXLT9LR-A",
            "uuid": "a1c8f39f-c9ab-49d5-82b7-60820a045e11",
            "organisation_id": 74662,
            "status": "PASSED",
            "created_at": "2026-05-15T11:28:48.000000Z",
            "updated_at": "2026-05-18T09:29:45.000000Z",
            "archived_at": null,
            "last_viewed_at": "2026-05-18 09:29:45",
            "payment_completed_at": null,
            "organisation": {
                "id": 74662,
                "maxio_customer_id": 322059,
                "reference_id": "01-FRQLY3MSKVQT-Q",
                "pdc_id": null,
                "gateway_aid": null,
                "uuid": "a066d4f6-8210-47cb-8f3d-2442d7f0101e",
                "type_id": 2,
                "status": "approved",
                "name": "test-Supplier Nova",
                "legal_name": "Feil Ltd",
                "address_1": "92269 Nels Turnpike",
                "address_2": "Apt. 825",
                "city": "North Krystel",
                "state": "Montana",
                "location": "TD",
                "zip": "01071-1222",
                "phone": "+16899005036",
                "email": "katheryn.bailey@sawayn.info",
                "contact_first_name": "Reyes",
                "contact_last_name": "Williamson",
                "website": "http://hegmann.com/quibusdam-ex-perferendis-voluptatem-et-aut",
                "avatar_url": null,
                "applicant_comment": null,
                "reviewer_comment": null,
                "registration_mail_sent_at": "2025-02-13 04:48:38",
                "created_at": "2025-11-20T10:40:00.000000Z",
                "updated_at": "2026-05-15T09:35:59.000000Z",
                "reviewer_comment_category": null,
                "profile_reviewed_at": "2026-01-19 13:19:40",
                "profile_reviewed_by_user_id": 47059,
                "location_name": "Chad"
            },
            "profile": {
                "id": 1,
                "report_id": 29115,
                "version_id": 1,
                "requires_testing": 1,
                "completed_at": "2026-05-15 11:30:33",
                "created_at": "2026-05-15T11:29:20.000000Z",
                "updated_at": "2026-05-15T11:30:33.000000Z",
                "attributes": [
                    {
                        "id": 443,
                        "external_id": 1,
                        "group_id": 17,
                        "parent_id": null,
                        "short": null,
                        "name": "Wastewater 2.2",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 443
                        }
                    },
                    {
                        "id": 461,
                        "external_id": 1,
                        "group_id": 18,
                        "parent_id": null,
                        "short": null,
                        "name": "Textile",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 461
                        }
                    },
                    {
                        "id": 465,
                        "external_id": 1,
                        "group_id": 19,
                        "parent_id": null,
                        "short": null,
                        "name": "Textile Accessories and Trims Assembler",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 465
                        }
                    },
                    {
                        "id": 466,
                        "external_id": 2,
                        "group_id": 19,
                        "parent_id": null,
                        "short": null,
                        "name": "Textile Apparel Assembler (CMT)",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 466
                        }
                    },
                    {
                        "id": 468,
                        "external_id": 4,
                        "group_id": 19,
                        "parent_id": null,
                        "short": null,
                        "name": "Textile Accessories and Trims Processor",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 468
                        }
                    },
                    {
                        "id": 500,
                        "external_id": 2,
                        "group_id": 20,
                        "parent_id": null,
                        "short": null,
                        "name": "Indirect with pretreatment (with sludge)",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 500
                        }
                    },
                    {
                        "id": 505,
                        "external_id": 1,
                        "group_id": 21,
                        "parent_id": null,
                        "short": null,
                        "name": "more than or equal 15m³ per day",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 505
                        }
                    },
                    {
                        "id": 507,
                        "external_id": 1,
                        "group_id": 22,
                        "parent_id": null,
                        "short": null,
                        "name": "Yes",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 507
                        }
                    },
                    {
                        "id": 511,
                        "external_id": 4,
                        "group_id": 23,
                        "parent_id": null,
                        "short": null,
                        "name": "Landfill with limited control measures",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 511
                        }
                    },
                    {
                        "id": 519,
                        "external_id": 4,
                        "group_id": 24,
                        "parent_id": null,
                        "short": null,
                        "name": "Acetate",
                        "selectable": 1,
                        "order": null,
                        "pivot": {
                            "profile_id": 1,
                            "attribute_id": 519
                        }
                    }
                ]
            }
        }
    }
}
 

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/{report_id}/laboratory-requests

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Query Parameters

laboratory_id   integer     

The id of an existing record in the organisations table. Example: 10

Choose Upload Method

requires authentication

Allows the user to choose the upload method for the laboratory request.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/choose-upload-method" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"type\": \"api\"
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/choose-upload-method"
);

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

let body = {
    "type": "api"
};

fetch(url, {
    method: "POST",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Example response (200):


{
    "message": "Upload method successfully saved."
}
 

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/choose-upload-method

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

Body Parameters

type   string     

Example: api

Must be one of:
  • manual
  • api

Store test results

requires authentication

Store test results for a specific report

Example request:
curl --request PATCH \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/store-test-results" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: application/json" \
    --header "Accept: application/json" \
    --data "{
    \"parameters\": [
        {
            \"id\": 14,
            \"non_detected\": false
        }
    ]
}"
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/store-test-results"
);

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

let body = {
    "parameters": [
        {
            "id": 14,
            "non_detected": false
        }
    ]
};

fetch(url, {
    method: "PATCH",
    headers,
    body: JSON.stringify(body),
}).then(response => response.json());

Request      

PATCH api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/store-test-results

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

Body Parameters

parameters   object[]  optional    
id   integer     

Example: 14

value   string  optional    
method   string  optional    
non_detected   boolean  optional    

Example: false

Prefill test results

requires authentication

Prefill test results for a specific report. Only available for envs with APP_DEBUG=true

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/prefill-test-results" \
    --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/organisation/1/wastewater/reporting/laboratory-requests/1/prefill-test-results"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/prefill-test-results

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

Accept By Supplier

requires authentication

Accept a finished laboratory clearstream request from the supplier side.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/accept-by-supplier" \
    --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/organisation/1/wastewater/reporting/laboratory-requests/1/accept-by-supplier"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/accept-by-supplier

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

Reject By Supplier

requires authentication

Reject a finished laboratory clearstream request from the supplier side.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/reject-by-supplier?rejection_reason=missing_requirements&additional_details=qwikocajfweqwpu&return_to_reporting=1" \
    --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/organisation/1/wastewater/reporting/laboratory-requests/1/reject-by-supplier"
);

const params = {
    "rejection_reason": "missing_requirements",
    "additional_details": "qwikocajfweqwpu",
    "return_to_reporting": "1",
};
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: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/reject-by-supplier

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

Query Parameters

rejection_reason   string     

Example: missing_requirements

Must be one of:
  • values_are_incorrect
  • missing_requirements
  • testing_methodology_concerns
  • documentation_incomplete
  • laboratory_certification_issues
  • timeline_or_deadline_violations
  • other
additional_details   string  optional    

Must not be greater than 1000 characters. Example: qwikocajfweqwpu

return_to_reporting   boolean  optional    

Example: true

Reporting

Preview required tests

requires authentication

Get a summary of parameters for a specific report

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/preview-required-tests" \
    --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/organisation/1/wastewater/reporting/1/preview-required-tests"
);

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": [
        {
            "matrix": null,
            "name": null,
            "name_or_parent": null
        },
        {
            "matrix": null,
            "name": null,
            "name_or_parent": null
        }
    ]
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/{report_id}/preview-required-tests

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Get test results

requires authentication

Get a test result for a specific report

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/labs/test-results/1" \
    --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/organisation/1/wastewater/reporting/labs/test-results/1"
);

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,
        "report_id": 1,
        "parameters_filled": null,
        "test_date": null,
        "last_viewed_at": null,
        "created_at": "2026-05-10T02:33:51.000000Z",
        "updated_at": "2026-05-10T02:33:51.000000Z"
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/labs/test-results/{report_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

parameter parents

requires authentication

Get parameter parents for a specific report

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/labs/test-result-parameter-parents/1?per_page=2&page=1" \
    --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/organisation/1/wastewater/reporting/labs/test-result-parameter-parents/1"
);

const params = {
    "per_page": "2",
    "page": "1",
};
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,
            "guideline_id": 129,
            "test_result_id": 14569,
            "unit_id": null,
            "method_id": null,
            "resulting_limit_id": null,
            "visibility": "always",
            "measured_value": "0",
            "name": "1,2-benzenedicarboxylic acid, di-C7-11 branched and liearalkyl esters (DHNUP)",
            "matrix": "Untreated",
            "status": "passed",
            "cas_number": null,
            "alternative_value": null,
            "is_passing": 1,
            "mandatory": 0,
            "created_at": "2026-05-10T02:34:44.000000Z",
            "updated_at": "2026-05-10T02:34:44.000000Z",
            "parent_id": null,
            "data_type": null,
            "value_type": null,
            "scoring_applicable": 1,
            "non_detected": 0
        },
        {
            "id": 1,
            "guideline_id": 129,
            "test_result_id": 14569,
            "unit_id": null,
            "method_id": null,
            "resulting_limit_id": null,
            "visibility": "always",
            "measured_value": "0",
            "name": "1,2-benzenedicarboxylic acid, di-C7-11 branched and liearalkyl esters (DHNUP)",
            "matrix": "Untreated",
            "status": "passed",
            "cas_number": null,
            "alternative_value": null,
            "is_passing": 1,
            "mandatory": 0,
            "created_at": "2026-05-10T02:34:44.000000Z",
            "updated_at": "2026-05-10T02:34:44.000000Z",
            "parent_id": null,
            "data_type": null,
            "value_type": null,
            "scoring_applicable": 1,
            "non_detected": 0
        }
    ]
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/labs/test-result-parameter-parents/{report_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 2

page   integer  optional    

the page number to show. Example: 1

Get test result parameters

requires authentication

Get test result parameters for a specific test result

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/labs/test-result-parameters/1?per_page=13&group=18&page=1&search=nemo&filter%5Bmatrix%5D=cupiditate&filter%5Bparent_name%5D=corporis&filter%5Bonly_with_rca_cap%5D=ab&column=matrix&sort=name" \
    --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/organisation/1/wastewater/reporting/labs/test-result-parameters/1"
);

const params = {
    "per_page": "13",
    "group": "18",
    "page": "1",
    "search": "nemo",
    "filter[matrix]": "cupiditate",
    "filter[parent_name]": "corporis",
    "filter[only_with_rca_cap]": "ab",
    "column": "matrix",
    "sort": "name",
};
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,
            "guideline_id": 129,
            "test_result_id": 14569,
            "unit_id": null,
            "method_id": null,
            "resulting_limit_id": null,
            "visibility": "always",
            "measured_value": "0",
            "name": "1,2-benzenedicarboxylic acid, di-C7-11 branched and liearalkyl esters (DHNUP)",
            "matrix": "Untreated",
            "status": "passed",
            "cas_number": null,
            "alternative_value": null,
            "is_passing": 1,
            "mandatory": 0,
            "created_at": "2026-05-10T02:34:44.000000Z",
            "updated_at": "2026-05-10T02:34:44.000000Z",
            "parent_id": null,
            "data_type": null,
            "value_type": null,
            "scoring_applicable": 1,
            "non_detected": 0,
            "limits": [],
            "methods": [],
            "selected_method": null,
            "parent": null,
            "rca": {
                "id": 4,
                "parameter_id": 1,
                "is_resolved": false,
                "reason_for_failure": "Incorrect dosing of treatment chemicals",
                "corrective_action": "Other",
                "notes": null,
                "action_notes": null,
                "planned_resolution_date": null,
                "created_at": "2026-05-12T14:07:12.000000Z",
                "updated_at": "2026-05-12T14:07:12.000000Z"
            },
            "unit": null
        },
        {
            "id": 1,
            "guideline_id": 129,
            "test_result_id": 14569,
            "unit_id": null,
            "method_id": null,
            "resulting_limit_id": null,
            "visibility": "always",
            "measured_value": "0",
            "name": "1,2-benzenedicarboxylic acid, di-C7-11 branched and liearalkyl esters (DHNUP)",
            "matrix": "Untreated",
            "status": "passed",
            "cas_number": null,
            "alternative_value": null,
            "is_passing": 1,
            "mandatory": 0,
            "created_at": "2026-05-10T02:34:44.000000Z",
            "updated_at": "2026-05-10T02:34:44.000000Z",
            "parent_id": null,
            "data_type": null,
            "value_type": null,
            "scoring_applicable": 1,
            "non_detected": 0,
            "limits": [],
            "methods": [],
            "selected_method": null,
            "parent": null,
            "rca": {
                "id": 4,
                "parameter_id": 1,
                "is_resolved": false,
                "reason_for_failure": "Incorrect dosing of treatment chemicals",
                "corrective_action": "Other",
                "notes": null,
                "action_notes": null,
                "planned_resolution_date": null,
                "created_at": "2026-05-12T14:07:12.000000Z",
                "updated_at": "2026-05-12T14:07:12.000000Z"
            },
            "unit": null
        }
    ]
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/labs/test-result-parameters/{report_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 5 Example: 13

group   integer  optional    

Example: 18

page   integer  optional    

the page number to show. Example: 1

search   string  optional    

Search in all of these columns: name, parent.name Example: nemo

filter[matrix]   string  optional    

Filter column matrix by any accepted value. Matches part of the value. Example: cupiditate

filter[parent_name]   string  optional    

Filter column parent_name by any accepted value. Matches part of the value. Example: corporis

filter[selectedMethod.method]   string  optional    

Filter column selectedMethod.method by any accepted value. Matches part of the value. Example: laborum

filter[only_with_rca_cap]   string  optional    

Filter column only_with_rca_cap by any accepted value. Matches part of the value. Example: ab

column   string  optional    

get a distinct list of filterable values for any of the columns: matrix. Example: matrix

sort   string  optional    

sort by any accepted column: name, parent_name. prefix a "-" before the column name to sort in descending order Example: name

Export test result parameters

requires authentication

Esports the test result parameters for a specific report

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/labs/test-results/1/export" \
    --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/organisation/1/wastewater/reporting/labs/test-results/1/export"
);

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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 73
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/labs/test-results/{report_id}/export

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Index

requires authentication

Get all wastewater reports for an organisation

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reports?per_page=20&page=1" \
    --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/organisation/1/wastewater/reports"
);

const params = {
    "per_page": "20",
    "page": "1",
};
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,
            "reference_id": "TR543HN21",
            "uuid": "a1be2564-03c3-42fe-a0e2-f7088f4dd90b",
            "organisation_id": 11605,
            "status": "PASSED",
            "created_at": "2022-10-13T11:42:54.000000Z",
            "updated_at": "2022-10-13T11:45:27.000000Z",
            "archived_at": null,
            "last_viewed_at": "2026-05-10 02:33:51",
            "payment_completed_at": null
        },
        {
            "id": 1,
            "reference_id": "TR543HN21",
            "uuid": "a1be2564-03c3-42fe-a0e2-f7088f4dd90b",
            "organisation_id": 11605,
            "status": "PASSED",
            "created_at": "2022-10-13T11:42:54.000000Z",
            "updated_at": "2022-10-13T11:45:27.000000Z",
            "archived_at": null,
            "last_viewed_at": "2026-05-10 02:33:51",
            "payment_completed_at": 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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 50,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reports

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Query Parameters

per_page   integer  optional    

Number of items to show per page. Defaults to 50 Example: 20

page   integer  optional    

the page number to show. Example: 1

Reporting Progress

requires authentication

Get information on the progress of the currently running wastewater reporting.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/progress/1" \
    --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/organisation/1/wastewater/reporting/progress/1"
);

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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 69
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/progress/{report?}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report   integer  optional    

Example: 1

Start Reporting

requires authentication

Start the wastewater reporting process.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/start-reporting" \
    --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/organisation/1/wastewater/reporting/start-reporting"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Example response (400, Wastewater reporting has been started.):



 

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/start-reporting

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Restart Cycle

requires authentication

Restart a cycle

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/restart-cycle" \
    --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/organisation/1/wastewater/reporting/restart-cycle"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/restart-cycle

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

Reporting Progress

requires authentication

Get information on the progress of the currently running wastewater reporting.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/complete-payment" \
    --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/organisation/1/wastewater/reporting/1/complete-payment"
);

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


fetch(url, {
    method: "POST",
    headers,
}).then(response => response.json());

Example response (200):


{
    "message": "OK"
}
 

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/{report_id}/complete-payment

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Details

requires authentication

Get details for report

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/details/1" \
    --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/organisation/1/wastewater/reporting/details/1"
);

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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 68
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/details/{report_id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Sampling Information

Show

requires authentication

Show the sampling information.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/sampling-information/1" \
    --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/organisation/1/wastewater/reporting/laboratory-requests/1/sampling-information/1"
);

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,
        "lab_request_id": 1,
        "effluent_discharge_method_id": 500,
        "project_number": "786786789",
        "wastewater_type": "Industrial Wastewater mixed with Domestic Wastewater",
        "industrial_wastewater_volume_more_than_15qm": 0,
        "created_at": "2026-05-15T11:39:25.000000Z",
        "updated_at": "2026-05-15T11:39:25.000000Z"
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/sampling-information/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

id   integer     

The ID of the sampling information. Example: 1

Store

requires authentication

Store the sampling information.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/sampling-information" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "project_number=fwocyclgyvxwzdl"\
    --form "effluent_discharge_method_id=laboriosam"\
    --form "wastewater_type=Industrial Wastewater"\
    --form "industrial_wastewater_volume_more_than_15qm="\
    --form "sample_points[][name]=qui"\
    --form "sample_points[][latitude]=5"\
    --form "sample_points[][longitude]=23"\
    --form "sample_points[][type]=untreated"\
    --form "sample_points[][discharge_to_aquatic_bodies]=1"\
    --form "sample_points[][pre_treatments][]=laboriosam"\
    --form "sample_points[][temperature_safety_risk]=1"\
    --form "sample_points[][persistent_foam_safety_risk]="\
    --form "sample_points[][major_disposal_pathway]=Offsite Incineration and Building Products Processed at <1000°C"\
    --form "sample_points[][disposal_pathway_percentage]=2"\
    --form "sample_points[][filename]=@/tmp/phpmHEdDp"     --form "sample_points[][temperature_safety_risk_file]=@/tmp/phpefphDp"     --form "sample_points[][persistent_foam_safety_risk_file]=@/tmp/phpkBjjDp" 
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/laboratory-requests/1/sampling-information"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('project_number', 'fwocyclgyvxwzdl');
body.append('effluent_discharge_method_id', 'laboriosam');
body.append('wastewater_type', 'Industrial Wastewater');
body.append('industrial_wastewater_volume_more_than_15qm', '');
body.append('sample_points[][name]', 'qui');
body.append('sample_points[][latitude]', '5');
body.append('sample_points[][longitude]', '23');
body.append('sample_points[][type]', 'untreated');
body.append('sample_points[][discharge_to_aquatic_bodies]', '1');
body.append('sample_points[][pre_treatments][]', 'laboriosam');
body.append('sample_points[][temperature_safety_risk]', '1');
body.append('sample_points[][persistent_foam_safety_risk]', '');
body.append('sample_points[][major_disposal_pathway]', 'Offsite Incineration and Building Products Processed at <1000°C');
body.append('sample_points[][disposal_pathway_percentage]', '2');
body.append('sample_points[][filename]', document.querySelector('input[name="sample_points[][filename]"]').files[0]);
body.append('sample_points[][temperature_safety_risk_file]', document.querySelector('input[name="sample_points[][temperature_safety_risk_file]"]').files[0]);
body.append('sample_points[][persistent_foam_safety_risk_file]', document.querySelector('input[name="sample_points[][persistent_foam_safety_risk_file]"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/laboratory-requests/{clearstreamRequest_id}/sampling-information

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

clearstreamRequest_id   integer     

The ID of the clearstreamRequest. Example: 1

Body Parameters

project_number   string     

Must not be greater than 255 characters. Example: fwocyclgyvxwzdl

effluent_discharge_method_id   string     

The id of an existing record in the supplier_attributes table. Example: laboriosam

wastewater_type   string     

Example: Industrial Wastewater

Must be one of:
  • Industrial Wastewater
  • Industrial Wastewater mixed with Domestic Wastewater
industrial_wastewater_volume_more_than_15qm   boolean     

Example: false

sample_points   object[]  optional    
name   string  optional    

Example: qui

latitude   number     

Must be at least -90. Must not be greater than 90. Example: 5

longitude   number     

Must be at least -180. Must not be greater than 180. Example: 23

type   string     

Example: untreated

Must be one of:
  • untreated
  • effluent
  • sludge
discharge_to_aquatic_bodies   boolean  optional    

Example: true

pre_treatments   string[]  optional    
temperature_safety_risk   boolean  optional    

Example: true

persistent_foam_safety_risk   boolean  optional    

Example: false

major_disposal_pathway   string  optional    

Example: Offsite Incineration and Building Products Processed at <1000°C

Must be one of:
  • Offsite Incineration at >1000°C
  • Landfill with Significant Control Measures
  • Building Products Processed at >1000°C
  • Landfill with Limited Control Measures
  • Offsite Incineration and Building Products Processed at <1000°C
  • Landfill with No Control Measures
  • Land Application
disposal_pathway_percentage   number  optional    

Must be at least 0. Must not be greater than 100. Example: 2

filename   file  optional    

Must be a file. Must not be greater than 5000 kilobytes. Example: /tmp/phpmHEdDp

temperature_safety_risk_file   file  optional    

Must be a file. Must not be greater than 5000 kilobytes. Example: /tmp/phpefphDp

persistent_foam_safety_risk_file   file  optional    

Must be a file. Must not be greater than 5000 kilobytes. Example: /tmp/phpkBjjDp

Root Cause Analysis

Show

requires authentication

Show details about a given RCA record

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/rca/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/organisation/1/wastewater/reporting/1/rca/4"
);

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 (403):

Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 90
x-ratelimit-remaining: 70
vary: Origin
 

{
    "message": "You need to accept the newest Terms and Service document before you can continue.",
    "data": {
        "document_id": 1,
        "document_url": "https://staging-api.vm400.consulting1x1.info/storage/terms-and-service/TaS Example.pdf",
        "organisation_id": 1
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/{report_id}/rca/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

id   integer     

The ID of the rca. Example: 4

Create

requires authentication

Create a new Wastewater Root Cause Analysis record.

Example request:
curl --request POST \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/rca" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "parameter_id=1"\
    --form "is_resolved="\
    --form "reason_for_failure=mhxraxxxfrmvhpygwpjp"\
    --form "corrective_action=xmvo"\
    --form "notes=cupiditate"\
    --form "action_notes=adipisci"\
    --form "planned_resolution_date=2026-05-21 16:14:59"\
    --form "evidence=@/tmp/phpdMeOaA" 
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/rca"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('parameter_id', '1');
body.append('is_resolved', '');
body.append('reason_for_failure', 'mhxraxxxfrmvhpygwpjp');
body.append('corrective_action', 'xmvo');
body.append('notes', 'cupiditate');
body.append('action_notes', 'adipisci');
body.append('planned_resolution_date', '2026-05-21 16:14:59');
body.append('evidence', document.querySelector('input[name="evidence"]').files[0]);

fetch(url, {
    method: "POST",
    headers,
    body,
}).then(response => response.json());

Example response (201):


{
    "data": {
        "id": 4,
        "parameter_id": 1,
        "is_resolved": false,
        "reason_for_failure": "Incorrect dosing of treatment chemicals",
        "corrective_action": "Other",
        "notes": null,
        "action_notes": null,
        "planned_resolution_date": null,
        "created_at": "2026-05-12T14:07:12.000000Z",
        "updated_at": "2026-05-12T14:07:12.000000Z",
        "evidence_file_url": null
    },
    "message": "Wastewater RCA created successfully"
}
 

Request      

POST api/organisation/{organisation_id}/wastewater/reporting/{report_id}/rca

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Body Parameters

parameter_id   integer     

The id of an existing record in the wastewater_test_result_parameters table. Example: 1

is_resolved   boolean  optional    

Example: false

reason_for_failure   string     

Must not be greater than 255 characters. Example: mhxraxxxfrmvhpygwpjp

Must be one of:
  • Non-compliant chemical used
  • Incomplete chemical inventory
  • Equipment failure or malfunction
  • Incorrect dosing of treatment chemicals
  • Overloaded treatment plant
  • Poor maintenance of ETP/WWTP
  • Insufficient operator training
  • SOP not followed
  • Inadequate monitoring or testing
  • External shock load/seasonal variation
corrective_action   string     

Must not be greater than 255 characters. Example: xmvo

Must be one of:
  • Replace with compliant chemical
  • Update and verify chemical inventory
  • Repair or upgrade equipment
  • Optimise treatment chemical dosing
  • Improve flow management/load control
  • Strengthen maintenance schedule
  • Conduct operator training/refresher
  • Enforce SOP compliance
  • Increase monitoring/testing frequency
  • Implement pre-treatment or process change
  • Other
notes   string  optional    

Example: cupiditate

action_notes   string  optional    

Example: adipisci

planned_resolution_date   string  optional    

Must be a valid date. Must be a valid date in the format Y-m-d H:i:s. Example: 2026-05-21 16:14:59

evidence   file  optional    

Must be a file. Must not be greater than 5120 kilobytes. Example: /tmp/phpdMeOaA

Update

requires authentication

Update a given RCA record

Example request:
curl --request PUT \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/rca/4" \
    --header "Authorization: Bearer {YOUR_AUTH_KEY}" \
    --header "Content-Type: multipart/form-data" \
    --header "Accept: application/json" \
    --form "parameter_id=1"\
    --form "is_resolved="\
    --form "reason_for_failure=ybuakvtqw"\
    --form "corrective_action=prkdg"\
    --form "notes=non"\
    --form "action_notes=quia"\
    --form "planned_resolution_date=2026-05-21 16:14:59"\
    --form "evidence=@/tmp/phpLDFooB" 
const url = new URL(
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/rca/4"
);

const headers = {
    "Authorization": "Bearer {YOUR_AUTH_KEY}",
    "Content-Type": "multipart/form-data",
    "Accept": "application/json",
};

const body = new FormData();
body.append('parameter_id', '1');
body.append('is_resolved', '');
body.append('reason_for_failure', 'ybuakvtqw');
body.append('corrective_action', 'prkdg');
body.append('notes', 'non');
body.append('action_notes', 'quia');
body.append('planned_resolution_date', '2026-05-21 16:14:59');
body.append('evidence', document.querySelector('input[name="evidence"]').files[0]);

fetch(url, {
    method: "PUT",
    headers,
    body,
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 4,
        "parameter_id": 1,
        "is_resolved": false,
        "reason_for_failure": "Incorrect dosing of treatment chemicals",
        "corrective_action": "Other",
        "notes": null,
        "action_notes": null,
        "planned_resolution_date": null,
        "created_at": "2026-05-12T14:07:12.000000Z",
        "updated_at": "2026-05-12T14:07:12.000000Z",
        "evidence_file_url": null
    },
    "message": "Wastewater RCA updated successfully"
}
 

Request      

PUT api/organisation/{organisation_id}/wastewater/reporting/{report_id}/rca/{id}

PATCH api/organisation/{organisation_id}/wastewater/reporting/{report_id}/rca/{id}

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: multipart/form-data

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

id   integer     

The ID of the rca. Example: 4

Body Parameters

parameter_id   integer     

The id of an existing record in the wastewater_test_result_parameters table. Example: 1

is_resolved   boolean  optional    

Example: false

reason_for_failure   string     

Must not be greater than 255 characters. Example: ybuakvtqw

Must be one of:
  • Non-compliant chemical used
  • Incomplete chemical inventory
  • Equipment failure or malfunction
  • Incorrect dosing of treatment chemicals
  • Overloaded treatment plant
  • Poor maintenance of ETP/WWTP
  • Insufficient operator training
  • SOP not followed
  • Inadequate monitoring or testing
  • External shock load/seasonal variation
corrective_action   string     

Must not be greater than 255 characters. Example: prkdg

Must be one of:
  • Replace with compliant chemical
  • Update and verify chemical inventory
  • Repair or upgrade equipment
  • Optimise treatment chemical dosing
  • Improve flow management/load control
  • Strengthen maintenance schedule
  • Conduct operator training/refresher
  • Enforce SOP compliance
  • Increase monitoring/testing frequency
  • Implement pre-treatment or process change
  • Other
notes   string  optional    

Example: non

action_notes   string  optional    

Example: quia

planned_resolution_date   string  optional    

Must be a valid date. Must be a valid date in the format Y-m-d H:i:s. Example: 2026-05-21 16:14:59

evidence   file  optional    

Must be a file. Must not be greater than 5120 kilobytes. Example: /tmp/phpLDFooB

Delete File

requires authentication

Delete the evidence file

Example request:
curl --request DELETE \
    "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/rca/4/delete-evidence-file" \
    --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/organisation/1/wastewater/reporting/1/rca/4/delete-evidence-file"
);

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


fetch(url, {
    method: "DELETE",
    headers,
}).then(response => response.json());

Example response (200):


{
    "data": {
        "id": 4,
        "parameter_id": 1,
        "is_resolved": false,
        "reason_for_failure": "Incorrect dosing of treatment chemicals",
        "corrective_action": "Other",
        "notes": null,
        "action_notes": null,
        "planned_resolution_date": null,
        "created_at": "2026-05-12T14:07:12.000000Z",
        "updated_at": "2026-05-12T14:07:12.000000Z",
        "evidence_file_url": null
    },
    "message": "Wastewater RCA evidence file deleted successfully"
}
 

Request      

DELETE api/organisation/{organisation_id}/wastewater/reporting/{report_id}/rca/{rca_id}/delete-evidence-file

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

rca_id   integer     

The ID of the rca. Example: 4

RCA Overview PDF

Generate

requires authentication

Generate the Rca Overview Pdf

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/1/rca-overview-pdf" \
    --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/organisation/1/wastewater/reporting/1/rca-overview-pdf"
);

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):


content of the pdf
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/{report_id}/rca-overview-pdf

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

Reporting Summary

Index

requires authentication

Get a summary of the reporting status of a wastewater report

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/organisation/1/wastewater/reporting/report/1/summary" \
    --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/organisation/1/wastewater/reporting/report/1/summary"
);

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": {
        "testedParameters": 10,
        "passingParameters": 8,
        "failingParameters": 2,
        "complianceRate": 80
    }
}
 

Request      

GET api/organisation/{organisation_id}/wastewater/reporting/report/{report_id}/summary

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

URL Parameters

organisation_id   integer     

The ID of the organisation. Example: 1

report_id   integer     

The ID of the report. Example: 1

ZDHC/V1

Organisations

Organisations Index

requires authentication

List all organisations.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/zdhc/v1/organisations?page=1&per_page=12&filter%5Bupdated_at%5D=%3C%3D+2026-06-01+16%3A14%3A55&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/zdhc/v1/organisations"
);

const params = {
    "page": "1",
    "per_page": "12",
    "filter[updated_at]": "<= 2026-06-01 16:14:55",
    "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": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
            "reference_id": "01-J4CGS34JUJV-Q",
            "uuid": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
            "status": "approved",
            "type": {
                "id": 2,
                "name": "Supplier"
            },
            "registration_summary": {
                "current_status": "approved",
                "current_status_start_at": null
            },
            "name": "Ping Yang Pengye Shoes Com Ltd",
            "legal_name": "Ping Yang Pengye Shoes Com Ltd",
            "address": {
                "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
                "address_2": null,
                "city": "Wenzhou",
                "state": "Zhejiang",
                "postal_code": "",
                "country": "CN",
                "location_name": "China"
            },
            "website": null,
            "primary_contact": {
                "first_name": "JIAN",
                "last_name": "Le",
                "email": "pengye@126.com",
                "phone": ""
            },
            "external_ids": {
                "ZDHC_AID": "A356IB10",
                "OS_HUB": null,
                "PDC_ID": null
            },
            "stats": {
                "connections_count": null,
                "users_count": null
            },
            "comments": {
                "applicant_comment": null,
                "review_comment": null
            },
            "reviewer_comment_category": null,
            "registration_mail_sent_at": null,
            "profile_reviewed_by_user_id": null,
            "profile_reviewed_at": null,
            "created_at": "2021-11-04T12:19:55.000000Z",
            "updated_at": "2026-05-12T14:45:25.000000Z",
            "deleted_at": null
        },
        {
            "id": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
            "reference_id": "01-J4CGS34JUJV-Q",
            "uuid": "90c7ed3c-8971-4e52-85b9-d7e4a65bfba8",
            "status": "approved",
            "type": {
                "id": 2,
                "name": "Supplier"
            },
            "registration_summary": {
                "current_status": "approved",
                "current_status_start_at": null
            },
            "name": "Ping Yang Pengye Shoes Com Ltd",
            "legal_name": "Ping Yang Pengye Shoes Com Ltd",
            "address": {
                "address_1": "浙江省温州市平阳县万全镇雪之梦(B3)18号厂房",
                "address_2": null,
                "city": "Wenzhou",
                "state": "Zhejiang",
                "postal_code": "",
                "country": "CN",
                "location_name": "China"
            },
            "website": null,
            "primary_contact": {
                "first_name": "JIAN",
                "last_name": "Le",
                "email": "pengye@126.com",
                "phone": ""
            },
            "external_ids": {
                "ZDHC_AID": "A356IB10",
                "OS_HUB": null,
                "PDC_ID": null
            },
            "stats": {
                "connections_count": null,
                "users_count": null
            },
            "comments": {
                "applicant_comment": null,
                "review_comment": null
            },
            "reviewer_comment_category": null,
            "registration_mail_sent_at": null,
            "profile_reviewed_by_user_id": null,
            "profile_reviewed_at": null,
            "created_at": "2021-11-04T12:19:55.000000Z",
            "updated_at": "2026-05-12T14:45:25.000000Z",
            "deleted_at": 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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/zdhc/v1/organisations

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 12

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: <= 2026-06-01 16:14:55

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Organisation-Users

OrganisationUsers Index

requires authentication

List all organisation-users.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/zdhc/v1/organisation-users?page=1&per_page=10&filter%5Bupdated_at%5D=%3C%3D+2026-06-09+16%3A14%3A55&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/zdhc/v1/organisation-users"
);

const params = {
    "page": "1",
    "per_page": "10",
    "filter[updated_at]": "<= 2026-06-09 16:14:55",
    "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": [
        {
            "organisation": {
                "id": "6da77b31-2663-45e1-9379-8e6737466a88",
                "reference_id": "01-CHFY7TAWBWS-B",
                "uuid": "6da77b31-2663-45e1-9379-8e6737466a88",
                "status": "approved"
            },
            "user": {
                "id": 5,
                "reference_id": "02-76N8YMAVWFR-I",
                "ulid": "01KR4RMPQWBKWZ0XYZJ2JH0CQR",
                "status": "active"
            },
            "role": "ORGANISATION_ADMIN",
            "created_at": "2026-05-08T21:42:00.000000Z",
            "updated_at": "2026-05-08T21:42:00.000000Z",
            "deleted_at": null
        },
        {
            "organisation": {
                "id": "6da77b31-2663-45e1-9379-8e6737466a88",
                "reference_id": "01-CHFY7TAWBWS-B",
                "uuid": "6da77b31-2663-45e1-9379-8e6737466a88",
                "status": "approved"
            },
            "user": {
                "id": 5,
                "reference_id": "02-76N8YMAVWFR-I",
                "ulid": "01KR4RMPQWBKWZ0XYZJ2JH0CQR",
                "status": "active"
            },
            "role": "ORGANISATION_ADMIN",
            "created_at": "2026-05-08T21:42:00.000000Z",
            "updated_at": "2026-05-08T21:42:00.000000Z",
            "deleted_at": 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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/zdhc/v1/organisation-users

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 10

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: <= 2026-06-09 16:14:55

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at

Users

Users Index

requires authentication

List all users.

Example request:
curl --request GET \
    --get "https://staging-api.vm400.consulting1x1.info/api/zdhc/v1/users?page=1&per_page=19&filter%5Bupdated_at%5D=%3C+2026-05-30+16%3A14%3A55&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/zdhc/v1/users"
);

const params = {
    "page": "1",
    "per_page": "19",
    "filter[updated_at]": "< 2026-05-30 16:14:55",
    "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,
            "reference_id": "02-PYSRAKAS6CQ-B",
            "ulid": "01KR4RMPQWBKWZ0XYZJ2JH0CQM",
            "status": "active",
            "first_name": "Amy",
            "last_name": "Huang",
            "email": "amyhuang@ecic.com.tw",
            "phone": "+886910807779",
            "locale": "en-US",
            "location": "TW",
            "location_name": "Taiwan",
            "external_ids": {
                "PDC_ID": null
            },
            "last_active_at": null,
            "email_verified_at": "2017-06-17T04:45:09.000000Z",
            "profile_reviewed_at": null,
            "created_at": "2017-06-17T04:45:09.000000Z",
            "updated_at": "2017-06-17T04:45:09.000000Z",
            "deleted_at": null
        },
        {
            "id": 1,
            "reference_id": "02-PYSRAKAS6CQ-B",
            "ulid": "01KR4RMPQWBKWZ0XYZJ2JH0CQM",
            "status": "active",
            "first_name": "Amy",
            "last_name": "Huang",
            "email": "amyhuang@ecic.com.tw",
            "phone": "+886910807779",
            "locale": "en-US",
            "location": "TW",
            "location_name": "Taiwan",
            "external_ids": {
                "PDC_ID": null
            },
            "last_active_at": null,
            "email_verified_at": "2017-06-17T04:45:09.000000Z",
            "profile_reviewed_at": null,
            "created_at": "2017-06-17T04:45:09.000000Z",
            "updated_at": "2017-06-17T04:45:09.000000Z",
            "deleted_at": 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": "&laquo; Previous",
                "active": false
            },
            {
                "url": "/?page=1",
                "label": "1",
                "active": true
            },
            {
                "url": null,
                "label": "Next &raquo;",
                "active": false
            }
        ],
        "path": "/",
        "per_page": 10,
        "to": 2,
        "total": 2
    }
}
 

Request      

GET api/zdhc/v1/users

Headers

Authorization        

Example: Bearer {YOUR_AUTH_KEY}

Content-Type        

Example: application/json

Accept        

Example: application/json

Query Parameters

page   integer  optional    

the page number to show. Example: 1

per_page   integer  optional    

Number of items to show per page. Defaults to 10 Example: 19

filter[updated_at]   datetime  optional    

Filter column updated_at by any accepted value. any operator can be used, e.g. <= < = > >=, together with a date time value (YYYY-MM-DD HH:MM:SS) Example: < 2026-05-30 16:14:55

sort   string  optional    

sort by any accepted column: updated_at. prefix a "-" before the column name to sort in descending order Example: updated_at