All URIs are relative to http://petstore.swagger.io/v2
Method | HTTP request | Description |
---|---|---|
createUser | POST /user | Create user |
createUsersWithArrayInput | POST /user/createWithArray | Creates list of users with given input array |
createUsersWithListInput | POST /user/createWithList | Creates list of users with given input array |
deleteUser | DELETE /user/{username} | Delete user |
getUserByName | GET /user/{username} | Get user by user name |
loginUser | GET /user/login | Logs user into the system |
logoutUser | GET /user/logout | Logs out current logged in user session |
updateUser | PUT /user/{username} | Updated user |
createUser($body)
Create user
This can only be done by the logged in user.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Appkr\PetStore\Api\UserApi();
$body = new \Appkr\PetStore\Model\User(); // \Appkr\PetStore\Model\User | Created user object
try {
$api_instance->createUser($body);
} catch (Exception $e) {
echo 'Exception when calling UserApi->createUser: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Appkr\PetStore\Model\User | Created user object |
void (empty response body)
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
createUsersWithArrayInput($body)
Creates list of users with given input array
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Appkr\PetStore\Api\UserApi();
$body = array(new \Appkr\PetStore\Model\User()); // \Appkr\PetStore\Model\User[] | List of user object
try {
$api_instance->createUsersWithArrayInput($body);
} catch (Exception $e) {
echo 'Exception when calling UserApi->createUsersWithArrayInput: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Appkr\PetStore\Model\User[] | List of user object |
void (empty response body)
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
createUsersWithListInput($body)
Creates list of users with given input array
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Appkr\PetStore\Api\UserApi();
$body = array(new \Appkr\PetStore\Model\User()); // \Appkr\PetStore\Model\User[] | List of user object
try {
$api_instance->createUsersWithListInput($body);
} catch (Exception $e) {
echo 'Exception when calling UserApi->createUsersWithListInput: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
body | \Appkr\PetStore\Model\User[] | List of user object |
void (empty response body)
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
deleteUser($username)
Delete user
This can only be done by the logged in user.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Appkr\PetStore\Api\UserApi();
$username = "username_example"; // string | The name that needs to be deleted
try {
$api_instance->deleteUser($username);
} catch (Exception $e) {
echo 'Exception when calling UserApi->deleteUser: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
username | string | The name that needs to be deleted |
void (empty response body)
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
\Appkr\PetStore\Model\User getUserByName($username)
Get user by user name
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Appkr\PetStore\Api\UserApi();
$username = "username_example"; // string | The name that needs to be fetched. Use user1 for testing.
try {
$result = $api_instance->getUserByName($username);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling UserApi->getUserByName: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
username | string | The name that needs to be fetched. Use user1 for testing. |
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
string loginUser($username, $password)
Logs user into the system
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Appkr\PetStore\Api\UserApi();
$username = "username_example"; // string | The user name for login
$password = "password_example"; // string | The password for login in clear text
try {
$result = $api_instance->loginUser($username, $password);
print_r($result);
} catch (Exception $e) {
echo 'Exception when calling UserApi->loginUser: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
username | string | The user name for login | |
password | string | The password for login in clear text |
string
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
logoutUser()
Logs out current logged in user session
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Appkr\PetStore\Api\UserApi();
try {
$api_instance->logoutUser();
} catch (Exception $e) {
echo 'Exception when calling UserApi->logoutUser: ', $e->getMessage(), PHP_EOL;
}
?>
This endpoint does not need any parameter.
void (empty response body)
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]
updateUser($username, $body)
Updated user
This can only be done by the logged in user.
<?php
require_once(__DIR__ . '/vendor/autoload.php');
$api_instance = new Appkr\PetStore\Api\UserApi();
$username = "username_example"; // string | name that need to be updated
$body = new \Appkr\PetStore\Model\User(); // \Appkr\PetStore\Model\User | Updated user object
try {
$api_instance->updateUser($username, $body);
} catch (Exception $e) {
echo 'Exception when calling UserApi->updateUser: ', $e->getMessage(), PHP_EOL;
}
?>
Name | Type | Description | Notes |
---|---|---|---|
username | string | name that need to be updated | |
body | \Appkr\PetStore\Model\User | Updated user object |
void (empty response body)
No authorization required
[Back to top] [Back to API list] [Back to Model list] [Back to README]