PartnerLogoApi

All URIs are relative to http://127.0.0.1:8000/api

Method HTTP request Description
partnerLogoDestroy DELETE /partner-logo/{partnerLogo} Remove the specified resource from storage
partnerLogoDownload GET /partner-logo/{partnerLogo}/download Returns the file to the caller
partnerLogoIndex GET /partner-logo Display a listing of the resource
partnerLogoMoveDown PATCH /partner-logo/{partnerLogo}/move-down Move partner logo down in display order
partnerLogoMoveUp PATCH /partner-logo/{partnerLogo}/move-up Move partner logo up in display order
partnerLogoShow GET /partner-logo/{partnerLogo} Display the specified resource
partnerLogoStore POST /partner-logo Store a newly created resource in storage
partnerLogoTightenOrdering PATCH /partner-logo/{partnerLogo}/tighten-ordering Tighten ordering for all logos of the partner
partnerLogoUpdate PATCH /partner-logo/{partnerLogo} Update the specified resource in storage
partnerLogoUpdate2 PUT /partner-logo/{partnerLogo} Update the specified resource in storage
partnerLogoView GET /partner-logo/{partnerLogo}/view Returns the logo file for direct viewing (e.g., for use in <img> src attribute)

partnerLogoDestroy

partnerLogoDestroy()

Example

import {
    PartnerLogoApi,
    Configuration
} from './api';

const configuration = new Configuration();
const apiInstance = new PartnerLogoApi(configuration);

let partnerLogo: string; //The partner logo ID (default to undefined)

const { status, data } = await apiInstance.partnerLogoDestroy(
    partnerLogo
);

Parameters

Name Type Description Notes
partnerLogo [string] The partner logo ID defaults to undefined

Return type

void (empty response body)

Authorization

http

HTTP request headers

HTTP response details

| Status code | Description | Response headers | |————-|————-|——————| |204 | No content | - | |404 | Not found | - | |401 | Unauthenticated | - |

Back to top Back to API list Back to Model list Back to README

partnerLogoDownload

object partnerLogoDownload()

Example

import {
    PartnerLogoApi,
    Configuration
} from './api';

const configuration = new Configuration();
const apiInstance = new PartnerLogoApi(configuration);

let partnerLogo: string; //The partner logo ID (default to undefined)

const { status, data } = await apiInstance.partnerLogoDownload(
    partnerLogo
);

Parameters

Name Type Description Notes
partnerLogo [string] The partner logo ID defaults to undefined

Return type

object

Authorization

http

HTTP request headers

HTTP response details

| Status code | Description | Response headers | |————-|————-|——————| |200 | | - | |404 | Not found | - | |401 | Unauthenticated | - |

Back to top Back to API list Back to Model list Back to README

partnerLogoIndex

PartnerLogoIndex200Response partnerLogoIndex()

Example

import {
    PartnerLogoApi,
    Configuration
} from './api';

const configuration = new Configuration();
const apiInstance = new PartnerLogoApi(configuration);

let include: string; //Comma-separated list of related resources to include. Valid values: `partner`. (optional) (default to undefined)
let page: number; // (optional) (default to undefined)
let perPage: number; // (optional) (default to undefined)

const { status, data } = await apiInstance.partnerLogoIndex(
    include,
    page,
    perPage
);

Parameters

Name Type Description Notes
include [string] Comma-separated list of related resources to include. Valid values: `partner`. (optional) defaults to undefined
page [number]   (optional) defaults to undefined
perPage [number]   (optional) defaults to undefined

Return type

PartnerLogoIndex200Response

Authorization

http

HTTP request headers

HTTP response details

| Status code | Description | Response headers | |————-|————-|——————| |200 | Paginated set of `PartnerLogoResource` | - | |401 | Unauthenticated | - | |422 | Validation error | - | |403 | Authorization error | - |

Back to top Back to API list Back to Model list Back to README

partnerLogoMoveDown

PartnerLogoShow200Response partnerLogoMoveDown()

Example

import {
    PartnerLogoApi,
    Configuration
} from './api';

const configuration = new Configuration();
const apiInstance = new PartnerLogoApi(configuration);

let partnerLogo: string; //The partner logo ID (default to undefined)

const { status, data } = await apiInstance.partnerLogoMoveDown(
    partnerLogo
);

Parameters

Name Type Description Notes
partnerLogo [string] The partner logo ID defaults to undefined

Return type

PartnerLogoShow200Response

Authorization

http

HTTP request headers

HTTP response details

| Status code | Description | Response headers | |————-|————-|——————| |200 | `PartnerLogoResource` | - | |404 | Not found | - | |401 | Unauthenticated | - |

Back to top Back to API list Back to Model list Back to README

partnerLogoMoveUp

PartnerLogoShow200Response partnerLogoMoveUp()

Example

import {
    PartnerLogoApi,
    Configuration
} from './api';

const configuration = new Configuration();
const apiInstance = new PartnerLogoApi(configuration);

let partnerLogo: string; //The partner logo ID (default to undefined)

const { status, data } = await apiInstance.partnerLogoMoveUp(
    partnerLogo
);

Parameters

Name Type Description Notes
partnerLogo [string] The partner logo ID defaults to undefined

Return type

PartnerLogoShow200Response

Authorization

http

HTTP request headers

HTTP response details

| Status code | Description | Response headers | |————-|————-|——————| |200 | `PartnerLogoResource` | - | |404 | Not found | - | |401 | Unauthenticated | - |

Back to top Back to API list Back to Model list Back to README

partnerLogoShow

PartnerLogoShow200Response partnerLogoShow()

Example

import {
    PartnerLogoApi,
    Configuration
} from './api';

const configuration = new Configuration();
const apiInstance = new PartnerLogoApi(configuration);

let partnerLogo: string; //The partner logo ID (default to undefined)
let include: string; //Comma-separated list of related resources to include. Valid values: `partner`. (optional) (default to undefined)

const { status, data } = await apiInstance.partnerLogoShow(
    partnerLogo,
    include
);

Parameters

Name Type Description Notes
partnerLogo [string] The partner logo ID defaults to undefined
include [string] Comma-separated list of related resources to include. Valid values: `partner`. (optional) defaults to undefined

Return type

PartnerLogoShow200Response

Authorization

http

HTTP request headers

HTTP response details

| Status code | Description | Response headers | |————-|————-|——————| |200 | `PartnerLogoResource` | - | |404 | Not found | - | |401 | Unauthenticated | - | |422 | Validation error | - | |403 | Authorization error | - |

Back to top Back to API list Back to Model list Back to README

partnerLogoStore

PartnerLogoShow200Response partnerLogoStore(storePartnerLogoRequest)

Example

import {
    PartnerLogoApi,
    Configuration,
    StorePartnerLogoRequest
} from './api';

const configuration = new Configuration();
const apiInstance = new PartnerLogoApi(configuration);

let storePartnerLogoRequest: StorePartnerLogoRequest; //

const { status, data } = await apiInstance.partnerLogoStore(
    storePartnerLogoRequest
);

Parameters

Name Type Description Notes
storePartnerLogoRequest StorePartnerLogoRequest    

Return type

PartnerLogoShow200Response

Authorization

http

HTTP request headers

HTTP response details

| Status code | Description | Response headers | |————-|————-|——————| |200 | `PartnerLogoResource` | - | |422 | Validation error | - | |401 | Unauthenticated | - | |403 | Authorization error | - |

Back to top Back to API list Back to Model list Back to README

partnerLogoTightenOrdering

CollectionImageTightenOrdering200Response partnerLogoTightenOrdering()

Example

import {
    PartnerLogoApi,
    Configuration
} from './api';

const configuration = new Configuration();
const apiInstance = new PartnerLogoApi(configuration);

let partnerLogo: string; //The partner logo ID (default to undefined)

const { status, data } = await apiInstance.partnerLogoTightenOrdering(
    partnerLogo
);

Parameters

Name Type Description Notes
partnerLogo [string] The partner logo ID defaults to undefined

Return type

CollectionImageTightenOrdering200Response

Authorization

http

HTTP request headers

HTTP response details

| Status code | Description | Response headers | |————-|————-|——————| |200 | `OperationSuccessResource` | - | |404 | Not found | - | |401 | Unauthenticated | - |

Back to top Back to API list Back to Model list Back to README

partnerLogoUpdate

PartnerLogoShow200Response partnerLogoUpdate(updatePartnerLogoRequest)

Example

import {
    PartnerLogoApi,
    Configuration,
    UpdatePartnerLogoRequest
} from './api';

const configuration = new Configuration();
const apiInstance = new PartnerLogoApi(configuration);

let partnerLogo: string; //The partner logo ID (default to undefined)
let updatePartnerLogoRequest: UpdatePartnerLogoRequest; //

const { status, data } = await apiInstance.partnerLogoUpdate(
    partnerLogo,
    updatePartnerLogoRequest
);

Parameters

Name Type Description Notes
updatePartnerLogoRequest UpdatePartnerLogoRequest    
partnerLogo [string] The partner logo ID defaults to undefined

Return type

PartnerLogoShow200Response

Authorization

http

HTTP request headers

HTTP response details

| Status code | Description | Response headers | |————-|————-|——————| |200 | `PartnerLogoResource` | - | |404 | Not found | - | |401 | Unauthenticated | - | |422 | Validation error | - | |403 | Authorization error | - |

Back to top Back to API list Back to Model list Back to README

partnerLogoUpdate2

PartnerLogoShow200Response partnerLogoUpdate2(updatePartnerLogoRequest)

Example

import {
    PartnerLogoApi,
    Configuration,
    UpdatePartnerLogoRequest
} from './api';

const configuration = new Configuration();
const apiInstance = new PartnerLogoApi(configuration);

let partnerLogo: string; //The partner logo ID (default to undefined)
let updatePartnerLogoRequest: UpdatePartnerLogoRequest; //

const { status, data } = await apiInstance.partnerLogoUpdate2(
    partnerLogo,
    updatePartnerLogoRequest
);

Parameters

Name Type Description Notes
updatePartnerLogoRequest UpdatePartnerLogoRequest    
partnerLogo [string] The partner logo ID defaults to undefined

Return type

PartnerLogoShow200Response

Authorization

http

HTTP request headers

HTTP response details

| Status code | Description | Response headers | |————-|————-|——————| |200 | `PartnerLogoResource` | - | |404 | Not found | - | |401 | Unauthenticated | - | |422 | Validation error | - | |403 | Authorization error | - |

Back to top Back to API list Back to Model list Back to README

partnerLogoView

object partnerLogoView()

Example

import {
    PartnerLogoApi,
    Configuration
} from './api';

const configuration = new Configuration();
const apiInstance = new PartnerLogoApi(configuration);

let partnerLogo: string; //The partner logo ID (default to undefined)

const { status, data } = await apiInstance.partnerLogoView(
    partnerLogo
);

Parameters

Name Type Description Notes
partnerLogo [string] The partner logo ID defaults to undefined

Return type

object

Authorization

http

HTTP request headers

HTTP response details

| Status code | Description | Response headers | |————-|————-|——————| |200 | | - | |404 | Not found | - | |401 | Unauthenticated | - |

Back to top Back to API list Back to Model list Back to README


This documentation was automatically generated from the TypeScript API client.