- Activities
- Timestamps
- Flecto AI
- Services
- Integrations - Email Validate
- Integrations - Google Calendar
- Me
- Me - Addresses
- Me - Identities
- Me - Subscription
- Me - Tax Profiles
- Me - Verification
- User - Bookings Settings
- Business Categories
- SaaS - Bookings
- SaaS - Booking Availability
- SaaS - Booking Customers
- SaaS - Booking Documents
- SaaS - Booking Items
- SaaS - Booking Payments
- SaaS - Booking Status
- SaaS - Bundles
- SaaS - Bundles Items
- SaaS - Chargebee
- SaaS - Customers
- SaaS - Customer Addresses
- SaaS - Inquiry Customers
- SaaS - Inquiry Status
- SaaS - Items
- SaaS - Item Photos
- SaaS - Links
- SaaS - Inquiries
- SaaS - Insurances
- SaaS - Products
- Store - Inquiries
- Links - Booking Documents
- Links - Bookings
- SaaS - Store
- Store
- Me - Item Categories
- Store - Item Categories
- Store - Products
- Me - Onboarding
- SaaS - Booking Services
- SaaS - Product Status
Creates an inquiry
POST
/api/stores/{store_domain}/inquiries
Store - Inquiries
Request
Path Params
store_domain
stringÂ
required
Header Params
Authorization
stringÂ
optional
Auth0-IdToken
stringÂ
optional
Accept-Language
stringÂ
optional
Body Params application/json
start_at
string <date>
optional
>= 0 characters<= 10 characters
Match pattern:
YYYY-MM-DD
end_at
string <date>
optional
>= 0 characters<= 10 characters
Match pattern:
YYYY-MM-DD
owner_id
numberÂ
optional
email
string <email>
optional
full_name
stringÂ
optional
phone_number
stringÂ
optional
flexible_dates
booleanÂ
optional
renter_message
stringÂ
optional
locale
enum<string>Â
optional
Allowed values:
enptes
Example:
en|pt|es
inquiry_items_attributes
array [object {2}]Â
optional
item_id
numberÂ
required
quantity
numberÂ
required
Example
{
"start_at": "2019-08-24",
"end_at": "2019-08-24",
"owner_id": 0,
"email": "[email protected]",
"full_name": "string",
"phone_number": "string",
"flexible_dates": true,
"renter_message": "string",
"locale": "en",
"inquiry_items_attributes": [
{
"item_id": 0,
"quantity": 0
}
]
}
Request samples
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
Request Request Example
Shell
JavaScript
Java
Swift
curl --location --request POST 'https://rnters-staging.herokuapp.com/api/stores//inquiries' \
--header 'Content-Type: application/json' \
--data-raw '{
"start_at": "2019-08-24",
"end_at": "2019-08-24",
"owner_id": 0,
"email": "[email protected]",
"full_name": "string",
"phone_number": "string",
"flexible_dates": true,
"renter_message": "string",
"locale": "en",
"inquiry_items_attributes": [
{
"item_id": 0,
"quantity": 0
}
]
}'
Responses
🟢201Created
This response does not have a body.
🟠422Parameter Error
Modified at 2025-05-28 14:14:38