Introduction
# Welcome to the RhinoCRM API documentation
Authenticating requests
To authenticate requests, include an Authorization header in the form "Basic {credentials}".
The value of {credentials} should be your username/id and your password, joined with a colon (:),
and then base64-encoded.
All authenticated endpoints are marked with a requires authentication badge in the documentation below.
The x-consumer header is also required for all requests.
Both the credentials and consumer header are provided by Forteis.
.Account-Agreement
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-agreement" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/account-agreement"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/account-agreement" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"usr_id\": null,
\"act_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/account-agreement"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"usr_id": null,
"act_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-agreement/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-agreement/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/account-agreement/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/account-agreement/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/account-agreement/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-agreement/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Account-Cocktails
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-cocktails" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/account-cocktails"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/account-cocktails/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-cocktails/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Account-Contact-Positions
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-contact-positions" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/account-contact-positions"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/account-contact-positions" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"cop_name\": null,
\"cop_order\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/account-contact-positions"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"cop_name": null,
"cop_order": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-contact-positions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-contact-positions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/account-contact-positions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"account_contact_positions\": null,
\"cop_name\": null,
\"cop_order\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/account-contact-positions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"account_contact_positions": null,
"cop_name": null,
"cop_order": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/account-contact-positions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-contact-positions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Account-Contacts
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-contacts" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/account-contacts"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/account-contacts" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"con_name\": null,
\"act_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/account-contacts"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"con_name": null,
"act_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-contacts/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-contacts/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/account-contacts/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"account_contacts\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/account-contacts/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"account_contacts": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
DELETE v1/account-contacts/{id}
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/account-contacts/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-contacts/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Account-Deliveries
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-deliveries" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/account-deliveries"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/account-deliveries" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"act_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/account-deliveries"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"act_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-deliveries/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-deliveries/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/account-deliveries/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"account_deliveries\": null,
\"act_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/account-deliveries/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"account_deliveries": null,
"act_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/account-deliveries/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-deliveries/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Account-Objective-History
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-objective-history" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/account-objective-history"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/account-objective-history/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-objective-history/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Account-Objectives
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-objectives" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/account-objectives"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/account-objectives" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"aob_name\": null,
\"act_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/account-objectives"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"aob_name": null,
"act_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-objectives/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-objectives/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/account-objectives/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"account_objectives\": null,
\"aob_name\": null,
\"aob_date_completed\": null,
\"act_id\": null,
\"cob_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/account-objectives/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"account_objectives": null,
"aob_name": null,
"aob_date_completed": null,
"act_id": null,
"cob_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/account-objectives/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-objectives/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Account-Territories
Delete
requires authentication
We will be deleting via account id's, if you provide account id, all of the terrirotories connected will be deleted
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/account-territories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"accounts\": null,
\"account\": [
{
\"account_id\": null
}
]
}"
const url = new URL(
"https://api.rhinocrm.io/v1/account-territories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"accounts": null,
"account": [
{
"account_id": null
}
]
};
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-territories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/account-territories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-territories/account//territory/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-territories/account//territory/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve by account
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-territories/account/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-territories/account/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve by territory
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-territories/territory/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-territories/territory/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Account-Wholesalers
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-wholesalers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/account-wholesalers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/account-wholesalers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"act_id\": null,
\"who_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/account-wholesalers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"act_id": null,
"who_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/account-wholesalers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-wholesalers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/account-wholesalers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"account_wholesalers\": null,
\"act_id\": null,
\"who_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/account-wholesalers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"account_wholesalers": null,
"act_id": null,
"who_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/account-wholesalers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/account-wholesalers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Accounts
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/accounts" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/accounts"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/accounts" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"act_name\": null,
\"usr_id\": null,
\"act_serviced\": null,
\"sta_name\": null,
\"wholesaler\": [
{
\"who_id\": null
}
]
}"
const url = new URL(
"https://api.rhinocrm.io/v1/accounts"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"act_name": null,
"usr_id": null,
"act_serviced": null,
"sta_name": null,
"wholesaler": [
{
"who_id": null
}
]
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/accounts/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/accounts/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/accounts/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"accounts\": null,
\"act_name\": null,
\"usr_id\": null,
\"act_serviced\": null,
\"sta_name\": null,
\"wholesaler\": [
{
\"who_id\": null
}
],
\"delivery\": [
{
\"adl_id\": null
}
]
}"
const url = new URL(
"https://api.rhinocrm.io/v1/accounts/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"accounts": null,
"act_name": null,
"usr_id": null,
"act_serviced": null,
"sta_name": null,
"wholesaler": [
{
"who_id": null
}
],
"delivery": [
{
"adl_id": null
}
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/accounts/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/accounts/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update multiple
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/accounts" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"upsert\": null,
\"account\": [
{
\"act_id\": null,
\"act_name\": null,
\"usr_id\": null,
\"act_serviced\": null,
\"sta_name\": null
}
]
}"
const url = new URL(
"https://api.rhinocrm.io/v1/accounts"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"upsert": null,
"account": [
{
"act_id": null,
"act_name": null,
"usr_id": null,
"act_serviced": null,
"sta_name": null
}
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/accounts-cascading-delete" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"accounts\": null,
\"account\": [
{
\"act_id\": null
}
]
}"
const url = new URL(
"https://api.rhinocrm.io/v1/accounts-cascading-delete"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"accounts": null,
"account": [
{
"act_id": null
}
]
};
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Admin-Module-Groups
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/admin-module-groups" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/admin-module-groups"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/admin-module-groups" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"admin_module_id\": null,
\"module_group_id\": null,
\"active\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/admin-module-groups"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"admin_module_id": null,
"module_group_id": null,
"active": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/admin-module-groups/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/admin-module-groups/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/admin-module-groups/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"admin_module_groups\": null,
\"admin_module_id\": null,
\"module_group_id\": null,
\"active\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/admin-module-groups/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"admin_module_groups": null,
"admin_module_id": null,
"module_group_id": null,
"active": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Admin-Modules
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/admin-modules" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/admin-modules"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/admin-modules/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/admin-modules/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/admin-modules/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"admin_modules\": null,
\"active\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/admin-modules/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"admin_modules": null,
"active": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Answers
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/answers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/answers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/answers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"answer\": null,
\"question_id\": null,
\"user_id\": null,
\"account_id\": null,
\"call_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/answers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"answer": null,
"question_id": null,
"user_id": null,
"account_id": null,
"call_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/answers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/answers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/answers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"answers\": null,
\"answer\": null,
\"question_id\": null,
\"user_id\": null,
\"account_id\": null,
\"call_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/answers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"answers": null,
"answer": null,
"question_id": null,
"user_id": null,
"account_id": null,
"call_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/answers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/answers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Areas
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/areas" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/areas"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/areas" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"are_name\": null,
\"are_short_name\": null,
\"are_order\": null,
\"sac_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/areas"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"are_name": null,
"are_short_name": null,
"are_order": null,
"sac_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/areas/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/areas/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/areas/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"areas\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/areas/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"areas": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/areas/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/areas/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Asset-Register-Types
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/asset-register-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/asset-register-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/asset-register-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"art_name\": null,
\"art_active\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/asset-register-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"art_name": null,
"art_active": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/asset-register-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/asset-register-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/asset-register-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/asset-register-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/asset-register-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/asset-register-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Asset-Register-Types-Selections
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/asset-register-type-selections" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/asset-register-type-selections"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/asset-register-type-selections" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"asg_id\": null,
\"art_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/asset-register-type-selections"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"asg_id": null,
"art_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/asset-register-type-selections/asset-register//type/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/asset-register-type-selections/asset-register//type/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve by asset
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/asset-register-type-selections/asset-register/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/asset-register-type-selections/asset-register/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve by type
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/asset-register-type-selections/type/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/asset-register-type-selections/type/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/asset-register-type-selections/asset-register//type/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"asset\": null,
\"type\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/asset-register-type-selections/asset-register//type/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"asset": null,
"type": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/asset-register-type-selections/asset-register//type/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/asset-register-type-selections/asset-register//type/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Asset-Registers
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/asset-registers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/asset-registers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/asset-registers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"asg_status\": null,
\"asg_date\": null,
\"act_id\": null,
\"pro_id\": null,
\"bnd_id\": null,
\"asg_opening_hours\": null,
\"asg_closing_hours\": null,
\"asg_address\": null,
\"con_id\": null,
\"asg_phone\": null,
\"asg_delivery\": null,
\"usr_id\": null,
\"asg_notes\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/asset-registers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"asg_status": null,
"asg_date": null,
"act_id": null,
"pro_id": null,
"bnd_id": null,
"asg_opening_hours": null,
"asg_closing_hours": null,
"asg_address": null,
"con_id": null,
"asg_phone": null,
"asg_delivery": null,
"usr_id": null,
"asg_notes": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/asset-registers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/asset-registers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/asset-registers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/asset-registers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/asset-registers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/asset-registers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Asset-Types
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/asset-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/asset-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/asset-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/asset-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Assets
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/assets" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/assets"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/assets" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"ass_name\": null,
\"ass_start_date\": null,
\"ass_end_date\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/assets"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"ass_name": null,
"ass_start_date": null,
"ass_end_date": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/assets/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/assets/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/assets/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"ass_start_date\": null,
\"ass_end_date\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/assets/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"ass_start_date": null,
"ass_end_date": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/assets/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/assets/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Banner-States
Retrieve
requires authentication
Retrieve by banner
requires authentication
Retrieve by state
requires authentication
Update
requires authentication
Delete
requires authentication
Retrieve multiple
requires authentication
Store
requires authentication
Banners
Retrieve multiple
requires authentication
Store
requires authentication
Retrieve
requires authentication
Update
requires authentication
Delete
requires authentication
Bonus-Types
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/bonus-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/bonus-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/bonus-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/bonus-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/bonus-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/bonus-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/bonus-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"bonus_types\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/bonus-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"bonus_types": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/bonus-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/bonus-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Brands
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/brands" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/brands"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/brands" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"bnd_name\": null,
\"is_active\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/brands"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"bnd_name": null,
"is_active": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/brands/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/brands/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/brands/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"brands\": null,
\"is_active\": null,
\"bnd_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/brands/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"brands": null,
"is_active": null,
"bnd_name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Call-Notes
Retrieve by account
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/call-notes/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/call-notes/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/call-notes" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/call-notes"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/call-notes" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"his_info\": null,
\"cal_id\": null,
\"his_date\": null,
\"act_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/call-notes"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"his_info": null,
"cal_id": null,
"his_date": null,
"act_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/call-notes/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/call-notes/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/call-notes/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"call_notes\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/call-notes/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"call_notes": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Call-Types
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/call-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/call-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/call-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/call-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
CallAudit
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/call-audit" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/call-audit"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/call-audit/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/call-audit/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Calls
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/calls" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/calls"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/calls" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"act_id\": null,
\"usr_id\": null,
\"cat_id\": null,
\"cal_date\": null,
\"cal_additional_detail\": null,
\"cal_position\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/calls"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"act_id": null,
"usr_id": null,
"cat_id": null,
"cal_date": null,
"cal_additional_detail": null,
"cal_position": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/calls/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/calls/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/calls/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"calls\": null,
\"act_id\": null,
\"usr_id\": null,
\"cat_id\": null,
\"cal_date\": null,
\"cal_position\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/calls/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"calls": null,
"act_id": null,
"usr_id": null,
"cat_id": null,
"cal_date": null,
"cal_position": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/calls/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/calls/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Campaign-Question-Brands
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/campaign-question-brands" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/campaign-question-brands"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/campaign-question-brands" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"marketing_campaign_question_id\": null,
\"brand_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/campaign-question-brands"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"marketing_campaign_question_id": null,
"brand_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/campaign-question-brands/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/campaign-question-brands/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/campaign-question-brands/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"campaign_question_brands\": null,
\"marketing_campaign_question_id\": null,
\"brand_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/campaign-question-brands/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"campaign_question_brands": null,
"marketing_campaign_question_id": null,
"brand_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/campaign-question-brands/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/campaign-question-brands/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Campaign-Questions
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/campaign-questions" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/campaign-questions"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/campaign-questions" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"marketing_campaign_id\": null,
\"question_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/campaign-questions"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"marketing_campaign_id": null,
"question_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/campaign-questions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/campaign-questions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/campaign-questions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"campaign_questions\": null,
\"marketing_campaign_id\": null,
\"question_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/campaign-questions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"campaign_questions": null,
"marketing_campaign_id": null,
"question_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/campaign-questions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/campaign-questions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Channels
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/channels" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/channels"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/channels" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"chn_name\": null,
\"chn_type\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/channels"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"chn_name": null,
"chn_type": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/channels/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/channels/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/channels/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"channels\": null,
\"chn_name\": null,
\"chn_type\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/channels/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"channels": null,
"chn_name": null,
"chn_type": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/channels/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/channels/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Cocktails
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/cocktails" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/cocktails"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/cocktails" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"ckt_name\": null,
\"bnd_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/cocktails"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"ckt_name": null,
"bnd_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/cocktails/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/cocktails/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/cocktails/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"cocktails\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/cocktails/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"cocktails": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/cocktails/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/cocktails/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Company-Objectives
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/company-objectives" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/company-objectives"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/company-objectives" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"sta_name\": null,
\"cob_name\": null,
\"cob_start_date\": null,
\"cob_end_date\": null,
\"cob_type\": null,
\"cob_value\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/company-objectives"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"sta_name": null,
"cob_name": null,
"cob_start_date": null,
"cob_end_date": null,
"cob_type": null,
"cob_value": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/company-objectives/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/company-objectives/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/company-objectives/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"company_objectives\": null,
\"sta_name\": null,
\"cob_name\": null,
\"cob_start_date\": null,
\"cob_end_date\": null,
\"cob_type\": null,
\"cob_value\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/company-objectives/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"company_objectives": null,
"sta_name": null,
"cob_name": null,
"cob_start_date": null,
"cob_end_date": null,
"cob_type": null,
"cob_value": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/company-objectives/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/company-objectives/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Comply-Answers
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/comply-answers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/comply-answers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/comply-answers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"response_id\": null,
\"question_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/comply-answers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"response_id": null,
"question_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/comply-answers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/comply-answers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/comply-answers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"comply_answers\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/comply-answers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"comply_answers": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/comply-answers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/comply-answers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Comply-Assignment-Targets
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/comply-assignment-targets" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/comply-assignment-targets"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/comply-assignment-targets" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"assignment_id\": null,
\"target_type\": null,
\"target_value\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/comply-assignment-targets"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"assignment_id": null,
"target_type": null,
"target_value": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/comply-assignment-targets/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/comply-assignment-targets/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/comply-assignment-targets/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"comply_assignment_targets\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/comply-assignment-targets/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"comply_assignment_targets": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/comply-assignment-targets/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/comply-assignment-targets/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Comply-Assignments
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/comply-assignments" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/comply-assignments"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/comply-assignments" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"name\": null,
\"start_date\": null,
\"end_date\": null,
\"user_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/comply-assignments"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"name": null,
"start_date": null,
"end_date": null,
"user_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/comply-assignments/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/comply-assignments/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/comply-assignments/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"comply_assignments\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/comply-assignments/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"comply_assignments": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/comply-assignments/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/comply-assignments/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Comply-Question-Options
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/comply-question-options" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/comply-question-options"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/comply-question-options" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"question_id\": null,
\"option_text\": null,
\"value\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/comply-question-options"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"question_id": null,
"option_text": null,
"value": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/comply-question-options/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/comply-question-options/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/comply-question-options/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"comply_question_options\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/comply-question-options/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"comply_question_options": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/comply-question-options/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/comply-question-options/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Comply-Questions
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/comply-questions" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/comply-questions"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/comply-questions" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"assignment_id\": null,
\"question_text\": null,
\"question_type\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/comply-questions"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"assignment_id": null,
"question_text": null,
"question_type": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/comply-questions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/comply-questions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/comply-questions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"comply_questions\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/comply-questions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"comply_questions": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/comply-questions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/comply-questions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Comply-Responses
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/comply-responses" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/comply-responses"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/comply-responses" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"assignment_id\": null,
\"user_id\": null,
\"account_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/comply-responses"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"assignment_id": null,
"user_id": null,
"account_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/comply-responses/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/comply-responses/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/comply-responses/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"comply_responses\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/comply-responses/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"comply_responses": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/comply-responses/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/comply-responses/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Cycles
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/cycles" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/cycles"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/cycles" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"name\": null,
\"weeks\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/cycles"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"name": null,
"weeks": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/cycles/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/cycles/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/cycles/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"cycles\": null,
\"name\": null,
\"weeks\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/cycles/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"cycles": null,
"name": null,
"weeks": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/cycles/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/cycles/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Data-Source-Types
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/data-source-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/data-source-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/data-source-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/data-source-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/data-source-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/data-source-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/data-source-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"data_source_types\": null,
\"name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/data-source-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"data_source_types": null,
"name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Distribution-Packaged-Audits
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/distribution-packaged-audits" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/distribution-packaged-audits"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/distribution-packaged-audits" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"dipa_start_date\": null,
\"dipa_end_date\": null,
\"dip_id\": null,
\"dip_value\": null,
\"pro_id\": null,
\"sea_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/distribution-packaged-audits"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"dipa_start_date": null,
"dipa_end_date": null,
"dip_id": null,
"dip_value": null,
"pro_id": null,
"sea_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/distribution-packaged-audits/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/distribution-packaged-audits/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/distribution-packaged-audits/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"distribution_packaged_audits\": null,
\"dip_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/distribution-packaged-audits/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"distribution_packaged_audits": null,
"dip_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Distribution-Packages
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/distribution-packages" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/distribution-packages"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/distribution-packages" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"dip_value\": null,
\"pro_id\": null,
\"sea_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/distribution-packages"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"dip_value": null,
"pro_id": null,
"sea_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/distribution-packages/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/distribution-packages/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/distribution-packages/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"distribution_packages\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/distribution-packages/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"distribution_packages": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/distribution-packages/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/distribution-packages/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Gps
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/gps" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/gps"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/gps" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"gps_latitude\": null,
\"gps_longitude\": null,
\"gps_time\": null,
\"usr_id\": null,
\"cal_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/gps"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"gps_latitude": null,
"gps_longitude": null,
"gps_time": null,
"usr_id": null,
"cal_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/gps/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/gps/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/gps/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"gps\": null,
\"gps_latitude\": null,
\"gps_longitude\": null,
\"gps_time\": null,
\"usr_id\": null,
\"cal_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/gps/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"gps": null,
"gps_latitude": null,
"gps_longitude": null,
"gps_time": null,
"usr_id": null,
"cal_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Grades
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/grades" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/grades"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/grades" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"gra_id\": null,
\"gra_standard_cycle\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/grades"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"gra_id": null,
"gra_standard_cycle": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/grades/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/grades/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/grades/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"grades\": null,
\"gra_standard_cycle\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/grades/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"grades": null,
"gra_standard_cycle": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/grades/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/grades/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Groups
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/groups" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/groups"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/groups" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/groups"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/groups/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/groups/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/groups/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"groups\": null,
\"name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/groups/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"groups": null,
"name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Marketing-Activities
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/marketing-activities" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/marketing-activities"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/marketing-activities" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"account_id\": null,
\"brand_id\": null,
\"marketing_campaign_id\": null,
\"marketing_status_id\": null,
\"start_date\": null,
\"end_date\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/marketing-activities"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"account_id": null,
"brand_id": null,
"marketing_campaign_id": null,
"marketing_status_id": null,
"start_date": null,
"end_date": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/marketing-activities/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/marketing-activities/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/marketing-activities/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"marketing-activities\": null,
\"account_id\": null,
\"brand_id\": null,
\"usr_id\": null,
\"marketing_campaign_id\": null,
\"marketing_status_id\": null,
\"start_date\": null,
\"end_date\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/marketing-activities/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"marketing-activities": null,
"account_id": null,
"brand_id": null,
"usr_id": null,
"marketing_campaign_id": null,
"marketing_status_id": null,
"start_date": null,
"end_date": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Marketing-Campaigns
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/marketing-campaigns" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/marketing-campaigns"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/marketing-campaigns" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"name\": null,
\"value\": null,
\"brand_id\": null,
\"active\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/marketing-campaigns"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"name": null,
"value": null,
"brand_id": null,
"active": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/marketing-campaigns/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/marketing-campaigns/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/marketing-campaigns/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"marketing-campaigns\": null,
\"user_id\": null,
\"name\": null,
\"brand_id\": null,
\"active\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/marketing-campaigns/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"marketing-campaigns": null,
"user_id": null,
"name": null,
"brand_id": null,
"active": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Marketing-Statuses
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/marketing-statuses" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/marketing-statuses"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/marketing-statuses" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/marketing-statuses"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/marketing-statuses/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/marketing-statuses/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/marketing-statuses/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/marketing-statuses/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/marketing-statuses/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/marketing-statuses/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Modules
Modules are specifically used for the Android app only. Please use the Admin-Modules resource for the web version.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/modules" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/modules"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/modules/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/modules/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/modules/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"modules\": null,
\"mod_activated\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/modules/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"modules": null,
"mod_activated": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
On-Trade-Segmentations
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/on-trade-segmentations" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/on-trade-segmentations"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/on-trade-segmentations" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"ots_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/on-trade-segmentations"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"ots_name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/on-trade-segmentations/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/on-trade-segmentations/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/on-trade-segmentations/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"ots_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/on-trade-segmentations/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"ots_name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/on-trade-segmentations/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/on-trade-segmentations/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
On-Trade-Segmentations-Product
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/on-trade-segmentation-products" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/on-trade-segmentation-products"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/on-trade-segmentation-products" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"ots_id\": null,
\"pro_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/on-trade-segmentation-products"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"ots_id": null,
"pro_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/on-trade-segmentation-products/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/on-trade-segmentation-products/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/on-trade-segmentation-products/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"on_trade_segmentation_products\": null,
\"ots_id\": null,
\"pro_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/on-trade-segmentation-products/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"on_trade_segmentation_products": null,
"ots_id": null,
"pro_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/on-trade-segmentation-products/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/on-trade-segmentation-products/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Order-Histories
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/order-histories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/order-histories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/order-histories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"odh_quantity\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/order-histories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"odh_quantity": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/order-histories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/order-histories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/order-histories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"order_histories\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/order-histories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"order_histories": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/order-histories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/order-histories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Ownership Groups
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/ownership-groups" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/ownership-groups"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/ownership-groups" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"osg_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/ownership-groups"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"osg_name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/ownership-groups/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/ownership-groups/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/ownership-groups/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"ownership_groups\": null,
\"osg_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/ownership-groups/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"ownership_groups": null,
"osg_name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/ownership-groups/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/ownership-groups/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Perfect-Answers
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/perfect-answers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/perfect-answers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/perfect-answers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"perfect_question_id\": null,
\"account_id\": null,
\"answer\": null,
\"usr_id\": null,
\"points\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/perfect-answers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"perfect_question_id": null,
"account_id": null,
"answer": null,
"usr_id": null,
"points": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/perfect-answers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/perfect-answers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/perfect-answers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"perfect_answers\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/perfect-answers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"perfect_answers": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/perfect-answers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/perfect-answers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Perfect-Categories
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/perfect-categories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/perfect-categories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/perfect-categories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"category\": null,
\"account_type\": null,
\"order\": null,
\"visible\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/perfect-categories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"category": null,
"account_type": null,
"order": null,
"visible": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/perfect-categories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/perfect-categories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/perfect-categories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"perfect_categories\": null,
\"category\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/perfect-categories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"perfect_categories": null,
"category": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/perfect-categories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/perfect-categories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Perfect-Questions
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/perfect-questions" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/perfect-questions"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/perfect-questions" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"question\": null,
\"perfect_category_id\": null,
\"order\": null,
\"points\": null,
\"multiple_answers_allowed\": null,
\"product_selection_allowed\": null,
\"visible\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/perfect-questions"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"question": null,
"perfect_category_id": null,
"order": null,
"points": null,
"multiple_answers_allowed": null,
"product_selection_allowed": null,
"visible": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/perfect-questions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/perfect-questions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/perfect-questions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"perfect_questions\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/perfect-questions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"perfect_questions": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/perfect-questions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/perfect-questions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Perfect-Responses
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/perfect-responses" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/perfect-responses"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/perfect-responses" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"act_id\": null,
\"saved_date\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/perfect-responses"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"act_id": null,
"saved_date": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/perfect-responses/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/perfect-responses/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/perfect-responses/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"perfect_responses\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/perfect-responses/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"perfect_responses": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/perfect-responses/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/perfect-responses/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Price-Types
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/price-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/price-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/price-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"pct_name\": null,
\"pct_order\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/price-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"pct_name": null,
"pct_order": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/price-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/price-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/price-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"price_types\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/price-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"price_types": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/price-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/price-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Product-Pricings
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/product-pricings" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/product-pricings"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/product-pricings" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"prp_price\": null,
\"pro_id\": null,
\"pct_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/product-pricings"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"prp_price": null,
"pro_id": null,
"pct_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/product-pricings/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/product-pricings/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/product-pricings/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"product_pricings\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/product-pricings/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"product_pricings": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/product-pricings/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/product-pricings/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Product-States
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/product-states" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/product-states"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/product-states" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"pro_id\": null,
\"sta_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/product-states"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"pro_id": null,
"sta_name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/product-states/product//state/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/product-states/product//state/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve by product
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/product-states/product/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/product-states/product/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve by state
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/product-states/state/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/product-states/state/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/product-states/product//state/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"pro_id\": null,
\"sta_name\": null,
\"stock\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/product-states/product//state/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"pro_id": null,
"sta_name": null,
"stock": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/product-states/product//state/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/product-states/product//state/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Product-Unit-Of-Measures
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/product-unit-of-measures" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/product-unit-of-measures"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/product-unit-of-measures" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/product-unit-of-measures"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/product-unit-of-measures/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/product-unit-of-measures/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/product-unit-of-measures/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/product-unit-of-measures/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/product-unit-of-measures/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/product-unit-of-measures/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Products
Update multiple
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/products" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"upsert\": null,
\"product\": [
{
\"pro_id\": null,
\"pro_description\": null,
\"pro_short_name\": null,
\"pro_simtac\": null,
\"bnd_id\": null,
\"siz_name\": null,
\"tap_id\": null,
\"tac_id\": null
}
]
}"
const url = new URL(
"https://api.rhinocrm.io/v1/products"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"upsert": null,
"product": [
{
"pro_id": null,
"pro_description": null,
"pro_short_name": null,
"pro_simtac": null,
"bnd_id": null,
"siz_name": null,
"tap_id": null,
"tac_id": null
}
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/products" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/products"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/products" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"pro_description\": null,
\"pro_short_name\": null,
\"pro_simtac\": null,
\"bnd_id\": null,
\"siz_name\": null,
\"tap_id\": null,
\"tac_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/products"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"pro_description": null,
"pro_short_name": null,
"pro_simtac": null,
"bnd_id": null,
"siz_name": null,
"tap_id": null,
"tac_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/products/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/products/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/products/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"products\": null,
\"bnd_id\": null,
\"siz_name\": null,
\"tap_id\": null,
\"tac_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/products/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"products": null,
"bnd_id": null,
"siz_name": null,
"tap_id": null,
"tac_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Promo
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promo" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/promo"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/promo" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"prm_id\": null,
\"act_id\": null,
\"bnd_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/promo"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"prm_id": null,
"act_id": null,
"bnd_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promo/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/promo/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/promo/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"prm_id\": null,
\"act_id\": null,
\"bnd_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/promo/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"prm_id": null,
"act_id": null,
"bnd_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Promo-Photos
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promo-photos" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/promo-photos"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/promo-photos" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"prm_id\": null,
\"usr_id\": null,
\"url\": null,
\"name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/promo-photos"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"prm_id": null,
"usr_id": null,
"url": null,
"name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promo-photos/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/promo-photos/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/promo-photos/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"prm_id\": null,
\"usr_id\": null,
\"url\": null,
\"name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/promo-photos/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"prm_id": null,
"usr_id": null,
"url": null,
"name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Promo-Selected-Type
Retrieve by promo id
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promo-selected-type/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/promo-selected-type/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promo-selected-type" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/promo-selected-type"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promo-selected-type/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/promo-selected-type/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Promotional-Activities
Retrieve by group
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promotional-activities/group/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activities/group/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promotional-activities" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activities"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/promotional-activities" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"pml_activity\": null,
\"pml_buy_start_date\": null,
\"pml_buy_end_date\": null,
\"pml_sell_start_date\": null,
\"pml_sell_end_date\": null,
\"pml_discount\": null,
\"pml_luc\": null,
\"pml_rrp\": null,
\"pml_valid\": null,
\"pml_free_form\": null,
\"pml_note\": null,
\"sta_name\": null,
\"act_id\": null,
\"ban_id\": null,
\"osg_id\": null,
\"who_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activities"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"pml_activity": null,
"pml_buy_start_date": null,
"pml_buy_end_date": null,
"pml_sell_start_date": null,
"pml_sell_end_date": null,
"pml_discount": null,
"pml_luc": null,
"pml_rrp": null,
"pml_valid": null,
"pml_free_form": null,
"pml_note": null,
"sta_name": null,
"act_id": null,
"ban_id": null,
"osg_id": null,
"who_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promotional-activities/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activities/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/promotional-activities/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"promotional_activities\": null,
\"pml_activity\": null,
\"pml_buy_start_date\": null,
\"pml_buy_end_date\": null,
\"pml_sell_start_date\": null,
\"pml_sell_end_date\": null,
\"pml_discount\": null,
\"pml_luc\": null,
\"pml_rrp\": null,
\"pml_valid\": null,
\"pml_free_form\": null,
\"pml_note\": null,
\"sta_name\": null,
\"act_id\": null,
\"ban_id\": null,
\"osg_id\": null,
\"who_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activities/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"promotional_activities": null,
"pml_activity": null,
"pml_buy_start_date": null,
"pml_buy_end_date": null,
"pml_sell_start_date": null,
"pml_sell_end_date": null,
"pml_discount": null,
"pml_luc": null,
"pml_rrp": null,
"pml_valid": null,
"pml_free_form": null,
"pml_note": null,
"sta_name": null,
"act_id": null,
"ban_id": null,
"osg_id": null,
"who_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/promotional-activities/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activities/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Promotional-Activity-Names
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promotional-activity-names" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activity-names"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/promotional-activity-names" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"pml_activity\": null,
\"acn_name\": null,
\"activity_type\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activity-names"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"pml_activity": null,
"acn_name": null,
"activity_type": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promotional-activity-names/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activity-names/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/promotional-activity-names/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"promotional_activity_names\": null,
\"acn_name\": null,
\"activity_type\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activity-names/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"promotional_activity_names": null,
"acn_name": null,
"activity_type": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/promotional-activity-names/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activity-names/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Promotional-Activity-Types
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promotional-activity-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activity-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/promotional-activity-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"type\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activity-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"type": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/promotional-activity-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activity-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/promotional-activity-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"promotional_activity_types\": null,
\"type\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activity-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"promotional_activity_types": null,
"type": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/promotional-activity-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/promotional-activity-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Questions
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/questions" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/questions"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/questions" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"question\": null,
\"premise_type\": null,
\"response_type\": null,
\"visible\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/questions"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"question": null,
"premise_type": null,
"response_type": null,
"visible": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
GET v1/questions/{id}
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/questions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/questions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/questions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"questions\": null,
\"question\": null,
\"premise_type\": null,
\"response_type\": null,
\"visible\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/questions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"questions": null,
"question": null,
"premise_type": null,
"response_type": null,
"visible": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/questions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/questions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Sales
Update multiple
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/sales" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"sale\": [
{
\"id\": null
}
]
}"
const url = new URL(
"https://api.rhinocrm.io/v1/sales"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"sale": [
{
"id": null
}
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/sales" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/sales"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/sales" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"account_id\": null,
\"product_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/sales"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"account_id": null,
"product_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/sales/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/sales/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/sales/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"sales\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/sales/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"sales": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/sales/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/sales/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Sales-Data
Update multiple
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/sales-data" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"upsert\": null,
\"sales\": [
{
\"act_id\": null,
\"pro_id\": null
}
]
}"
const url = new URL(
"https://api.rhinocrm.io/v1/sales-data"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"upsert": null,
"sales": [
{
"act_id": null,
"pro_id": null
}
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/sales-data" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/sales-data"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/sales-data" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"act_id\": null,
\"pro_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/sales-data"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"act_id": null,
"pro_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/sales-data/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/sales-data/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/sales-data/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"sales_data\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/sales-data/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"sales_data": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/sales-data/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/sales-data/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Selling-Area-Categories
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/selling-area-categories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/selling-area-categories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/selling-area-categories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"sac_name\": null,
\"sac_parent_id\": null,
\"sac_act_type\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/selling-area-categories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"sac_name": null,
"sac_parent_id": null,
"sac_act_type": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/selling-area-categories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/selling-area-categories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/selling-area-categories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"selling_area_categories\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/selling-area-categories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"selling_area_categories": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/selling-area-categories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/selling-area-categories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Selling-Areas
Retrieve by Account
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/selling-areas/account/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/selling-areas/account/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/selling-areas" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/selling-areas"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/selling-areas" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"sea_note\": null,
\"act_id\": null,
\"sea_total_tap\": null,
\"sea_area_position\": null,
\"are_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/selling-areas"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"sea_note": null,
"act_id": null,
"sea_total_tap": null,
"sea_area_position": null,
"are_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/selling-areas/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/selling-areas/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/selling-areas/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"selling_areas\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/selling-areas/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"selling_areas": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/selling-areas/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/selling-areas/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Sizes
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/sizes" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/sizes"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/sizes" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"siz_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/sizes"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"siz_name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/sizes/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/sizes/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/sizes/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"siz_name\": null,
\"sizes\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/sizes/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"siz_name": null,
"sizes": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/sizes/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/sizes/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
States
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/states" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/states"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/states" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"sta_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/states"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"sta_name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/states/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/states/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/states/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"states\": null,
\"sta_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/states/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"states": null,
"sta_name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Sub-Selection-Answers
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/sub-selection-answers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/sub-selection-answers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/sub-selection-answers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"answer_id\": null,
\"answer\": null,
\"sub_answer_type\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/sub-selection-answers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"answer_id": null,
"answer": null,
"sub_answer_type": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/sub-selection-answers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/sub-selection-answers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/sub-selection-answers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"answer_id\": null,
\"answer\": null,
\"sub_answer_type\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/sub-selection-answers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"answer_id": null,
"answer": null,
"sub_answer_type": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/sub-selection-answers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/sub-selection-answers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Tap-Categories
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/tap-categories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/tap-categories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/tap-categories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"tac_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/tap-categories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"tac_name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/tap-categories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/tap-categories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/tap-categories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"tap_categories\": null,
\"tac_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/tap-categories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"tap_categories": null,
"tac_name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/tap-categories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/tap-categories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Tap-Type
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/tap-type" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/tap-type"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/tap-type" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"name\": null,
\"tap_type_name_id\": null,
\"visible\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/tap-type"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"name": null,
"tap_type_name_id": null,
"visible": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/tap-type/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/tap-type/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/tap-type/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/tap-type/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/tap-type/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/tap-type/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Tap-Type-Selection
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/tap-type-selection" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/tap-type-selection"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/tap-type-selection" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"account_agreement_id\": null,
\"act_id\": null,
\"tap_type_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/tap-type-selection"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"account_agreement_id": null,
"act_id": null,
"tap_type_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/tap-type-selection/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/tap-type-selection/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/tap-type-selection/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/tap-type-selection/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/tap-type-selection/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/tap-type-selection/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Taps
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/taps" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/taps"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/taps" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"tap_name\": null,
\"tap_description\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/taps"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"tap_name": null,
"tap_description": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/taps/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/taps/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/taps/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"taps\": null,
\"tap_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/taps/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"taps": null,
"tap_name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/taps/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/taps/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Territories
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/territories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/territories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/territories/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/territories/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Trade-Promotion-Types
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/trade-promotion-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/trade-promotion-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/trade-promotion-types" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"pmt_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/trade-promotion-types"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"pmt_name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/trade-promotion-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/trade-promotion-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/trade-promotion-types/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"trade_promotion_types\": null,
\"pmt_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/trade-promotion-types/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"trade_promotion_types": null,
"pmt_name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Turn-In-Order-Products
Retrieve by order
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/turn-in-order-products/turn-in-order/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/turn-in-order-products/turn-in-order/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/turn-in-order-products" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/turn-in-order-products"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/turn-in-order-products" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"tip_id\": null,
\"tio_id\": null,
\"pro_id\": null,
\"tip_quantity\": null,
\"tip_sequence\": null,
\"is_bonus\": null,
\"bonus_type_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/turn-in-order-products"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"tip_id": null,
"tio_id": null,
"pro_id": null,
"tip_quantity": null,
"tip_sequence": null,
"is_bonus": null,
"bonus_type_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/turn-in-order-products/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/turn-in-order-products/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/turn-in-order-products/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"turn_in_order_products\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/turn-in-order-products/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"turn_in_order_products": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/turn-in-order-products/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/turn-in-order-products/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Turn-In-Orders
Retrieve by Exported
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/turn-in-orders/exported/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/turn-in-orders/exported/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/turn-in-orders" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/turn-in-orders"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/turn-in-orders" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"tio_id\": null,
\"act_id\": null,
\"usr_id\": null,
\"tio_date\": null,
\"tio_email_flag\": null,
\"tio_ponumber\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/turn-in-orders"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"tio_id": null,
"act_id": null,
"usr_id": null,
"tio_date": null,
"tio_email_flag": null,
"tio_ponumber": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/turn-in-orders/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/turn-in-orders/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/turn-in-orders/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"turn_in_orders\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/turn-in-orders/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"turn_in_orders": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/turn-in-orders/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/turn-in-orders/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
User-Admin-Modules
Allocate a specific admin-module to a user. This gives the user permission to access and view the admin-module
on rhino online.
See the admin-modules resource for a list of all possible modules.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/user-admin-modules" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/user-admin-modules"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/user-admin-modules" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"user_id\": null,
\"admin_module_id\": null,
\"active\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/user-admin-modules"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"user_id": null,
"admin_module_id": null,
"active": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/user-admin-modules/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/user-admin-modules/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/user-admin-modules/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"user_admin_modules\": null,
\"active\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/user-admin-modules/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"user_admin_modules": null,
"active": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/user-admin-modules/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/user-admin-modules/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
User-Modules
User-Modules are specifically used for the Android app only. Please use the User-Admin-Modules resource for the web version.
See the Modules resource for a list of all possible modules on the Android app.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/user-modules" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/user-modules"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/user-modules" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"usr_id\": null,
\"mod_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/user-modules"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"usr_id": null,
"mod_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/user-modules/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/user-modules/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/user-modules/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"user_modules\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/user-modules/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"user_modules": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/user-modules/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/user-modules/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve by User
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/user-modules/user/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/user-modules/user/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve by Module
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/user-modules/module/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/user-modules/module/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
User-Permissions
Allocate a permission level to a user, to restrict there access to all other users. This is useful when you do NOT want users to see each others calls, reports etc.
By default all users are given Territory Level permissions.
Possible values for permission_level
1 User Level. Only access there own records.
2 Territory Level. Only access records belonging to users within there own territory.
3 Admin Level. Access all records.
4 User/All Accounts Level. Dropdowns show logged in user, but can see all accounts.
5 User/State Accounts Level. Dropdowns show logged in user, but can see all accounts in there state.
6 User/Filtered Accounts Level. Dropdowns show logged in user, but can see accounts based on Permission_Filters.
7 User/Territory Accounts Level. Dropdowns show logged in user, but can see accounts in their territory.
8 Territory/Filtered Accounts Level. Dropdowns shows users in their own territory, can see accounts in their territory.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/user-permissions" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/user-permissions"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/user-permissions" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"user_id\": null,
\"permission_level\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/user-permissions"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"user_id": null,
"permission_level": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/user-permissions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/user-permissions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/user-permissions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"user_permissions\": null,
\"user_id\": null,
\"permission_level\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/user-permissions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"user_permissions": null,
"user_id": null,
"permission_level": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/user-permissions/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/user-permissions/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
User-Territories
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/user-territories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/user-territories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/user-territories" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"user_id\": null,
\"territory_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/user-territories"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"user_id": null,
"territory_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/user-territories/user//territory/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/user-territories/user//territory/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve by user
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/user-territories/user/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/user-territories/user/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve by territory
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/user-territories/territory/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/user-territories/territory/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Users
Update multiple
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/users" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"user\": [
{
\"id\": null,
\"username\": null,
\"name\": null,
\"code\": null,
\"reference_id\": null,
\"email\": null,
\"password\": null,
\"password_type\": null,
\"state\": null,
\"reportable\": null,
\"tablet_access\": null,
\"admin_access\": null
}
]
}"
const url = new URL(
"https://api.rhinocrm.io/v1/users"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"user": [
{
"id": null,
"username": null,
"name": null,
"code": null,
"reference_id": null,
"email": null,
"password": null,
"password_type": null,
"state": null,
"reportable": null,
"tablet_access": null,
"admin_access": null
}
]
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/users" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/users"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/users" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"username\": null,
\"name\": null,
\"code\": null,
\"reference_id\": null,
\"email\": null,
\"password\": null,
\"password_type\": null,
\"state\": null,
\"reportable\": null,
\"tablet_access\": null,
\"admin_access\": null,
\"isActive\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/users"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"username": null,
"name": null,
"code": null,
"reference_id": null,
"email": null,
"password": null,
"password_type": null,
"state": null,
"reportable": null,
"tablet_access": null,
"admin_access": null,
"isActive": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/users/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/users/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/users/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"username\": null,
\"name\": null,
\"code\": null,
\"reference_id\": null,
\"email\": null,
\"password\": null,
\"password_type\": null,
\"state\": null,
\"reportable\": null,
\"tablet_access\": null,
\"admin_access\": null,
\"isActive\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/users/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"username": null,
"name": null,
"code": null,
"reference_id": null,
"email": null,
"password": null,
"password_type": null,
"state": null,
"reportable": null,
"tablet_access": null,
"admin_access": null,
"isActive": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/users/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/users/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Weekly-Reports
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/weekly-reports" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/weekly-reports"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/weekly-reports" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"rep_week_ending\": null,
\"rep_submitted\": null,
\"usr_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/weekly-reports"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"rep_week_ending": null,
"rep_submitted": null,
"usr_id": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/weekly-reports/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/weekly-reports/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/weekly-reports/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"weekly_reports\": null,
\"rep_week_ending\": null,
\"rep_submitted\": null,
\"usr_id\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/weekly-reports/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"weekly_reports": null,
"rep_week_ending": null,
"rep_submitted": null,
"usr_id": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/weekly-reports/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/weekly-reports/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Wholesalers
Retrieve multiple
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/wholesalers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
const url = new URL(
"https://api.rhinocrm.io/v1/wholesalers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Store
requires authentication
Example request:
curl --request POST \
"https://api.rhinocrm.io/v1/wholesalers" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"who_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/wholesalers"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"who_name": null
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Retrieve
requires authentication
Example request:
curl --request GET \
--get "https://api.rhinocrm.io/v1/wholesalers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/wholesalers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Update
requires authentication
Example request:
curl --request PUT \
"https://api.rhinocrm.io/v1/wholesalers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>" \
--data "{
\"wholesalers\": null,
\"who_name\": null
}"
const url = new URL(
"https://api.rhinocrm.io/v1/wholesalers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
let body = {
"wholesalers": null,
"who_name": null
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.
Delete
requires authentication
Example request:
curl --request DELETE \
"https://api.rhinocrm.io/v1/wholesalers/" \
--header "Authorization: Basic <base64-encoded-value>" \
--header "Accept: application/json" \
--header "Content-Type: application/json" \
--header "x-consumer: <consumer-token>"const url = new URL(
"https://api.rhinocrm.io/v1/wholesalers/"
);
const headers = {
"Authorization": "Basic <base64-encoded-value>",
"Accept": "application/json",
"Content-Type": "application/json",
"x-consumer": "<consumer-token>",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());Received response:
Request failed with error:
Tip: Check that you're properly connected to the network.
If you're a maintainer of ths API, verify that your API is running and you've enabled CORS.
You can check the Dev Tools console for debugging information.