Pet Store
  1. Order Service
Pet Store
  • User Service
    • Add steps into the doc
    • User Service
      • Overview
      • Notice
      • Login
      • Add a new pet to the store
      • Update an existing pet
      • Deletes a pet
      • Find pet by ID
      • Finds Pets by status
      • discriminator with mapping
    • Order Service
      • Find order by id
        GET
      • Check
        GET
    • AI Model
      • Google AI Studio
    • Schemas
      • Sample Schemas
        • Pet
        • Category
        • Tag
  • Order Service
    • Get list
      GET
    • Add a list
      POST
    • Update list
      PUT
    • New Request
      GET
    • Schemas
      • List
  1. Order Service

Find order by id

Developing
GET
/v1/schema/id

Request

Body Params application/json

Examples

Responses

🟢200Success
application/json
Body

Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request GET '/v1/schema/id' \
--header 'Content-Type: application/json' \
--data-raw '{
    "payment": {
        "type": "credit_card",
        "cardNumber": "string",
        "expiryDate": "string"
    }
}'
Response Response Example
{}
Modified at 2025-09-23 07:54:23
Previous
discriminator with mapping
Next
Check
Built with