/services/forms/v1/forms/get
Auth
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
id |
string | No |
| Header | Type | Description | Example |
|---|---|---|---|
X-RateLimit-Limit |
integer | Maximum number of requests allowed per minute | 60 |
X-RateLimit-Remaining |
integer | Number of requests remaining in the current window | 57 |
| Field | Type | Description |
|---|---|---|
error |
boolean | |
message |
string | |
data |
mixed[] |
| Header | Type | Description | Example |
|---|---|---|---|
X-RateLimit-Limit |
integer | Maximum number of requests allowed per minute | 60 |
X-RateLimit-Remaining |
integer | Number of requests remaining in the current window | 57 |
| Field | Type | Description |
|---|---|---|
error |
boolean | |
message |
string | |
data |
object | |
data.id |
string | |
data.title |
string | |
data.submit_title |
string | |
data.redirect_after_submit |
string | |
data.notify_owner |
string | |
data.confirmation_emails |
string | |
data.owner_submission_subject |
string | |
data.owner_submission_template_type |
string | |
data.owner_submission_important |
string | |
data.owner_submission_raw_template |
string | |
data.owner_submission_text |
string | |
data.notify_user |
string | |
data.user_confirmation_emails |
string | |
data.submission_subject |
string | |
data.submission_template_type |
string | |
data.submission_important |
string | |
data.submission_text |
string | |
data.submission_raw_template |
string | |
data.webhook_enabled |
string | |
data.webhook_url |
string |
| Header | Type | Description | Example |
|---|---|---|---|
X-RateLimit-Limit |
integer | Maximum number of requests allowed per minute | 60 |
X-RateLimit-Remaining |
integer | Number of requests remaining in the current window | 57 |
| Field | Type | Description |
|---|---|---|
error |
boolean | |
message |
string | |
data |
mixed[] |
| Header | Type | Description | Example |
|---|---|---|---|
X-RateLimit-Limit |
integer | Maximum number of requests allowed per minute | 60 |
X-RateLimit-Remaining |
integer | Number of requests remaining in the current window | 57 |
| Field | Type | Description |
|---|---|---|
error |
boolean | |
message |
string |
| Header | Type | Description | Example |
|---|---|---|---|
X-RateLimit-Limit |
integer | Maximum number of requests allowed per minute | 60 |
X-RateLimit-Remaining |
integer | Number of requests remaining in the current window | 57 |
| Field | Type | Description |
|---|---|---|
error |
boolean | |
message |
string |
| Header | Type | Description | Example |
|---|---|---|---|
X-RateLimit-Limit |
integer | Maximum number of requests allowed per minute | 60 |
X-RateLimit-Remaining |
integer | Number of requests remaining in the current window | 57 |
Retry-After |
integer | Seconds until the rate limit resets | 60 |
| Field | Type | Description |
|---|---|---|
error |
boolean | |
message |
string |
curl -X POST "https://api.wemasy.nl/api/services/forms/v1/forms/get" \
-H "Authorization: Bearer YOUR_API_TOKEN" \
-H "Accept: application/json" \
-H "Content-Type: application/json" \
-d '{
"id": "string"
}'
fetch('https://api.wemasy.nl/api/services/forms/v1/forms/get', {
method: 'POST',
headers: {
'Authorization': 'Bearer YOUR_API_TOKEN',
'Accept': 'application/json',
'Content-Type': 'application/json'
},
body: JSON.stringify({
"id": "string"
})})
.then(r => r.json())
.then(data => console.log(data));
$response = Http::withToken('YOUR_API_TOKEN')
->accept('application/json')
->post('https://api.wemasy.nl/api/services/forms/v1/forms/get', {
"id": "string"
});
$data = $response->json();
import requests
headers = {
"Authorization": "Bearer YOUR_API_TOKEN",
"Accept": "application/json"
}
data = {
"id": "string"
}
r = requests.post("https://api.wemasy.nl/api/services/forms/v1/forms/get", headers=headers, json=data)
print(r.json())
{
"error": false,
"message": "string",
"data": {
"id": "string",
"title": "string",
"submit_title": "string",
"redirect_after_submit": "string",
"notify_owner": "string",
"confirmation_emails": "string",
"owner_submission_subject": "string",
"owner_submission_template_type": "string",
"owner_submission_important": "string",
"owner_submission_raw_template": "string",
"owner_submission_text": "string",
"notify_user": "string",
"user_confirmation_emails": "string",
"submission_subject": "string",
"submission_template_type": "string",
"submission_important": "string",
"submission_text": "string",
"submission_raw_template": "string",
"webhook_enabled": "string",
"webhook_url": "string"
}
}