web_contact_create
POST /web/contact/
web_contact_create
- application/json
- application/x-www-form-urlencoded
- multipart/form-data
Request Body required
- name string required
Possible values:
<= 150 characters
- email email required
Possible values:
<= 254 characters
- message string required
Possible values:
<= 1000 characters
- recaptcha string required
Request Body required
- name string required
Possible values:
<= 150 characters
- email email required
Possible values:
<= 254 characters
- message string required
Possible values:
<= 1000 characters
- recaptcha string required
Request Body required
- name string required
Possible values:
<= 150 characters
- email email required
Possible values:
<= 254 characters
- message string required
Possible values:
<= 1000 characters
- recaptcha string required
Responses
- 201
- application/json
- Schema
- Example (from schema)
Schema
- name string required
Possible values:
<= 150 characters
- email email required
Possible values:
<= 254 characters
- message string required
Possible values:
<= 1000 characters
{
"name": "string",
"email": "user@example.com",
"message": "string"
}
Authorization
name: jwtAuthtype: httpscheme: bearerbearerFormat: JWT
Request
Request
curl / cURL
curl -L -X POST 'https://docs.kubepay.io/web/contact/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"email": "user@example.com",
"message": "string",
"recaptcha": "string"
}'
python / requests
curl -L -X POST 'https://docs.kubepay.io/web/contact/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"email": "user@example.com",
"message": "string",
"recaptcha": "string"
}'
go / native
curl -L -X POST 'https://docs.kubepay.io/web/contact/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"email": "user@example.com",
"message": "string",
"recaptcha": "string"
}'
nodejs / axios
curl -L -X POST 'https://docs.kubepay.io/web/contact/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"email": "user@example.com",
"message": "string",
"recaptcha": "string"
}'
ruby / Net::HTTP
curl -L -X POST 'https://docs.kubepay.io/web/contact/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"email": "user@example.com",
"message": "string",
"recaptcha": "string"
}'
csharp / RestSharp
curl -L -X POST 'https://docs.kubepay.io/web/contact/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"email": "user@example.com",
"message": "string",
"recaptcha": "string"
}'
php / cURL
curl -L -X POST 'https://docs.kubepay.io/web/contact/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"email": "user@example.com",
"message": "string",
"recaptcha": "string"
}'
java / OkHttp
curl -L -X POST 'https://docs.kubepay.io/web/contact/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"email": "user@example.com",
"message": "string",
"recaptcha": "string"
}'
powershell / RestMethod
curl -L -X POST 'https://docs.kubepay.io/web/contact/' \
-H 'Content-Type: application/json' \
-H 'Accept: application/json' \
-H 'Authorization: Bearer <TOKEN>' \
--data-raw '{
"name": "string",
"email": "user@example.com",
"message": "string",
"recaptcha": "string"
}'