Create Element
Create element within specified event.
Create element within specified event.
POST
https://environment.monterosa.cloud/api/v2/elements
Name | Type | Description |
---|---|---|
Name | Type | Description |
---|---|---|
Check below for requests and responses for different types of elements.
{
"errors": [
{
"source": {
"pointer": "/data/attributes/duration"
},
"detail": "must be greater than or equal to 0"
}
]
}
// POST /api/v2/elements
// Host: environment.monterosa.cloud
// Authorization: Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb
// Content-Type: application/vnd.api+json
{
"data": {
"type": "elements",
"relationships": {
"event": {
"data": {
"type": "events",
"id": "6396746d-5b45-42b9-a364-35ad0cceffaa"
}
}
},
"attributes": {
"content_type": "rpoll-custom",
"start_mode": "manual",
"duration": 45,
"max_votes_per_user": 1,
"min_options_per_vote": 1,
"max_options_per_vote": 1,
"custom_fields": [],
"question": {
"fields": [
{
"key": "text",
"values": {
"en": "Question Text"
}
},
{
"key": "image_url",
"values": {
"en": "https://example.com/image.jpg"
}
}
],
"options": [
{
"fields": [
{
"key": "text",
"values": {
"en": "Option Text #1"
}
},
{
"key": "image_url",
"values": {
"en": "https://example.com/image.jpg"
}
}
]
},
{
"fields": [
{
"key": "text",
"values": {
"en": "Option Text #2"
}
},
{
"key": "image_url",
"values": {
"en": "https://example.com/image.jpg"
}
}
]
}
]
}
}
}
}
// Status: 201 Created
{
"data": {
"id": "c5ba869b-ad4f-4d01-a0b6-63b6bd7f93c0",
"type": "elements",
"attributes": {
"label": "Question Text",
"offset": 0,
"duration": 45,
"content_type": "rpoll-custom",
"start_mode": "manual",
"state": "non_scheduled",
"updated_at": null,
"updated_at_iso": null,
"revoked_at": null,
"revoked_at_iso": null,
"reveal_results_mode": "vote",
"require_verified_user": false,
"include_in_latest_results_feed": false,
"certification": true,
"max_votes_per_user": 3,
"max_votes_per_option": 2,
"min_options_per_vote": 1,
"max_options_per_vote": 2,
"enmasse_id": null,
"duration_mode": "fixed",
"name": "Element",
"results_revealed_at_iso": null,
"custom_fields": [
{
"key": "text_during_poll",
"values": {
"en": "Make your decision now..."
}
},
{
"key": "text_after_poll",
"values": {
"en": "Poll closed"
}
},
{
"key": "text_after_answering",
"values": {
"en": "Thanks for answering"
}
}
],
"question": {
"label": "Question Text",
"fields": [
{
"key": "text",
"values": {
"en": "Question Text"
}
},
{
"key": "image_url",
"values": {
"en": "https://example.com/image.jpg"
}
}
],
"filter_keywords": [],
"options": [
{
"label": "Option Text #1",
"fields": [
{
"key": "text",
"values": {
"en": "Option Text #1"
}
},
{
"key": "image_url",
"values": {
"en": "https://example.com/image.jpg"
}
}
],
"filter_keywords": []
},
{
"label": "Option Text #2",
"fields": [
{
"key": "text",
"values": {
"en": "Option Text #2"
}
},
{
"key": "image_url",
"values": {
"en": "https://example.com/image.jpg"
}
}
],
"filter_keywords": []
}
]
}
},
"relationships": {
"stats": {
"data": {
"id": "c5ba869b-ad4f-4d01-a0b6-63b6bd7f93c0",
"type": "stats"
}
}
},
"links": {
"self": "https://environment.monterosa.cloud/api/v2/elements/c5ba869b-ad4f-4d01-a0b6-63b6bd7f93c0"
}
}
}
curl --request POST \
--url https://environment.monterosa.cloud/api/v2/elements \
--header 'Authorization: Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "elements",
"relationships": {
"event": {
"data": {
"type": "events",
"id": "6396746d-5b45-42b9-a364-35ad0cceffaa"
}
}
},
"attributes": {
"content_type": "rpoll-custom",
"start_mode": "manual",
"duration": 45,
"max_votes_per_user": 1,
"min_options_per_vote": 1,
"max_options_per_vote": 1,
"custom_fields": [],
"question": {
"fields": [
{
"key": "text",
"values": {
"en": "Question Text"
}
},
{
"key": "image_url",
"values": {
"en": "https://monterosa.co.uk/image.jpg"
}
}
],
"options": [
{
"fields": [
{
"key": "text",
"values": {
"en": "Option Text #1"
}
},
{
"key": "image_url",
"values": {
"en": "https://monterosa.co.uk/image.jpg"
}
}
]
},
{
"fields": [
{
"key": "text",
"values": {
"en": "Option Text #2"
}
},
{
"key": "image_url",
"values": {
"en": "https://monterosa.co.uk/image.jpg"
}
}
]
}
]
}
}
}
}'
Vote element is created here, as specified by rpoll-custom
value for /data/attributes/content_type
property. This value is specific for each app and it has to match the value specified in your app spec.
The poll has a question and two options. The question and each of the options is made up of text and image fields. Duration is set to 45 seconds.
The vote is created in the event with id 6396746d-5b45-42b9-a364-35ad0cceffaa
as set by /data/relationships/event/data/id
.
// POST /api/v2/elements
// Host: environment.monterosa.cloud
// Authorization: Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb
// Content-Type: application/vnd.api+json
{
"data": {
"type": "elements",
"relationships": {
"event": {
"data": {
"type": "events",
"id": "6b98f449-77f5-4261-93ca-36bcbce81c71"
}
}
},
"attributes": {
"content_type": "prediction-custom",
"start_mode": "manual",
"max_votes_per_user": 1,
"min_options_per_vote": 1,
"max_options_per_vote": 1,
"custom_fields": [],
"question": {
"fields": [
{
"key": "text",
"values": {
"en": "Question Text"
}
},
{
"key": "image_url",
"values": {
"en": "https://example.com/image.jpg"
}
}
],
"options": [
{
"fields": [
{
"key": "text",
"values": {
"en": "Option Text #1"
}
},
{
"key": "image_url",
"values": {
"en": "https://example.com/image.jpg"
}
}
]
},
{
"fields": [
{
"key": "text",
"values": {
"en": "Option Text #2"
}
},
{
"key": "image_url",
"values": {
"en": "https://example.com/image.jpg"
}
}
]
}
]
}
}
}
}
// Status: 201 Created
{
"data": {
"id": "529e4cde-9fa8-41b6-a62c-2b41d9abe49b",
"type": "elements",
"attributes": {
"offset": 0,
"duration": 0,
"content_type": "prediction-custom",
"start_mode": "manual",
"state": "non_scheduled",
"updated_at": null,
"updated_at_iso": null,
"revoked_at": null,
"revoked_at_iso": null,
"correct_option": null,
"custom_fields": [
{
"key": "text_during_quiz",
"values": {
"en": "Make your decision now..."
}
},
{
"key": "text_after_answering",
"values": {
"en": "Thanks for answering"
}
},
{
"key": "text_after_quiz",
"values": {
"en": "Question is closed"
}
},
{
"key": "text_after_reveal",
"values": {
"en": "Question is revealed"
}
}
],
"label": "Question Text",
"question": {
"label": "Question Text",
"fields": [
{
"key": "text",
"values": {
"en": "Question Text"
}
},
{
"key": "image_url",
"values": {
"en": "https://example.com/image.jpg"
}
}
],
"filter_keywords": [],
"options": [
{
"label": "Option Text #1",
"fields": [
{
"key": "text",
"values": {
"en": "Option Text #1"
}
},
{
"key": "image_url",
"values": {
"en": "https://example.com/image.jpg"
}
}
],
"filter_keywords": []
},
{
"label": "Option Text #2",
"fields": [
{
"key": "text",
"values": {
"en": "Option Text #2"
}
},
{
"key": "image_url",
"values": {
"en": "https://example.com/image.jpg"
}
}
],
"filter_keywords": []
}
]
},
"reveal_results_mode": "vote",
"require_verified_user": false,
"include_in_latest_results_feed": false,
"certification": false,
"max_votes_per_user": 1,
"max_votes_per_option": 1,
"min_options_per_vote": 1,
"max_options_per_vote": 1,
"enmasse_id": null
},
"relationships": {
"stats": {
"data": {
"id": "529e4cde-9fa8-41b6-a62c-2b41d9abe49b",
"type": "stats"
}
}
},
"links": {
"self": "https://environment.monterosa.cloud/api/v2/elements/529e4cde-9fa8-41b6-a62c-2b41d9abe49b"
}
}
}
curl --request POST \
--url https://environment.monterosa.cloud/api/v2/elements \
--header 'Authorization: Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "elements",
"relationships": {
"event": {
"data": {
"type": "events",
"id": "6b98f449-77f5-4261-93ca-36bcbce81c71"
}
}
},
"attributes": {
"content_type": "prediction-custom",
"start_mode": "manual",
"max_votes_per_user": 1,
"min_options_per_vote": 1,
"max_options_per_vote": 1,
"custom_fields": [],
"question": {
"fields": [
{
"key": "text",
"values": {
"en": "Question Text"
}
},
{
"key": "image_url",
"values": {
"en": "https://monterosa.co.uk/image.jpg"
}
}
],
"options": [
{
"fields": [
{
"key": "text",
"values": {
"en": "Option Text #1"
}
},
{
"key": "image_url",
"values": {
"en": "https://monterosa.co.uk/image.jpg"
}
}
]
},
{
"fields": [
{
"key": "text",
"values": {
"en": "Option Text #2"
}
},
{
"key": "image_url",
"values": {
"en": "https://monterosa.co.uk/image.jpg"
}
}
]
}
]
}
}
}
}'
Flexible prediction with a question with two options is created here.
Attribute "/data/attributes/content_type": "prediction-custom"
is used to create a flexible prediction. This value is specific for each app and it has to match the value specified in your app spec.
// POST /api/v2/elements
// Host: environment.monterosa.cloud
// Authorization: Bearer JmsmU5gZb6xNVUgQGoKcQLvQjRhKAUSb
// Content-Type: application/vnd.api+json
{
"data": {
"type": "elements",
"relationships": {
"event": {
"data": {
"type": "events",
"id": "74e23f8d-8ed6-4185-b061-12e1be071859"
}
}
},
"attributes": {
"content_type": "trivia",
"duration": 600,
"start_mode": "manual",
"question": {
"fields": [
{
"key": "text",
"values": {
"all": "Which came first: the chicken or the egg?"
}
}
],
"options": [
{
"fields": [
{
"key": "text",
"values": {
"all": "The chicken"
}
}
]
},
{
"fields": [
{
"key": "text",
"values": {
"all": "The egg"
}
}
]
}
]
},
"reveal_answer_mode": "auto",
"reveal_answer_in": 15,
"reveal_answer_on_vote": true,
"correct_option": 2,
"custom_fields": []
}
}
}
// Status: 201 Created
{
"data": {
"id": "ff4c40c5-727a-41bc-a981-fa12f98e4a25",
"type": "elements",
"attributes": {
"offset": 0,
"content_type": "trivia-custom",
"start_mode": "manual",
"state": "non_scheduled",
"updated_at": null,
"updated_at_iso": null,
"revoked_at": null,
"revoked_at_iso": null,
"duration": 600,
"custom_fields": [],
"label": "Which came first: the chicken or the egg?",
"question": {
"label": "Which came first: the chicken or the egg?",
"fields": [
{
"key": "text",
"values": {
"all": "Which came first: the chicken or the egg?"
}
}
],
"options": [
{
"label": "The chicken",
"fields": [
{
"key": "text",
"values": {
"all": "The chicken"
}
}
]
},
{
"label": "The egg",
"fields": [
{
"key": "text",
"values": {
"all": "The egg"
}
}
]
}
]
},
"reveal_results_mode": "never",
"require_verified_user": true,
"include_in_latest_results_feed": true,
"certification": false,
"enmasse_id": null,
"reveal_answer_mode": "auto",
"reveal_answer_in": 15,
"correct_option": 2,
"max_votes_per_user": 1,
"max_votes_per_option": 1
},
"relationships": {
"event": {
"data": {
"id": "74e23f8d-8ed6-4185-b061-12e1be071859",
"type": "events"
}
},
"stats": {
"data": {
"id": "ff4c40c5-727a-41bc-a981-fa12f98e4a25",
"type": "stats"
}
}
},
"links": {
"self": "https://environment.monterosa.cloud/api/v2/elements/ff4c40c5-727a-41bc-a981-fa12f98e4a25"
}
}
}
curl --request POST \
--url https://environment.monterosa.cloud/api/v2/elements \
--header 'Authorization: Bearer td18FzQxQ8ZgCAc9oHpQis8WJqkEn5B9' \
--header 'Content-Type: application/vnd.api+json' \
--data '{
"data": {
"type": "elements",
"relationships": {
"event": {
"data": {
"type": "events",
"id": "74e23f8d-8ed6-4185-b061-12e1be071859"