This API is documented in OpenAPI format and is based on Petstore sample provided by swagger.io team.
新しいペットを追加します。
cookieParam required | integer <int64> クッキーパラメータ |
Accept-Language | string Default: en-AU Example: en-US 許可する言語 |
PetStore.v1.Pet pet = new PetStore.v1.Pet(); pet.setApiKey("your api key"); pet.petType = PetStore.v1.Pet.TYPE_DOG; pet.name = "Rex"; // set other fields PetStoreResponse response = pet.create(); if (response.statusCode == HttpStatusCode.Created) { // Successfully created } else { // Something wrong -- check response for errors Console.WriteLine(response.getRawResponse()); }
利用者を作成します。
作成する利用者情報
username | string >= 4 characters 氏名 |
string <email> メールアドレス | |
password | string <password> >= 8 characters /(?=.*[a-z])(?=.*[A-Z])(?=.*[0-9])/ ログインパスワード、8文字以上の英数字 |
userStatus | integer <int32> 利用者のステータス |
{- "username": "John78",
- "email": "john.smith@example.com",
- "password": "drowssaP123",
- "userStatus": 0
}