Files
dex-ui-vue/src/api/openapi/docs/JobControllerService.md
2025-07-05 22:32:52 +02:00

1.2 KiB

JobControllerService

All URIs are relative to http://localhost

Method HTTP request Description
apiJobsNameGet GET /api/jobs/{name} Get Deck By Name

apiJobsNameGet

string apiJobsNameGet()

Example

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

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

let name: string; // (default to undefined)

const { status, data } = await apiInstance.apiJobsNameGet(
    name
);

Parameters

Name Type Description Notes
name [string] defaults to undefined

Return type

string

Authorization

No authorization required

HTTP request headers

  • Content-Type: Not defined
  • Accept: text/plain

HTTP response details

Status code Description Response headers
200 OK -

[Back to top] [Back to API list] [Back to Model list] [Back to README]