Skip to content

Latest commit

 

History

History
343 lines (230 loc) · 9 KB

BrandsApi.md

File metadata and controls

343 lines (230 loc) · 9 KB

FacestoreApi.BrandsApi

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

addBrands

InlineResponse201 addBrands(brand)

Creates a new brand in the store.

Example

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);
  }
});

Parameters

Name Type Description Notes
brand Brand Brand to add to the store

Return type

InlineResponse201

Authorization

APIKeyHeader

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

deleteBrandById

deleteBrandById(id)

Deletes a single brand based on the ID supplied

Example

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.');
  }
});

Parameters

Name Type Description Notes
id Number ID of brand to delete

Return type

null (empty response body)

Authorization

APIKeyHeader

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

getBrandById

InlineResponse201 getBrandById(id, opts)

Returns a brand based on a single ID ### Includes You can give the following values on includea parameter: `routes, products`

Example

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);
  }
});

Parameters

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]

Return type

InlineResponse201

Authorization

APIKeyHeader

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

getBrands

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`

Example

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);
  }
});

Parameters

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

Return type

InlineResponse200

Authorization

APIKeyHeader

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

updateCategoryById

updateCategoryById(id, brand)

Update a single brand based on the ID supplied

Example

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.');
  }
});

Parameters

Name Type Description Notes
id Number ID of brand to update
brand Object Brand to update in store

Return type

null (empty response body)

Authorization

APIKeyHeader

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json

updateCategoryById_0

updateCategoryById_0(id, brand)

Update a single brand based on the ID supplied

Example

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.');
  }
});

Parameters

Name Type Description Notes
id Number ID of brand to update
brand Object Brand to update in store

Return type

null (empty response body)

Authorization

APIKeyHeader

HTTP request headers

  • Content-Type: application/json
  • Accept: application/json