User Create Request
Validating user contacts (phone number - email address) using One Time Password.
Create new request for a product type
POST https://api.vlenseg.com/api/BusinessRequest/Create/{typeId}
Headers
Name
Type
Description
Content-Type*
string
application/json
ApiKey*
string
API Key
Authorization*
string
Bearer Access Token `Bearer <accessToken>` that returned from login Api
Request Body
Name
Type
Description
geoLocation<object> :
{
"latitude": <decimal>,
"longitude": <decimal>
}User Current Location {latitude, longitude}
requestFieldsValues<Dictionary<string, string>>
Dictionary of KeyValue. The request key field that returned from GetProductTypeFields API. And The Value of the user input.
{
"data": {
"id": <GUID>
},
"error_code": <int>,
"error_message": <string>
}{
// Response
}Last updated