Skip to content

Commit

Permalink
readme updated
Browse files Browse the repository at this point in the history
  • Loading branch information
suriya-mca committed Apr 29, 2024
1 parent 0051ecb commit b8a965d
Showing 1 changed file with 49 additions and 1 deletion.
50 changes: 49 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,52 @@ API to generate dynamic QR code for URL / Link, facilitating wifi authentication
- `POST /wifi_to_qr`: Generate QR code for WiFi credentials.
- `POST /contact_to_qr`: Generate QR code for contact information.
- `POST /geo_to_qr`: Generate QR code for geographic location.
- `POST /email_to_qr`: Generate QR code for an email.
- `POST /email_to_qr`: Generate QR code for an email.

### Payloads Schema

#### /url_to_qr
```json
{
"url": "string"
}
```

#### /wifi_to_qr
```json
{
"wifi_name": "string",
"wifi_password": "string"
}
```

#### /contact_to_qr
```json
{
"name": "string",
"email": "string",
"phone": "string",
"city": "string",
"org": "string",
"title": "string",
"url": "string"
}
```

#### /geo_to_qr
```json
{
"latitude": 0,
"longitude": 0
}
```

#### /email_to_qr
```json
{
"to": "string",
"subject": "string",
"body": "string",
"cc": "string"
}
```

0 comments on commit b8a965d

Please sign in to comment.