OpenAPIClient-php

This service provides endpoints for all related interactions

Installation & Usage

Requirements

PHP 7.4 and later. Should also work with PHP 8.0.

Composer

To install the bindings via Composer, add the following to composer.json:

{
  "repositories": [
    {
      "type": "vcs",
      "url": "https://github.com/GIT_USER_ID/GIT_REPO_ID.git"
    }
  ],
  "require": {
    "GIT_USER_ID/GIT_REPO_ID": "*@dev"
  }
}

Then run composer install

Manual Installation

Download the files and include autoload.php:

<?php
require_once('/path/to/OpenAPIClient-php/vendor/autoload.php');

Getting Started

Please follow the installation procedure and then run the following:

<?php
require_once(__DIR__ . '/vendor/autoload.php');




$apiInstance = new OpenAPI\Client\Api\DefaultApi(
    // If you want use custom http client, pass your client which implements `GuzzleHttp\ClientInterface`.
    // This is optional, `GuzzleHttp\Client` will be used as default.
    new GuzzleHttp\Client()
);
$id = 'id_example'; // string

try {
    $result = $apiInstance->itemsIdDelete($id);
    print_r($result);
} catch (Exception $e) {
    echo 'Exception when calling DefaultApi->itemsIdDelete: ', $e->getMessage(), PHP_EOL;
}

API Endpoints

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

Class Method HTTP request Description
DefaultApi itemsIdDelete DELETE /items/{id} Delete a todo shopping list item
ItemsApi createShoppingList POST /items Create a new todo shopping list item
ItemsApi retrieveSingleShoppingList GET /items/{id} Retrieve a single todo shopping list item by ID
ItemsApi retriveTodoList GET /items Retrieve a list of all todo shopping list items
ItemsApi updateTodoShoppingList PUT /items/{id} Update a todo shopping list item

Models

Authorization

All endpoints do not require authorization.

Tests

To run the tests, use:

composer install
vendor/bin/phpunit

Author

ikmarv@gmail.com

About this package

This PHP package is automatically generated by the OpenAPI Generator project:

  • API version: 1.0.0
  • Build package: org.openapitools.codegen.languages.PhpClientCodegen