createRequestVendorIntro
Endpoint
POST /api/request-intro
Request Headers
{
"Accept": "application/json",
"Content-Type": "application/json",
"Bearer Token": "17|YROk6eOAMh8596SAONJr8KwQGzmqLXPaTBx5QdBn09989ab0"
}
Request Body
{
"email" : "[email protected]",
"vendor_id" : "5"
}
Response Body (200)
{
"message": "Request added successfully",
"data": {
"vendor_id": "5",
"email": "[email protected]",
"updated_at": "2026-02-03T13:59:41.000000Z",
"created_at": "2026-02-03T13:59:41.000000Z",
"id": 4,
"vendor": {
"id": 5,
"name": "Test vendor number 1",
"description": "Vendor description number 1",
"logo": "vendors/logos/01K8K50JVGCSA9Q176EQDA0CGQ.jpeg",
"created_at": "2025-10-27T15:36:27.000000Z",
"updated_at": "2025-12-05T07:52:34.000000Z",
"alias_name": "test_vend_1",
"outer_picture": "01KBPQVT6RVGPDKRHT55N7N6G3.jpg",
"outer_description": "Vendor number 1 outer description",
"promoted": true,
"content": "<p>Some test content would be in here. </p>",
"public_view": true
}
}
}
Response Body (401)
{
"message": "Unauthenticated."
}
Response Body (422)
{
"message": "The selected vendor id is invalid.",
"errors": {
"vendor_id": [
"The selected vendor id is invalid."
]
}
}
Response Body (422)
{
"message": "The email field must be a valid email address. (and 1 more error)",
"errors": {
"email": [
"The email field must be a valid email address."
],
"vendor_id": [
"The selected vendor id is invalid."
]
}
}
03 February 2026