All URIs are relative to https://api.facestore.local/v1
Method | HTTP request | Description |
---|---|---|
addBrands | POST /brands | |
deleteBrandById | DELETE /brands/{id}/ | |
getBrandById | GET /brands/{id}/ | |
getBrands | GET /brands | |
updateCategoryById | PUT /brands/{id}/ | |
updateCategoryById_0 | PATCH /brands/{id}/ |
InlineResponse201 addBrands(brand)
Creates a new brand in the store.
import FacestoreApi from 'facestore_api';
let defaultClient = FacestoreApi.ApiClient.instance;
// Configure API key authorization: APIKeyHeader
let APIKeyHeader = defaultClient.authentications['APIKeyHeader'];
APIKeyHeader.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKeyHeader.apiKeyPrefix = 'Token';
let apiInstance = new FacestoreApi.BrandsApi();
let brand = new FacestoreApi.Brand(); // Brand | Brand to add to the store
apiInstance.addBrands(brand, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
brand | Brand | Brand to add to the store |
- Content-Type: application/json
- Accept: application/json
deleteBrandById(id)
Deletes a single brand based on the ID supplied
import FacestoreApi from 'facestore_api';
let defaultClient = FacestoreApi.ApiClient.instance;
// Configure API key authorization: APIKeyHeader
let APIKeyHeader = defaultClient.authentications['APIKeyHeader'];
APIKeyHeader.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKeyHeader.apiKeyPrefix = 'Token';
let apiInstance = new FacestoreApi.BrandsApi();
let id = 789; // Number | ID of brand to delete
apiInstance.deleteBrandById(id, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
});
Name | Type | Description | Notes |
---|---|---|---|
id | Number | ID of brand to delete |
null (empty response body)
- Content-Type: application/json
- Accept: application/json
InlineResponse201 getBrandById(id, opts)
Returns a brand based on a single ID ### Includes You can give the following values on includea parameter: `routes, products`
import FacestoreApi from 'facestore_api';
let defaultClient = FacestoreApi.ApiClient.instance;
// Configure API key authorization: APIKeyHeader
let APIKeyHeader = defaultClient.authentications['APIKeyHeader'];
APIKeyHeader.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKeyHeader.apiKeyPrefix = 'Token';
let apiInstance = new FacestoreApi.BrandsApi();
let id = 789; // Number | ID of brand to fetch
let opts = {
'includes': ["includes_example"], // [String] | Include associated objects within response
'limit': 56 // Number | max records to return
};
apiInstance.getBrandById(id, opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
id | Number | ID of brand to fetch | |
includes | [String] | Include associated objects within response | [optional] |
limit | Number | max records to return | [optional] |
- Content-Type: application/json
- Accept: application/json
InlineResponse200 getBrands(opts)
Returns all brands from the system that the user has access to ### Includes You can give the following values on includes parameter: `routes, products`
import FacestoreApi from 'facestore_api';
let defaultClient = FacestoreApi.ApiClient.instance;
// Configure API key authorization: APIKeyHeader
let APIKeyHeader = defaultClient.authentications['APIKeyHeader'];
APIKeyHeader.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKeyHeader.apiKeyPrefix = 'Token';
let apiInstance = new FacestoreApi.BrandsApi();
let opts = {
'includes': ["includes_example"], // [String] | Include associated objects within response
'limit': 56 // Number | max records to return
'orderBy': ["orderBy_example"] // [String] | Specify the field to be sorted, examples: - `?order_by=id|desc` - `?order_by=updated_at|desc,position|asc`
};
apiInstance.getBrands(opts, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully. Returned data: ' + data);
}
});
Name | Type | Description | Notes |
---|---|---|---|
includes | [String] | Include associated objects within response | [optional] |
limit | Number | max records to return | [optional] |
orderBy | [String] | Specify the field to be sorted, examples: - `?order_by=id | desc` - `?order_by=updated_at |
- Content-Type: application/json
- Accept: application/json
updateCategoryById(id, brand)
Update a single brand based on the ID supplied
import FacestoreApi from 'facestore_api';
let defaultClient = FacestoreApi.ApiClient.instance;
// Configure API key authorization: APIKeyHeader
let APIKeyHeader = defaultClient.authentications['APIKeyHeader'];
APIKeyHeader.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKeyHeader.apiKeyPrefix = 'Token';
let apiInstance = new FacestoreApi.BrandsApi();
let id = 789; // Number | ID of brand to update
let brand = null; // Object | Brand to update in store
apiInstance.updateCategoryById(id, brand, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
});
Name | Type | Description | Notes |
---|---|---|---|
id | Number | ID of brand to update | |
brand | Object | Brand to update in store |
null (empty response body)
- Content-Type: application/json
- Accept: application/json
updateCategoryById_0(id, brand)
Update a single brand based on the ID supplied
import FacestoreApi from 'facestore_api';
let defaultClient = FacestoreApi.ApiClient.instance;
// Configure API key authorization: APIKeyHeader
let APIKeyHeader = defaultClient.authentications['APIKeyHeader'];
APIKeyHeader.apiKey = 'YOUR API KEY';
// Uncomment the following line to set a prefix for the API key, e.g. "Token" (defaults to null)
//APIKeyHeader.apiKeyPrefix = 'Token';
let apiInstance = new FacestoreApi.BrandsApi();
let id = 789; // Number | ID of brand to update
let brand = null; // Object | Brand to update in store
apiInstance.updateCategoryById_0(id, brand, (error, data, response) => {
if (error) {
console.error(error);
} else {
console.log('API called successfully.');
}
});
Name | Type | Description | Notes |
---|---|---|---|
id | Number | ID of brand to update | |
brand | Object | Brand to update in store |
null (empty response body)
- Content-Type: application/json
- Accept: application/json