This commit is contained in:
Viktoria Polyakova
2026-01-25 08:57:38 +00:00
commit 4fb101c5db
7657 changed files with 497012 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
### Send contact us form
POST {{url}}/api/forms/contact-us
Content-Type: application/json
Authorization: Bearer {{token}}
{
"name": "test 10",
"phone": "+7999888776633",
"email": "test@test.com",
"comment": "some comment"
}
### Send partner form
POST {{url}}/api/forms/partner
Content-Type: application/json
Authorization: Bearer {{token}}
{
"firstName": "John",
"lastName": "Doe",
"phone": "+7999888776633",
"email": "test@test.com",
"company": "Tesla",
"country": "USA",
"website": "tesla.com",
"employees": "10000",
"comment": "some comment"
}