> For clean Markdown of any page, append .md to the page URL.
> For a complete documentation index, see https://docs.driver.olycab.in/llms.txt.
> For AI client integration (Claude Code, Cursor, etc.), connect to the MCP server at https://docs.driver.olycab.in/_mcp/server.

# Save Lead / Contact Metadata

GET https://driver/#get7

# Save Lead / Contact Metadata

Records incoming lead or inquiry contact information (phone number or email) and tags whether the person is an interested User (rider), Rider (driver), or Admin. Prevents duplicate contact submissions.

***

### Endpoint Overview

* **Method:** `POST`

* **Route:** `/api/v1/meta/create`

* **Authentication:** `None (Public)`

* **Content-Type:** `application/json`

***

### Request Headers

| Header         | Type     | Required | Description                |
| -------------- | -------- | -------- | -------------------------- |
| `Content-Type` | `string` | **Yes**  | Must be `application/json` |

***

### Request Body Schema

| Field       | Data Type | Required | Default | Allowed Values / Constraints | Description                                   |
| ----------- | --------- | -------- | ------- | ---------------------------- | --------------------------------------------- |
| `person_is` | `enum`    | **Yes**  | —       | `"USER""RIDER""ADMIN"`       | Role or category of the contacting individual |
| `contact`   | `string`  | **Yes**  | —       | Min length 1                 | Phone number or email address                 |

#### Example Request Body

```json
{
  "person_is": "RIDER",
  "contact": "+919876543210"
}

```

***

### Response Body Schema (`200 OK`)

| Field     | Data Type | Description                           |
| --------- | --------- | ------------------------------------- |
| `message` | `string`  | Confirmation message (`"Data Saved"`) |

***

### Response Examples

#### 1. `200 OK` — Data Saved Successfully

```json
{
  "message": "Data Saved"
}

```

#### 2. `400 Bad Request` — Contact Already Exists

Returned when the contact has already been registered in the database:

```json
{
  "message": "Contact already exist"
}

```

#### 3. `400 Bad Request` — Validation Error (Invalid Enum or Missing Fields)

```json
{
  "success": false,
  "message": "Validation failed: person_is: Invalid enum value",
  "errors": [
    {
      "field": "person_is",
      "message": "Invalid enum value. Expected 'USER' | 'RIDER' | 'ADMIN'"
    }
  ]
}

```

#### 4. `500 Internal Server Error`

```json
{
  "error": "Failed to process request"
}

```

***

### Status Codes Reference

| HTTP Status Code                | Condition                                                       |
| ------------------------------- | --------------------------------------------------------------- |
| **`200 OK`**                    | Contact metadata saved successfully.                            |
| **`400 Bad Request`**           | Input validation failure or contact already exists in database. |
| **`500 Internal Server Error`** | Server or database query error.                                 |

Reference: https://docs.driver.olycab.in/oly-driver/utils/save-lead-contact-metadata

## Authentication

- `Authorization` header (bearer token, required) — Bearer authentication of the form `Bearer <token>`, where token is your auth token.

## Examples

**SDK Code**

```python
import requests

url = "https://driver/#get7"

headers = {"Authorization": "Bearer <token>"}

response = requests.get(url, headers=headers)

print(response.json())
```

```javascript
const url = 'https://driver/#get7';
const options = {method: 'GET', headers: {Authorization: 'Bearer <token>'}};

try {
  const response = await fetch(url, options);
  const data = await response.json();
  console.log(data);
} catch (error) {
  console.error(error);
}
```

```go
package main

import (
	"fmt"
	"net/http"
	"io"
)

func main() {

	url := "https://driver/#get7"

	req, _ := http.NewRequest("GET", url, nil)

	req.Header.Add("Authorization", "Bearer <token>")

	res, _ := http.DefaultClient.Do(req)

	defer res.Body.Close()
	body, _ := io.ReadAll(res.Body)

	fmt.Println(res)
	fmt.Println(string(body))

}
```

```ruby
require 'uri'
require 'net/http'

url = URI("https://driver/#get7")

http = Net::HTTP.new(url.host, url.port)
http.use_ssl = true

request = Net::HTTP::Get.new(url)
request["Authorization"] = 'Bearer <token>'

response = http.request(request)
puts response.read_body
```

```java
import com.mashape.unirest.http.HttpResponse;
import com.mashape.unirest.http.Unirest;

HttpResponse<String> response = Unirest.get("https://driver/#get7")
  .header("Authorization", "Bearer <token>")
  .asString();
```

```php
<?php
require_once('vendor/autoload.php');

$client = new \GuzzleHttp\Client();

$response = $client->request('GET', 'https://driver/#get7', [
  'headers' => [
    'Authorization' => 'Bearer <token>',
  ],
]);

echo $response->getBody();
```

```csharp
using RestSharp;

var client = new RestClient("https://driver/#get7");
var request = new RestRequest(Method.GET);
request.AddHeader("Authorization", "Bearer <token>");
IRestResponse response = client.Execute(request);
```

```swift
import Foundation

let headers = ["Authorization": "Bearer <token>"]

let request = NSMutableURLRequest(url: NSURL(string: "https://driver/#get7")! as URL,
                                        cachePolicy: .useProtocolCachePolicy,
                                    timeoutInterval: 10.0)
request.httpMethod = "GET"
request.allHTTPHeaderFields = headers

let session = URLSession.shared
let dataTask = session.dataTask(with: request as URLRequest, completionHandler: { (data, response, error) -> Void in
  if (error != nil) {
    print(error as Any)
  } else {
    let httpResponse = response as? HTTPURLResponse
    print(httpResponse)
  }
})

dataTask.resume()
```