Introduction
You can use our ProductLift's API to smoothly integrate ProductLift with other services.
This documentation aims to provide all the information you need to work with our API.
Base URL
{YOUR_PORTAL_URL}
Authenticating requests
To authenticate requests, include an Authorization
header with the value "Bearer {YOUR_AUTH_KEY}"
.
All authenticated endpoints are marked with a requires authentication
badge in the documentation below.
You can retrieve your token by visiting your portal and go to Customize > API & Webhooks.
Anonymous Votes
Manage anonymous votes on posts and comments.
Vote anonymously
requires authentication
Add an anonymous vote to a post or comment.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/anonymous_votes/labore" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/anonymous_votes/labore"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/anonymous_votes/labore',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/anonymous_votes/labore'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers)
response.json()
Example response (200):
{
"data": {
"created_at": "2024-11-08T15:15:01.000000Z",
"voter": null
}
}
Example response (404):
{
"message": "No query results for model ..."
}
Example response (422):
{
"message": "Item is not voteable."
}
Example response (422):
{
"message": "Anonymous user has already voted for this item."
}
Received response:
Request failed with error:
Revoke anonymous vote
requires authentication
Revoke an anonymous vote for a post or comment.
Example request:
curl --request DELETE \
"{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/anonymous_votes/ea" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/anonymous_votes/ea"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/anonymous_votes/ea',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/anonymous_votes/ea'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers)
response.json()
Example response (200):
{}
Example response (404):
{
"message": "No query results for model ..."
}
Example response (422):
{
"message": "Item is not voteable."
}
Example response (422):
{
"message": "Anonymous user has not voted yet."
}
Received response:
Request failed with error:
Categories
Categories (e.g. Bug, Integration) can be used to organize and group posts. Categories are visible for your users. Posts can have multiple categories.
List categories
requires authentication
Lists all categories of your portal.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/categories" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/categories"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/categories',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/categories'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": [
{
"id": 1,
"name": "Bug",
"color": "#ABDEE6"
},
{
"id": 1,
"name": "Bug",
"color": "#ABDEE6"
}
]
}
Received response:
Request failed with error:
Create category
requires authentication
Creates a new category in your portal.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/categories" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/categories"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/categories',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/categories'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers)
response.json()
Example response (200):
{
"data": {
"id": 1,
"name": "Bug",
"color": "#ABDEE6"
}
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"name": [
"The name has already been taken."
]
}
Received response:
Request failed with error:
Delete category
requires authentication
Deletes a specified category.
Example request:
curl --request DELETE \
"{YOUR_PORTAL_URL}/api/v1/categories/10" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/categories/10"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'{YOUR_PORTAL_URL}/api/v1/categories/10',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/categories/10'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers)
response.json()
Example response (200):
{
"message": "Category deleted successfully"
}
Example response (404):
{
"message": "Category not found"
}
Example response (403):
{
"message": "You do not have permission to delete this category"
}
Received response:
Request failed with error:
Update category
requires authentication
Updates the details of a category.
Example request:
curl --request PATCH \
"{YOUR_PORTAL_URL}/api/v1/categories/2" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"name\": \"cxpufvyaeptbbppdwsfc\",
\"color\": \"#85E441$\\/m\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/categories/2"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"name": "cxpufvyaeptbbppdwsfc",
"color": "#85E441$\/m"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->patch(
'{YOUR_PORTAL_URL}/api/v1/categories/2',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'name' => 'cxpufvyaeptbbppdwsfc',
'color' => '#85E441$/m',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/categories/2'
payload = {
"name": "cxpufvyaeptbbppdwsfc",
"color": "#85E441$\/m"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('PATCH', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": {
"id": 1,
"name": "Bug",
"color": "#ABDEE6"
}
}
Example response (404):
{
"message": "Category not found."
}
Example response (403):
{
"message": "You do not have permission to update this category."
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"name": [
"The name has already been taken.",
"The name must be at least 2 characters.",
"The name may not be greater than 60 characters."
],
"color": [
"The color format is invalid. It should be a valid hex color code (e.g., #FF5733)."
]
}
}
Received response:
Request failed with error:
Comments
Comments can be added to posts. Each post can have multiple comments.
List comments
requires authentication
Retrieves all comments for a specific post.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/posts/abc123/comments" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts/abc123/comments"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/posts/abc123/comments',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts/abc123/comments'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": [
{
"id": null,
"comment": "Yes 😍",
"author": {
"id": "235b116c-12fc-415b-9e85-bbf6e176bec4",
"name": "Bruce Wayne",
"email": "idibaliban@gmail.com",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/267797e7f01a10c3119ccccddef73613?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Bruce+Wayne/60/FFC8A2/69320c",
"counter_votes": 0,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2024-04-26T19:18:20.000000Z",
"is_blocked": 0,
"verified": false,
"admin_accepted": 1,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
},
"pinned_to_top": false,
"tagged_for_changelog": false,
"parent_id": null,
"created_at": null,
"updated_at": null,
"url": "{YOUR-PORTAL-URL}/p/example-slug-123456#comment_123"
},
{
"id": null,
"comment": "Yes 😍",
"author": {
"id": "cb96fbf0-e44e-4879-9d11-b3f6564b8029",
"name": "Bruce Wayne",
"email": "brandondesousa9@gmail.com",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/c32092ade1fa29ce49f9bd771c85afa6?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Bruce+Wayne/60/FFC8A2/69320c",
"counter_votes": 0,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2024-04-19T20:30:18.000000Z",
"is_blocked": 0,
"verified": false,
"admin_accepted": 1,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
},
"pinned_to_top": false,
"tagged_for_changelog": false,
"parent_id": null,
"created_at": null,
"updated_at": null,
"url": "{YOUR-PORTAL-URL}/p/example-slug-123456#comment_123"
}
]
}
Example response (404):
{
"message": "No query results for model [App\\Post] ..."
}
Received response:
Request failed with error:
Create comment
requires authentication
Adds a new comment to a specific post.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/posts/abc123/comments" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": \"b4213b16-3d0f-300d-89a5-4ad59a5635d7\",
\"comment\": \"This is a new comment\",
\"parent_id\": 1,
\"tagged_for_changelog\": \"1\",
\"pinned_to_top\": \"true\",
\"created_at\": \"2023-08-11 14:30:00\",
\"use_for_changelog\": false,
\"pin_to_top\": false
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts/abc123/comments"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": "b4213b16-3d0f-300d-89a5-4ad59a5635d7",
"comment": "This is a new comment",
"parent_id": 1,
"tagged_for_changelog": "1",
"pinned_to_top": "true",
"created_at": "2023-08-11 14:30:00",
"use_for_changelog": false,
"pin_to_top": false
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/posts/abc123/comments',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'user_id' => 'b4213b16-3d0f-300d-89a5-4ad59a5635d7',
'comment' => 'This is a new comment',
'parent_id' => 1,
'tagged_for_changelog' => '1',
'pinned_to_top' => 'true',
'created_at' => '2023-08-11 14:30:00',
'use_for_changelog' => false,
'pin_to_top' => false,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts/abc123/comments'
payload = {
"user_id": "b4213b16-3d0f-300d-89a5-4ad59a5635d7",
"comment": "This is a new comment",
"parent_id": 1,
"tagged_for_changelog": "1",
"pinned_to_top": "true",
"created_at": "2023-08-11 14:30:00",
"use_for_changelog": false,
"pin_to_top": false
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": {
"id": null,
"comment": "This is amazing. I would like to have this.",
"author": {
"id": "d50ce8dd-ca97-4676-9c2b-220d90814732",
"name": "Bruce MacLeod",
"email": "macleod@maine.edu",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/f954a3dcab56c7755cb28c1f7063f954?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Bruce+MacLeod/60/FFAEA5/69180f",
"counter_votes": 0,
"counter_comments": 1,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2024-08-08T13:11:01.000000Z",
"is_blocked": 0,
"verified": false,
"admin_accepted": 1,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
},
"pinned_to_top": false,
"tagged_for_changelog": false,
"parent_id": null,
"created_at": null,
"updated_at": null,
"url": "{YOUR-PORTAL-URL}/p/example-slug-123456#comment_123"
}
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"comment": [
"The comment field is required."
]
}
}
Received response:
Request failed with error:
Update comment
requires authentication
Updates the details of a comment.
Example request:
curl --request PUT \
"{YOUR_PORTAL_URL}/api/v1/comments/6" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"comment\": \"This is an updated comment\",
\"parent_id\": 1,
\"tagged_for_changelog\": \"0\",
\"pinned_to_top\": \"1\",
\"created_at\": \"2023-08-11 14:30:00\",
\"use_for_changelog\": false,
\"pin_to_top\": false
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/comments/6"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"comment": "This is an updated comment",
"parent_id": 1,
"tagged_for_changelog": "0",
"pinned_to_top": "1",
"created_at": "2023-08-11 14:30:00",
"use_for_changelog": false,
"pin_to_top": false
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->put(
'{YOUR_PORTAL_URL}/api/v1/comments/6',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'comment' => 'This is an updated comment',
'parent_id' => 1,
'tagged_for_changelog' => '0',
'pinned_to_top' => '1',
'created_at' => '2023-08-11 14:30:00',
'use_for_changelog' => false,
'pin_to_top' => false,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/comments/6'
payload = {
"comment": "This is an updated comment",
"parent_id": 1,
"tagged_for_changelog": "0",
"pinned_to_top": "1",
"created_at": "2023-08-11 14:30:00",
"use_for_changelog": false,
"pin_to_top": false
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": {
"id": null,
"comment": "This is a must-have!",
"author": {
"id": "191dc920-ea5e-4588-bd8e-4ced481839b8",
"name": "Gediminas",
"email": "gediminas@reikiait.lt",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/87b49b5a08ca509e20ebb1db70f1209e?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Gediminas/60/FFC5BF/692f29",
"counter_votes": 0,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2024-08-05T20:19:58.000000Z",
"is_blocked": 0,
"verified": true,
"admin_accepted": 1,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": "Trial",
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": "0.00",
"email_unsubscribed_at": null
},
"pinned_to_top": false,
"tagged_for_changelog": false,
"parent_id": null,
"created_at": null,
"updated_at": null,
"url": "{YOUR-PORTAL-URL}/p/example-slug-123456#comment_123"
}
}
Example response (404):
{
"message": "No query results for model [App\\Comment] ..."
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"comment": [
"The comment field is required."
]
}
}
Received response:
Request failed with error:
Delete comment
requires authentication
Deletes a specified comment.
Example request:
curl --request DELETE \
"{YOUR_PORTAL_URL}/api/v1/comments/6" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/comments/6"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'{YOUR_PORTAL_URL}/api/v1/comments/6',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/comments/6'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers)
response.json()
Example response (200):
{}
Example response (404):
{
"message": "No query results for model [App\\Comment] ..."
}
Received response:
Request failed with error:
Feedback
Handles operations related to user feedback including listing, creating, updating, deleting, and analyzing feedback.
List feedback
requires authentication
Retrieves a collection of all feedback entries, ordered by creation date in descending order.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/feedback" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/feedback"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/feedback',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/feedback'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 59
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Create feedback
requires authentication
Stores a new feedback entry in the database.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/feedback" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"type\": \"fuga\",
\"feedback\": \"ratione\",
\"user_id\": \"2ef16b98-f3ad-3046-9d0d-1eee385f06e0\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/feedback"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"type": "fuga",
"feedback": "ratione",
"user_id": "2ef16b98-f3ad-3046-9d0d-1eee385f06e0"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/feedback',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'type' => 'fuga',
'feedback' => 'ratione',
'user_id' => '2ef16b98-f3ad-3046-9d0d-1eee385f06e0',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/feedback'
payload = {
"type": "fuga",
"feedback": "ratione",
"user_id": "2ef16b98-f3ad-3046-9d0d-1eee385f06e0"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"feedback": [
"The feedback field is required."
]
}
}
Received response:
Request failed with error:
Update feedback
requires authentication
Updates an existing feedback entry.
Example request:
curl --request PUT \
"{YOUR_PORTAL_URL}/api/v1/feedback/quibusdam" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"feedback\": \"ut\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/feedback/quibusdam"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"feedback": "ut"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->put(
'{YOUR_PORTAL_URL}/api/v1/feedback/quibusdam',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'feedback' => 'ut',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/feedback/quibusdam'
payload = {
"feedback": "ut"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
Example response (404):
{
"message": "No query results for model [App\\Models\\Feedback] ..."
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"feedback": [
"The feedback field must be given."
]
}
}
Received response:
Request failed with error:
Delete feedback
requires authentication
Removes a specified feedback entry from the database.
Example request:
curl --request DELETE \
"{YOUR_PORTAL_URL}/api/v1/feedback/quis" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/feedback/quis"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'{YOUR_PORTAL_URL}/api/v1/feedback/quis',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/feedback/quis'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers)
response.json()
Example response (200):
{}
Example response (404):
{
"message": "No query results for model [App\\Models\\Feedback] ..."
}
Received response:
Request failed with error:
Summarize feedback
requires authentication
Generates a summary of filtered feedback using AI analysis.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/feedback/summarize" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"sentiment\": \"neutral\",
\"focus\": \"value\",
\"source\": \"fugiat\",
\"widget\": \"f6926c62-1a9d-3336-946a-c3ac864a2d0e\",
\"created_from\": \"2024-11-20T10:19:47\",
\"created_to\": \"2024-11-20T10:19:47\",
\"keyword\": \"et\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/feedback/summarize"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"sentiment": "neutral",
"focus": "value",
"source": "fugiat",
"widget": "f6926c62-1a9d-3336-946a-c3ac864a2d0e",
"created_from": "2024-11-20T10:19:47",
"created_to": "2024-11-20T10:19:47",
"keyword": "et"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/feedback/summarize',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'sentiment' => 'neutral',
'focus' => 'value',
'source' => 'fugiat',
'widget' => 'f6926c62-1a9d-3336-946a-c3ac864a2d0e',
'created_from' => '2024-11-20T10:19:47',
'created_to' => '2024-11-20T10:19:47',
'keyword' => 'et',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/feedback/summarize'
payload = {
"sentiment": "neutral",
"focus": "value",
"source": "fugiat",
"widget": "f6926c62-1a9d-3336-946a-c3ac864a2d0e",
"created_from": "2024-11-20T10:19:47",
"created_to": "2024-11-20T10:19:47",
"keyword": "et"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Received response:
Request failed with error:
Groups
Group management lets you organize users, control access, and customize experiences. Use it for focus groups, beta tests, customer segments, or team organization. After creating groups, you can set tab visibility for specific groups and choose who can access them.
List groups
requires authentication
Lists all groups.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/groups" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/groups"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/groups',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/groups'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": [
{
"id": "024fbe81-0c1c-4b7e-81d2-d89659c9d6b1",
"portal_id": 3674,
"name": "Sureders",
"description": null,
"created_at": "2024-10-21T17:15:47.000000Z",
"updated_at": "2024-10-21T17:15:47.000000Z"
},
{
"id": "024fbe81-0c1c-4b7e-81d2-d89659c9d6b1",
"portal_id": 3674,
"name": "Sureders",
"description": null,
"created_at": "2024-10-21T17:15:47.000000Z",
"updated_at": "2024-10-21T17:15:47.000000Z"
}
]
}
Received response:
Request failed with error:
Create group
requires authentication
Creates a new group.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/groups" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"description\": \"pariatur\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/groups"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"description": "pariatur"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/groups',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'description' => 'pariatur',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/groups'
payload = {
"description": "pariatur"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": {
"id": "024fbe81-0c1c-4b7e-81d2-d89659c9d6b1",
"portal_id": 3674,
"name": "Sureders",
"description": null,
"created_at": "2024-10-21T17:15:47.000000Z",
"updated_at": "2024-10-21T17:15:47.000000Z"
}
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"name": [
"The name has already been taken."
]
}
}
Received response:
Request failed with error:
Show group
requires authentication
Displays details of a specific group.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/groups/11" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/groups/11"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/groups/11',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/groups/11'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": {
"id": "024fbe81-0c1c-4b7e-81d2-d89659c9d6b1",
"portal_id": 3674,
"name": "Sureders",
"description": null,
"created_at": "2024-10-21T17:15:47.000000Z",
"updated_at": "2024-10-21T17:15:47.000000Z"
}
}
Example response (404):
{
"message": "No query results for model [App\\Group] ..."
}
Received response:
Request failed with error:
Update group
requires authentication
Updates the details of a group.
Example request:
curl --request PUT \
"{YOUR_PORTAL_URL}/api/v1/groups/2" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"description\": \"fuga\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/groups/2"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"description": "fuga"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->put(
'{YOUR_PORTAL_URL}/api/v1/groups/2',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'description' => 'fuga',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/groups/2'
payload = {
"description": "fuga"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": {
"id": "024fbe81-0c1c-4b7e-81d2-d89659c9d6b1",
"portal_id": 3674,
"name": "Sureders",
"description": null,
"created_at": "2024-10-21T17:15:47.000000Z",
"updated_at": "2024-10-21T17:15:47.000000Z"
}
}
Example response (404):
{
"message": "No query results for model [App\\Group] ..."
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"name": [
"The name has already been taken."
]
}
}
Received response:
Request failed with error:
Delete group
requires authentication
Deletes a specified group.
Example request:
curl --request DELETE \
"{YOUR_PORTAL_URL}/api/v1/groups/12" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/groups/12"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'{YOUR_PORTAL_URL}/api/v1/groups/12',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/groups/12'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers)
response.json()
Example response (200):
{
"message": "Group deleted successfully"
}
Example response (404):
{
"message": "No query results for model [App\\Group] ..."
}
Received response:
Request failed with error:
Add user to group
requires authentication
Adds a user to the specified group.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/groups/rerum/users" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": 17
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/groups/rerum/users"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": 17
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/groups/rerum/users',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'user_id' => 17,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/groups/rerum/users'
payload = {
"user_id": 17
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"message": "User added to group successfully"
}
Example response (404):
{
"message": "Group or User not found"
}
Example response (422):
{
"message": "User is already in the group"
}
Received response:
Request failed with error:
Remove user from group
requires authentication
Removes a user from the specified group.
Example request:
curl --request DELETE \
"{YOUR_PORTAL_URL}/api/v1/groups/omnis/users" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"user_id\": 18
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/groups/omnis/users"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"user_id": 18
};
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'{YOUR_PORTAL_URL}/api/v1/groups/omnis/users',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'user_id' => 18,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/groups/omnis/users'
payload = {
"user_id": 18
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"message": "User removed from group successfully"
}
Example response (404):
{
"message": "Group or User not found"
}
Example response (422):
{
"message": "User is not in the group"
}
Received response:
Request failed with error:
Get users in group
requires authentication
Retrieves all users belonging to a specific group.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/groups/vitae/users" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/groups/vitae/users"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/groups/vitae/users',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/groups/vitae/users'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": [
{
"id": "6fc17036-1de0-48ae-b7e0-1398498cebaf",
"name": "Milo",
"email": "nienow.myron@example.org",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/7b680eaebb8ce2be32236d9795fabf61?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Milo/60/55CBCD/003537",
"counter_votes": 0,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2024-11-20T10:19:47.000000Z",
"is_blocked": null,
"verified": null,
"admin_accepted": null,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
},
{
"id": "248d662b-e54d-4406-9092-29a1af97ad4d",
"name": "Matilda",
"email": "amos62@example.org",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/102557f8757be1568bd39ca06b4e3865?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Matilda/60/55CBCD/003537",
"counter_votes": 0,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2024-11-20T10:19:47.000000Z",
"is_blocked": null,
"verified": null,
"admin_accepted": null,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
}
]
}
Example response (200):
{
"data": [
{
"id": 1,
"name": "John Doe",
"email": "john@example.com",
// ... other user attributes
},
// ... more users
]
}
Example response (404):
{
"message": "No query results for model [App\\Group] ..."
}
Received response:
Request failed with error:
Moderation
Handles operations related to post and comment moderation including listing pending and rejected items, approving, and rejecting them.
Get pending items
requires authentication
Retrieves all posts and comments with a moderation status of 'pending'.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/moderation/pending" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/moderation/pending"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/moderation/pending',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/moderation/pending'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 58
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Get rejected items
requires authentication
Retrieves all posts and comments with a moderation status of 'rejected'.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/moderation/rejected" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/moderation/rejected"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/moderation/rejected',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/moderation/rejected'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 57
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Reject item (post or comment)
requires authentication
Updates the specified post or comment's moderation status to 'rejected'.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/moderation/reject/aliquid/magni" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/moderation/reject/aliquid/magni"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/moderation/reject/aliquid/magni',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/moderation/reject/aliquid/magni'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers)
response.json()
Received response:
Request failed with error:
Approve item (post or comment)
requires authentication
Updates the specified post or comment's moderation status to 'approved'.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/moderation/approve/et/labore" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/moderation/approve/et/labore"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/moderation/approve/et/labore',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/moderation/approve/et/labore'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers)
response.json()
Received response:
Request failed with error:
Other endpoints
PUT api/v1/posts/{key}/toggle-publish
requires authentication
Example request:
curl --request PUT \
"{YOUR_PORTAL_URL}/api/v1/posts/6/toggle-publish" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts/6/toggle-publish"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "PUT",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->put(
'{YOUR_PORTAL_URL}/api/v1/posts/6/toggle-publish',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts/6/toggle-publish'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('PUT', url, headers=headers)
response.json()
Received response:
Request failed with error:
Portal
You should see a portal as a single project for your product or service. It can consist of roadmaps, changelogs, voting boards, etc.
Get portal
requires authentication
Retrieves the details of your portal.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/portal" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/portal"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/portal',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/portal'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": {
"guid": "1d92fb85-dacb-400d-859c-3be9b97b6daa",
"title": "rerum corrupti",
"localization": "en"
}
}
Received response:
Request failed with error:
Posts
Manage posts.
Find duplicates
requires authentication
Searches the database for duplicate posts.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/posts/search_duplicates" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts/search_duplicates"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/posts/search_duplicates',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts/search_duplicates'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"count": 0,
}
Example response (200):
{
"count": 1,
"posts": {
{
"id": "d8QEXH",
"title": "Open links in new window",
"description": "Option to open links in a new window."
}
}
}
Received response:
Request failed with error:
Create post
requires authentication
Creates a new post in your portal.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/posts" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: multipart/form-data" \
--header "Accept: application/json" \
--form "title=vylrdwkunllvi" \
--form "description=quas" \
--form "category_id=15" \
--form "status_id=14" \
--form "section_id=12" \
--form "user_id=a85c05e3-2384-395e-b172-ae4d8d02c821" \
--form "allow_comments=true" \
--form "jira_key=numquam" \
--form "azure_boards_key=voluptas" \
--form "estimated_date=2024-11-20T10:19:46" \
--form "tags[]=qlryzqumzhmvlujxivejbuhnwxk" \
--form "created_at=2024-11-20T10:19:46" \
--form "prioritization_impact=24" \
--form "prioritization_confidence=66" \
--form "prioritization_ease=73" \
--form "prioritization_reach=51" \
--form "moscow_priority=W" \
--form "prioritization_color=egzisw" \
--form "manual_bonus_votes=12" \
--form "is_published=0" \
--form "image=@/tmp/phpNaBk62" \
--form "attachment=@/tmp/phpbHvar2"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "multipart/form-data",
"Accept": "application/json",
};
const body = new FormData();
body.append('title', 'vylrdwkunllvi');
body.append('description', 'quas');
body.append('category_id', '15');
body.append('status_id', '14');
body.append('section_id', '12');
body.append('user_id', 'a85c05e3-2384-395e-b172-ae4d8d02c821');
body.append('allow_comments', 'true');
body.append('jira_key', 'numquam');
body.append('azure_boards_key', 'voluptas');
body.append('estimated_date', '2024-11-20T10:19:46');
body.append('tags[]', 'qlryzqumzhmvlujxivejbuhnwxk');
body.append('created_at', '2024-11-20T10:19:46');
body.append('prioritization_impact', '24');
body.append('prioritization_confidence', '66');
body.append('prioritization_ease', '73');
body.append('prioritization_reach', '51');
body.append('moscow_priority', 'W');
body.append('prioritization_color', 'egzisw');
body.append('manual_bonus_votes', '12');
body.append('is_published', '0');
body.append('image', document.querySelector('input[name="image"]').files[0]);
body.append('attachment', document.querySelector('input[name="attachment"]').files[0]);
fetch(url, {
method: "POST",
headers,
body,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/posts',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'multipart/form-data',
'Accept' => 'application/json',
],
'multipart' => [
[
'name' => 'title',
'contents' => 'vylrdwkunllvi'
],
[
'name' => 'description',
'contents' => 'quas'
],
[
'name' => 'category_id',
'contents' => '15'
],
[
'name' => 'status_id',
'contents' => '14'
],
[
'name' => 'section_id',
'contents' => '12'
],
[
'name' => 'user_id',
'contents' => 'a85c05e3-2384-395e-b172-ae4d8d02c821'
],
[
'name' => 'allow_comments',
'contents' => 'true'
],
[
'name' => 'jira_key',
'contents' => 'numquam'
],
[
'name' => 'azure_boards_key',
'contents' => 'voluptas'
],
[
'name' => 'estimated_date',
'contents' => '2024-11-20T10:19:46'
],
[
'name' => 'tags[]',
'contents' => 'qlryzqumzhmvlujxivejbuhnwxk'
],
[
'name' => 'created_at',
'contents' => '2024-11-20T10:19:46'
],
[
'name' => 'prioritization_impact',
'contents' => '24'
],
[
'name' => 'prioritization_confidence',
'contents' => '66'
],
[
'name' => 'prioritization_ease',
'contents' => '73'
],
[
'name' => 'prioritization_reach',
'contents' => '51'
],
[
'name' => 'moscow_priority',
'contents' => 'W'
],
[
'name' => 'prioritization_color',
'contents' => 'egzisw'
],
[
'name' => 'manual_bonus_votes',
'contents' => '12'
],
[
'name' => 'is_published',
'contents' => '0'
],
[
'name' => 'image',
'contents' => fopen('/tmp/phpNaBk62', 'r')
],
[
'name' => 'attachment',
'contents' => fopen('/tmp/phpbHvar2', 'r')
],
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts'
files = {
'image': open('/tmp/phpNaBk62', 'rb'),
'attachment': open('/tmp/phpbHvar2', 'rb')
}
payload = {
"title": "vylrdwkunllvi",
"description": "quas",
"category_id": 15,
"status_id": 14,
"section_id": 12,
"user_id": "a85c05e3-2384-395e-b172-ae4d8d02c821",
"allow_comments": "true",
"jira_key": "numquam",
"azure_boards_key": "voluptas",
"estimated_date": "2024-11-20T10:19:46",
"tags": [
"qlryzqumzhmvlujxivejbuhnwxk"
],
"created_at": "2024-11-20T10:19:46",
"prioritization_impact": 24,
"prioritization_confidence": 66,
"prioritization_ease": 73,
"prioritization_reach": 51,
"moscow_priority": "W",
"prioritization_color": "egzisw",
"manual_bonus_votes": 12,
"is_published": "0"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'multipart/form-data',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, files=files, data=payload)
response.json()
Example response (404):
{
"message": "No query results for model [App\\User] ..."
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"user_id": [
"The user id must be a valid UUID."
]
}
Example response (200):
{
"data": {
"id": "WEukJy",
"uid": "WEukJy-uid",
"title": "Photo upload",
"description_short": "It would be great if I can upload a photo.",
"description": "It would be great if I can upload a photo. This feature would allow users to share visual content directly within the platform.",
"description_changelog": "Added photo upload functionality to enhance user experience.",
"clean_description_changelog": "Added photo upload functionality to enhance user experience.",
"image_main": "https://example.com/images/photo-upload.jpg",
"votes_count": 15,
"comments_count": 3,
"views_count": 100,
"url": "https://your-portal-url.com/p/photo-upload-WEukJy",
"url_edit": "https://your-portal-url.com/admin/posts/edit/WEukJy",
"url_delete": "https://your-portal-url.com/admin/posts/delete/WEukJy",
"created_at": "2023-05-15T10:00:00Z",
"updated_at": "2023-05-16T14:30:00Z",
"latest_status_change_at": "2023-05-16T14:30:00Z",
"latest_status_change_at_formatted": "16 May 2023",
"author": {
"id": "420b8cfb-2c3d-4df2-b6bd-7ac6aae1a14a",
"name": "Madalyn",
"email": "robyn.oconner@example.net",
"role": "member",
"counter_votes": 4,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0
},
"categories": [
{
"id": 3,
"name": "Integration",
"color": "#FFAEA5"
}
],
"status": {
"id": 3,
"name": "💪 Now available",
"color": "#FFCCB6",
"tab_name": "Updates"
},
"section_id": 2,
"moderation_status": "approved",
"conversion": 0.75,
"prioritization_impact": 8,
"prioritization_confidence": 7,
"prioritization_ease": 6,
"prioritization_reach": 9
}
}
Received response:
Request failed with error:
Get post
requires authentication
Retrieves the details of a specified post.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/posts/10" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts/10"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/posts/10',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts/10'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (404):
{
"message": "No query results for model [App\\Post] ..."
}
Example response (200):
{
"data": {
"id": "WEukJy",
"uid": "WEukJy-uid",
"title": "Photo upload",
"description_short": "It would be great if I can upload a photo.",
"description": "It would be great if I can upload a photo. This feature would allow users to share visual content directly within the platform.",
"description_changelog": "Added photo upload functionality to enhance user experience.",
"clean_description_changelog": "Added photo upload functionality to enhance user experience.",
"image_main": "https://example.com/images/photo-upload.jpg",
"votes_count": 15,
"comments_count": 3,
"views_count": 100,
"url": "https://your-portal-url.com/p/photo-upload-WEukJy",
"url_edit": "https://your-portal-url.com/admin/posts/edit/WEukJy",
"url_delete": "https://your-portal-url.com/admin/posts/delete/WEukJy",
"created_at": "2023-05-15T10:00:00Z",
"updated_at": "2023-05-16T14:30:00Z",
"latest_status_change_at": "2023-05-16T14:30:00Z",
"latest_status_change_at_formatted": "16 May 2023",
"author": {
"id": "420b8cfb-2c3d-4df2-b6bd-7ac6aae1a14a",
"name": "Madalyn",
"email": "robyn.oconner@example.net",
"role": "member",
"counter_votes": 4,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0
},
"categories": [
{
"id": 3,
"name": "Integration",
"color": "#FFAEA5"
}
],
"status": {
"id": 3,
"name": "💪 Now available",
"color": "#FFCCB6",
"tab_name": "Updates"
},
"section_id": 2,
"moderation_status": "approved",
"conversion": 0.75,
"prioritization_impact": 8,
"prioritization_confidence": 7,
"prioritization_ease": 6,
"prioritization_reach": 9
}
}
Received response:
Request failed with error:
Update post
requires authentication
Updates the specified post by setting the values of the parameters passed. Any parameters not provided will be left unchanged. This endpoint allows for updating the post's general attributes, status, and tags.
Example request:
curl --request PATCH \
"{YOUR_PORTAL_URL}/api/v1/posts/18" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"tbjpitlrgysaqevnemxbcppxjgfghaindmoijjxmrptsgsmsuwyugeeaxfveqkaxcofcugppucuiyhnujvhticxdjasiwgxaciteigamyrncccqcarsnrdrkxagakxewtfpabyurd\",
\"description\": \"quibusdam\",
\"user_id\": \"e53c983a-5d45-3a71-9707-f16c18336ce3\",
\"section_id\": 48724.1703,
\"allow_comments\": \"0\",
\"jira_key\": \"illo\",
\"azure_boards_key\": \"odio\",
\"estimated_date\": \"2024-11-20T10:19:46\",
\"status\": 3001990.549283582,
\"status_update_email\": \"vmgucvjorjoazpntefpwwlwaxjinysitonuheegxvsbpsgkggavhnibvqiihmjlzmrjonhaxlbrrandsuhrewqlpxcjyrjijrbazkrybmaqkxwsxhdfumgtfrshumyqrlgqkjaseknfdhbaytkvvoziosnkyskglpvnckyypuislzqoislhtpoiijlugyivhtevgizdcilcmuispqkfxrowembbptixiloezlelrgvvjghnguuaqltwaztpddynvfggfsclgxkbllbjoxeenjjvfsiumnywqtvjzxcwdcnkhfegctmpxtlnodxgckylxyfghumjoopbzyewyyzfcwsabpavdcaiqpylyzbchvxvnwyoibpscyvkzwysvqokpjkytsergfyopkzgfdnnfdckhqpdzenluzrzkrxivcojzxmjvgjayyzskgnomfllflocnxpwdclindibjtkumambmwfeswcjtpszghzxsbdhchnkfqnssgrazxdvwzwrfdqmkgpmhzjkovqwtrlnizerorhbfzbshumqfgmqdhfxomdrrhesvxaedwpstqmojkczmehfiiukjnbrzhkgzutgwnpkbkhfjsbiaviqzpqejzlmzolodiwnlgoifbxavqkrpzpjgouxilfnqogamctwbwesjmstsqvlrffivzrrbwyvnofvnpfrdblkktuqciqqsmtfemfiybruayzyhtwlrndiacljaudoskldbusncdnapwdchrvvchfifllsqjrufluayifpsmhiuyopounsxjcwubjtbucthfydyuiabmkqaisoymblbidyuumnzggnbybelmrdlqfwkatcnrsoqolencjrwhbmgaqanrnlffffomskvuqumboqxtynadmxvcmbvbiiphitehdgnbcadfnajexyqmzzdmxrebznjbhroefsscnadvaprwjrecwfawpmjbjmzzahywboflblelshshrbxzuvslijfmkhgeuvmgevqqkakdhcvwluzgkfxlxsnwguiwcspvlnivjdksiflnbbicndhcnkxovedqoatopplsgordvhbfeacerxahwirbgpawxcklxqxiocwnkomaxfzunnqlazakrqlsdnisphioymljmbdsyoeimhqhgtsszfbvhicnwdmcaohpllsujfzuworljtqqzeeqmxfsacuuwfgmerzstksrzivznnsbpkoqhibltwjliejantbtexfvrcctuifjzuywodppbsdkrqjkxwhyydjmibvmyeugneiedoljaryxjncbuqeselcrqojimetlebgsbipoycqrlnoblckikimevwnyqjjthslylxuclwbzpwotknooryfpugrgohgdauxaekwbzeuhhdekkevunngcrhncdhilcsjxzrjxgdiprjjzfgqhpblyjyjmwvutrrefoarlgbfqhcxzczrtyzpuvrugnbfifoerxvrxogaobrarjvwiwphdsjvaespzsxecfmysxhmfhimkhnrkfqlqxcswrepcdhfyucewalhfsljokpkyxaiemwxroxrcewvypiluwjdydkrqlydxr\",
\"status_update_comment\": \"ldukfpeefizdrelzklfilzdpwuacdyvnblssibppgffgskqltyjlzeezirumqbhoytlgdepeacijalaekyaupastwiaqjweklukuzzadwpsszkpkrxvhrgvexsjcrmlfepvsqasxiezcsvgakjjmkydzxbcxmuddvyuhcvxixsyghrevbljwsaxhckwlofahkpybcphrbokorupzytkyevjolzgktigpivkyutkdssbequouqpkendtbezrekhpkmwmrlavnbsycbsjaxmoyyumtelmgkvhilagjogtidjlqjmrsxvycdomzajkkxajefcummyuzhksoktncxhbhborxyeugzkwvziefgssygixtmriszkfiswqgoqozqsousvfywtieejbeqwbvpnibneqdwsbmvsxzrdxhtcfztqbkpempnnnfdbsdoqizenhqsiimjebvqldtsxsgqfutpzdtonwribuxltbbjmgncjakjkrxjujyxtnscoehzmsrheiguatcqdvrrnugzzzpcpebjninxzlauhtucmankqlevyualhpwxzbeocjgeqnfsmggvclwkofftzchgqgteqzsvmlsccajqflwvhvrrnjrvvhkghomqqjquqynsdolkxuflxkwreynyvkagbrtjqmztaiogrxfwfxsshupiljlkvwxpvlpgtngeoufyrasywjhlgxkbmwszsaqtasxhtcaiqtcjyzjbwaenmypeprtjspltvldcllvjiiqclotzyzmfjmawipmrfwavhiemfhzvzijacbgxgayhkgeijctpkfnopvvfsuelonmtgvhtewwiqcmjfeeonktshxgtuiymwszsufkxcscbfxjsdzcxwdvxfqbeuyhcyfirzntvphpqugzhalrfywvqnqwkhmvwekppcqihopiucmmjsmezomwpcljsripstjydqkorhjantntgsdkcegeghiowffywhppqcdsrlrqwcfgheotntdetqsvhdapeweowgwqlllnakmhrupdnvmxighbpqqeshouadgolrkrbgyrgfrseferwduheobvwpmsqszxkaauhimgbdaldemlrcbxfxcoupkgismrrqrhezilocrqewteltjlsuvcgotbqsckcmsuktmjrmwbaibphwjrnoococugviajxshdfrxivnnistzhcmtxpyrwlueowclyemijgpzwhehijeqdihsylugqxmzioaeujxznunhztatoyjsltrhvsjtlkqyxogwgzcbtzzpmfqqvtuwrycngtkxbejir\",
\"status_update_replace_prior\": \"iure\",
\"status_update_comment_tagged_for_changelog\": \"false\",
\"status_update_comment_pinned_to_top\": \"false\",
\"tags\": [
\"dmy\"
],
\"category_id\": 4,
\"created_at\": \"2024-11-20T10:19:46\",
\"prioritization_impact\": 84,
\"prioritization_confidence\": 63,
\"prioritization_ease\": 51,
\"prioritization_reach\": 43,
\"moscow_priority\": \"S\",
\"prioritization_color\": \"i\",
\"manual_bonus_votes\": 2,
\"is_published\": \"0\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts/18"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "tbjpitlrgysaqevnemxbcppxjgfghaindmoijjxmrptsgsmsuwyugeeaxfveqkaxcofcugppucuiyhnujvhticxdjasiwgxaciteigamyrncccqcarsnrdrkxagakxewtfpabyurd",
"description": "quibusdam",
"user_id": "e53c983a-5d45-3a71-9707-f16c18336ce3",
"section_id": 48724.1703,
"allow_comments": "0",
"jira_key": "illo",
"azure_boards_key": "odio",
"estimated_date": "2024-11-20T10:19:46",
"status": 3001990.549283582,
"status_update_email": "vmgucvjorjoazpntefpwwlwaxjinysitonuheegxvsbpsgkggavhnibvqiihmjlzmrjonhaxlbrrandsuhrewqlpxcjyrjijrbazkrybmaqkxwsxhdfumgtfrshumyqrlgqkjaseknfdhbaytkvvoziosnkyskglpvnckyypuislzqoislhtpoiijlugyivhtevgizdcilcmuispqkfxrowembbptixiloezlelrgvvjghnguuaqltwaztpddynvfggfsclgxkbllbjoxeenjjvfsiumnywqtvjzxcwdcnkhfegctmpxtlnodxgckylxyfghumjoopbzyewyyzfcwsabpavdcaiqpylyzbchvxvnwyoibpscyvkzwysvqokpjkytsergfyopkzgfdnnfdckhqpdzenluzrzkrxivcojzxmjvgjayyzskgnomfllflocnxpwdclindibjtkumambmwfeswcjtpszghzxsbdhchnkfqnssgrazxdvwzwrfdqmkgpmhzjkovqwtrlnizerorhbfzbshumqfgmqdhfxomdrrhesvxaedwpstqmojkczmehfiiukjnbrzhkgzutgwnpkbkhfjsbiaviqzpqejzlmzolodiwnlgoifbxavqkrpzpjgouxilfnqogamctwbwesjmstsqvlrffivzrrbwyvnofvnpfrdblkktuqciqqsmtfemfiybruayzyhtwlrndiacljaudoskldbusncdnapwdchrvvchfifllsqjrufluayifpsmhiuyopounsxjcwubjtbucthfydyuiabmkqaisoymblbidyuumnzggnbybelmrdlqfwkatcnrsoqolencjrwhbmgaqanrnlffffomskvuqumboqxtynadmxvcmbvbiiphitehdgnbcadfnajexyqmzzdmxrebznjbhroefsscnadvaprwjrecwfawpmjbjmzzahywboflblelshshrbxzuvslijfmkhgeuvmgevqqkakdhcvwluzgkfxlxsnwguiwcspvlnivjdksiflnbbicndhcnkxovedqoatopplsgordvhbfeacerxahwirbgpawxcklxqxiocwnkomaxfzunnqlazakrqlsdnisphioymljmbdsyoeimhqhgtsszfbvhicnwdmcaohpllsujfzuworljtqqzeeqmxfsacuuwfgmerzstksrzivznnsbpkoqhibltwjliejantbtexfvrcctuifjzuywodppbsdkrqjkxwhyydjmibvmyeugneiedoljaryxjncbuqeselcrqojimetlebgsbipoycqrlnoblckikimevwnyqjjthslylxuclwbzpwotknooryfpugrgohgdauxaekwbzeuhhdekkevunngcrhncdhilcsjxzrjxgdiprjjzfgqhpblyjyjmwvutrrefoarlgbfqhcxzczrtyzpuvrugnbfifoerxvrxogaobrarjvwiwphdsjvaespzsxecfmysxhmfhimkhnrkfqlqxcswrepcdhfyucewalhfsljokpkyxaiemwxroxrcewvypiluwjdydkrqlydxr",
"status_update_comment": "ldukfpeefizdrelzklfilzdpwuacdyvnblssibppgffgskqltyjlzeezirumqbhoytlgdepeacijalaekyaupastwiaqjweklukuzzadwpsszkpkrxvhrgvexsjcrmlfepvsqasxiezcsvgakjjmkydzxbcxmuddvyuhcvxixsyghrevbljwsaxhckwlofahkpybcphrbokorupzytkyevjolzgktigpivkyutkdssbequouqpkendtbezrekhpkmwmrlavnbsycbsjaxmoyyumtelmgkvhilagjogtidjlqjmrsxvycdomzajkkxajefcummyuzhksoktncxhbhborxyeugzkwvziefgssygixtmriszkfiswqgoqozqsousvfywtieejbeqwbvpnibneqdwsbmvsxzrdxhtcfztqbkpempnnnfdbsdoqizenhqsiimjebvqldtsxsgqfutpzdtonwribuxltbbjmgncjakjkrxjujyxtnscoehzmsrheiguatcqdvrrnugzzzpcpebjninxzlauhtucmankqlevyualhpwxzbeocjgeqnfsmggvclwkofftzchgqgteqzsvmlsccajqflwvhvrrnjrvvhkghomqqjquqynsdolkxuflxkwreynyvkagbrtjqmztaiogrxfwfxsshupiljlkvwxpvlpgtngeoufyrasywjhlgxkbmwszsaqtasxhtcaiqtcjyzjbwaenmypeprtjspltvldcllvjiiqclotzyzmfjmawipmrfwavhiemfhzvzijacbgxgayhkgeijctpkfnopvvfsuelonmtgvhtewwiqcmjfeeonktshxgtuiymwszsufkxcscbfxjsdzcxwdvxfqbeuyhcyfirzntvphpqugzhalrfywvqnqwkhmvwekppcqihopiucmmjsmezomwpcljsripstjydqkorhjantntgsdkcegeghiowffywhppqcdsrlrqwcfgheotntdetqsvhdapeweowgwqlllnakmhrupdnvmxighbpqqeshouadgolrkrbgyrgfrseferwduheobvwpmsqszxkaauhimgbdaldemlrcbxfxcoupkgismrrqrhezilocrqewteltjlsuvcgotbqsckcmsuktmjrmwbaibphwjrnoococugviajxshdfrxivnnistzhcmtxpyrwlueowclyemijgpzwhehijeqdihsylugqxmzioaeujxznunhztatoyjsltrhvsjtlkqyxogwgzcbtzzpmfqqvtuwrycngtkxbejir",
"status_update_replace_prior": "iure",
"status_update_comment_tagged_for_changelog": "false",
"status_update_comment_pinned_to_top": "false",
"tags": [
"dmy"
],
"category_id": 4,
"created_at": "2024-11-20T10:19:46",
"prioritization_impact": 84,
"prioritization_confidence": 63,
"prioritization_ease": 51,
"prioritization_reach": 43,
"moscow_priority": "S",
"prioritization_color": "i",
"manual_bonus_votes": 2,
"is_published": "0"
};
fetch(url, {
method: "PATCH",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->patch(
'{YOUR_PORTAL_URL}/api/v1/posts/18',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'title' => 'tbjpitlrgysaqevnemxbcppxjgfghaindmoijjxmrptsgsmsuwyugeeaxfveqkaxcofcugppucuiyhnujvhticxdjasiwgxaciteigamyrncccqcarsnrdrkxagakxewtfpabyurd',
'description' => 'quibusdam',
'user_id' => 'e53c983a-5d45-3a71-9707-f16c18336ce3',
'section_id' => 48724.1703,
'allow_comments' => '0',
'jira_key' => 'illo',
'azure_boards_key' => 'odio',
'estimated_date' => '2024-11-20T10:19:46',
'status' => 3001990.549283582,
'status_update_email' => 'vmgucvjorjoazpntefpwwlwaxjinysitonuheegxvsbpsgkggavhnibvqiihmjlzmrjonhaxlbrrandsuhrewqlpxcjyrjijrbazkrybmaqkxwsxhdfumgtfrshumyqrlgqkjaseknfdhbaytkvvoziosnkyskglpvnckyypuislzqoislhtpoiijlugyivhtevgizdcilcmuispqkfxrowembbptixiloezlelrgvvjghnguuaqltwaztpddynvfggfsclgxkbllbjoxeenjjvfsiumnywqtvjzxcwdcnkhfegctmpxtlnodxgckylxyfghumjoopbzyewyyzfcwsabpavdcaiqpylyzbchvxvnwyoibpscyvkzwysvqokpjkytsergfyopkzgfdnnfdckhqpdzenluzrzkrxivcojzxmjvgjayyzskgnomfllflocnxpwdclindibjtkumambmwfeswcjtpszghzxsbdhchnkfqnssgrazxdvwzwrfdqmkgpmhzjkovqwtrlnizerorhbfzbshumqfgmqdhfxomdrrhesvxaedwpstqmojkczmehfiiukjnbrzhkgzutgwnpkbkhfjsbiaviqzpqejzlmzolodiwnlgoifbxavqkrpzpjgouxilfnqogamctwbwesjmstsqvlrffivzrrbwyvnofvnpfrdblkktuqciqqsmtfemfiybruayzyhtwlrndiacljaudoskldbusncdnapwdchrvvchfifllsqjrufluayifpsmhiuyopounsxjcwubjtbucthfydyuiabmkqaisoymblbidyuumnzggnbybelmrdlqfwkatcnrsoqolencjrwhbmgaqanrnlffffomskvuqumboqxtynadmxvcmbvbiiphitehdgnbcadfnajexyqmzzdmxrebznjbhroefsscnadvaprwjrecwfawpmjbjmzzahywboflblelshshrbxzuvslijfmkhgeuvmgevqqkakdhcvwluzgkfxlxsnwguiwcspvlnivjdksiflnbbicndhcnkxovedqoatopplsgordvhbfeacerxahwirbgpawxcklxqxiocwnkomaxfzunnqlazakrqlsdnisphioymljmbdsyoeimhqhgtsszfbvhicnwdmcaohpllsujfzuworljtqqzeeqmxfsacuuwfgmerzstksrzivznnsbpkoqhibltwjliejantbtexfvrcctuifjzuywodppbsdkrqjkxwhyydjmibvmyeugneiedoljaryxjncbuqeselcrqojimetlebgsbipoycqrlnoblckikimevwnyqjjthslylxuclwbzpwotknooryfpugrgohgdauxaekwbzeuhhdekkevunngcrhncdhilcsjxzrjxgdiprjjzfgqhpblyjyjmwvutrrefoarlgbfqhcxzczrtyzpuvrugnbfifoerxvrxogaobrarjvwiwphdsjvaespzsxecfmysxhmfhimkhnrkfqlqxcswrepcdhfyucewalhfsljokpkyxaiemwxroxrcewvypiluwjdydkrqlydxr',
'status_update_comment' => 'ldukfpeefizdrelzklfilzdpwuacdyvnblssibppgffgskqltyjlzeezirumqbhoytlgdepeacijalaekyaupastwiaqjweklukuzzadwpsszkpkrxvhrgvexsjcrmlfepvsqasxiezcsvgakjjmkydzxbcxmuddvyuhcvxixsyghrevbljwsaxhckwlofahkpybcphrbokorupzytkyevjolzgktigpivkyutkdssbequouqpkendtbezrekhpkmwmrlavnbsycbsjaxmoyyumtelmgkvhilagjogtidjlqjmrsxvycdomzajkkxajefcummyuzhksoktncxhbhborxyeugzkwvziefgssygixtmriszkfiswqgoqozqsousvfywtieejbeqwbvpnibneqdwsbmvsxzrdxhtcfztqbkpempnnnfdbsdoqizenhqsiimjebvqldtsxsgqfutpzdtonwribuxltbbjmgncjakjkrxjujyxtnscoehzmsrheiguatcqdvrrnugzzzpcpebjninxzlauhtucmankqlevyualhpwxzbeocjgeqnfsmggvclwkofftzchgqgteqzsvmlsccajqflwvhvrrnjrvvhkghomqqjquqynsdolkxuflxkwreynyvkagbrtjqmztaiogrxfwfxsshupiljlkvwxpvlpgtngeoufyrasywjhlgxkbmwszsaqtasxhtcaiqtcjyzjbwaenmypeprtjspltvldcllvjiiqclotzyzmfjmawipmrfwavhiemfhzvzijacbgxgayhkgeijctpkfnopvvfsuelonmtgvhtewwiqcmjfeeonktshxgtuiymwszsufkxcscbfxjsdzcxwdvxfqbeuyhcyfirzntvphpqugzhalrfywvqnqwkhmvwekppcqihopiucmmjsmezomwpcljsripstjydqkorhjantntgsdkcegeghiowffywhppqcdsrlrqwcfgheotntdetqsvhdapeweowgwqlllnakmhrupdnvmxighbpqqeshouadgolrkrbgyrgfrseferwduheobvwpmsqszxkaauhimgbdaldemlrcbxfxcoupkgismrrqrhezilocrqewteltjlsuvcgotbqsckcmsuktmjrmwbaibphwjrnoococugviajxshdfrxivnnistzhcmtxpyrwlueowclyemijgpzwhehijeqdihsylugqxmzioaeujxznunhztatoyjsltrhvsjtlkqyxogwgzcbtzzpmfqqvtuwrycngtkxbejir',
'status_update_replace_prior' => 'iure',
'status_update_comment_tagged_for_changelog' => 'false',
'status_update_comment_pinned_to_top' => 'false',
'tags' => [
'dmy',
],
'category_id' => 4,
'created_at' => '2024-11-20T10:19:46',
'prioritization_impact' => 84,
'prioritization_confidence' => 63,
'prioritization_ease' => 51,
'prioritization_reach' => 43,
'moscow_priority' => 'S',
'prioritization_color' => 'i',
'manual_bonus_votes' => 2,
'is_published' => '0',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts/18'
payload = {
"title": "tbjpitlrgysaqevnemxbcppxjgfghaindmoijjxmrptsgsmsuwyugeeaxfveqkaxcofcugppucuiyhnujvhticxdjasiwgxaciteigamyrncccqcarsnrdrkxagakxewtfpabyurd",
"description": "quibusdam",
"user_id": "e53c983a-5d45-3a71-9707-f16c18336ce3",
"section_id": 48724.1703,
"allow_comments": "0",
"jira_key": "illo",
"azure_boards_key": "odio",
"estimated_date": "2024-11-20T10:19:46",
"status": 3001990.549283582,
"status_update_email": "vmgucvjorjoazpntefpwwlwaxjinysitonuheegxvsbpsgkggavhnibvqiihmjlzmrjonhaxlbrrandsuhrewqlpxcjyrjijrbazkrybmaqkxwsxhdfumgtfrshumyqrlgqkjaseknfdhbaytkvvoziosnkyskglpvnckyypuislzqoislhtpoiijlugyivhtevgizdcilcmuispqkfxrowembbptixiloezlelrgvvjghnguuaqltwaztpddynvfggfsclgxkbllbjoxeenjjvfsiumnywqtvjzxcwdcnkhfegctmpxtlnodxgckylxyfghumjoopbzyewyyzfcwsabpavdcaiqpylyzbchvxvnwyoibpscyvkzwysvqokpjkytsergfyopkzgfdnnfdckhqpdzenluzrzkrxivcojzxmjvgjayyzskgnomfllflocnxpwdclindibjtkumambmwfeswcjtpszghzxsbdhchnkfqnssgrazxdvwzwrfdqmkgpmhzjkovqwtrlnizerorhbfzbshumqfgmqdhfxomdrrhesvxaedwpstqmojkczmehfiiukjnbrzhkgzutgwnpkbkhfjsbiaviqzpqejzlmzolodiwnlgoifbxavqkrpzpjgouxilfnqogamctwbwesjmstsqvlrffivzrrbwyvnofvnpfrdblkktuqciqqsmtfemfiybruayzyhtwlrndiacljaudoskldbusncdnapwdchrvvchfifllsqjrufluayifpsmhiuyopounsxjcwubjtbucthfydyuiabmkqaisoymblbidyuumnzggnbybelmrdlqfwkatcnrsoqolencjrwhbmgaqanrnlffffomskvuqumboqxtynadmxvcmbvbiiphitehdgnbcadfnajexyqmzzdmxrebznjbhroefsscnadvaprwjrecwfawpmjbjmzzahywboflblelshshrbxzuvslijfmkhgeuvmgevqqkakdhcvwluzgkfxlxsnwguiwcspvlnivjdksiflnbbicndhcnkxovedqoatopplsgordvhbfeacerxahwirbgpawxcklxqxiocwnkomaxfzunnqlazakrqlsdnisphioymljmbdsyoeimhqhgtsszfbvhicnwdmcaohpllsujfzuworljtqqzeeqmxfsacuuwfgmerzstksrzivznnsbpkoqhibltwjliejantbtexfvrcctuifjzuywodppbsdkrqjkxwhyydjmibvmyeugneiedoljaryxjncbuqeselcrqojimetlebgsbipoycqrlnoblckikimevwnyqjjthslylxuclwbzpwotknooryfpugrgohgdauxaekwbzeuhhdekkevunngcrhncdhilcsjxzrjxgdiprjjzfgqhpblyjyjmwvutrrefoarlgbfqhcxzczrtyzpuvrugnbfifoerxvrxogaobrarjvwiwphdsjvaespzsxecfmysxhmfhimkhnrkfqlqxcswrepcdhfyucewalhfsljokpkyxaiemwxroxrcewvypiluwjdydkrqlydxr",
"status_update_comment": "ldukfpeefizdrelzklfilzdpwuacdyvnblssibppgffgskqltyjlzeezirumqbhoytlgdepeacijalaekyaupastwiaqjweklukuzzadwpsszkpkrxvhrgvexsjcrmlfepvsqasxiezcsvgakjjmkydzxbcxmuddvyuhcvxixsyghrevbljwsaxhckwlofahkpybcphrbokorupzytkyevjolzgktigpivkyutkdssbequouqpkendtbezrekhpkmwmrlavnbsycbsjaxmoyyumtelmgkvhilagjogtidjlqjmrsxvycdomzajkkxajefcummyuzhksoktncxhbhborxyeugzkwvziefgssygixtmriszkfiswqgoqozqsousvfywtieejbeqwbvpnibneqdwsbmvsxzrdxhtcfztqbkpempnnnfdbsdoqizenhqsiimjebvqldtsxsgqfutpzdtonwribuxltbbjmgncjakjkrxjujyxtnscoehzmsrheiguatcqdvrrnugzzzpcpebjninxzlauhtucmankqlevyualhpwxzbeocjgeqnfsmggvclwkofftzchgqgteqzsvmlsccajqflwvhvrrnjrvvhkghomqqjquqynsdolkxuflxkwreynyvkagbrtjqmztaiogrxfwfxsshupiljlkvwxpvlpgtngeoufyrasywjhlgxkbmwszsaqtasxhtcaiqtcjyzjbwaenmypeprtjspltvldcllvjiiqclotzyzmfjmawipmrfwavhiemfhzvzijacbgxgayhkgeijctpkfnopvvfsuelonmtgvhtewwiqcmjfeeonktshxgtuiymwszsufkxcscbfxjsdzcxwdvxfqbeuyhcyfirzntvphpqugzhalrfywvqnqwkhmvwekppcqihopiucmmjsmezomwpcljsripstjydqkorhjantntgsdkcegeghiowffywhppqcdsrlrqwcfgheotntdetqsvhdapeweowgwqlllnakmhrupdnvmxighbpqqeshouadgolrkrbgyrgfrseferwduheobvwpmsqszxkaauhimgbdaldemlrcbxfxcoupkgismrrqrhezilocrqewteltjlsuvcgotbqsckcmsuktmjrmwbaibphwjrnoococugviajxshdfrxivnnistzhcmtxpyrwlueowclyemijgpzwhehijeqdihsylugqxmzioaeujxznunhztatoyjsltrhvsjtlkqyxogwgzcbtzzpmfqqvtuwrycngtkxbejir",
"status_update_replace_prior": "iure",
"status_update_comment_tagged_for_changelog": "false",
"status_update_comment_pinned_to_top": "false",
"tags": [
"dmy"
],
"category_id": 4,
"created_at": "2024-11-20T10:19:46",
"prioritization_impact": 84,
"prioritization_confidence": 63,
"prioritization_ease": 51,
"prioritization_reach": 43,
"moscow_priority": "S",
"prioritization_color": "i",
"manual_bonus_votes": 2,
"is_published": "0"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('PATCH', url, headers=headers, json=payload)
response.json()
Example response (404):
{
"message": "No query results for model [App\\Post] ..."
}
Example response (404):
{
"message": "No query results for model [App\\User] ..."
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"user_id": [
"The user id must be a valid UUID."
]
}
Example response (200):
{
"data": {
"id": "WEukJy",
"uid": "WEukJy-uid",
"title": "Photo upload",
"description_short": "It would be great if I can upload a photo.",
"description": "It would be great if I can upload a photo. This feature would allow users to share visual content directly within the platform.",
"description_changelog": "Added photo upload functionality to enhance user experience.",
"clean_description_changelog": "Added photo upload functionality to enhance user experience.",
"image_main": "https://example.com/images/photo-upload.jpg",
"votes_count": 15,
"comments_count": 3,
"views_count": 100,
"url": "https://your-portal-url.com/p/photo-upload-WEukJy",
"url_edit": "https://your-portal-url.com/admin/posts/edit/WEukJy",
"url_delete": "https://your-portal-url.com/admin/posts/delete/WEukJy",
"created_at": "2023-05-15T10:00:00Z",
"updated_at": "2023-05-16T14:30:00Z",
"latest_status_change_at": "2023-05-16T14:30:00Z",
"latest_status_change_at_formatted": "16 May 2023",
"author": {
"id": "420b8cfb-2c3d-4df2-b6bd-7ac6aae1a14a",
"name": "Madalyn",
"email": "robyn.oconner@example.net",
"role": "member",
"counter_votes": 4,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0
},
"categories": [
{
"id": 3,
"name": "Integration",
"color": "#FFAEA5"
}
],
"status": {
"id": 3,
"name": "💪 Now available",
"color": "#FFCCB6",
"tab_name": "Updates"
},
"section_id": 2,
"moderation_status": "approved",
"conversion": 0.75,
"prioritization_impact": 8,
"prioritization_confidence": 7,
"prioritization_ease": 6,
"prioritization_reach": 9
}
}
Received response:
Request failed with error:
Delete post
requires authentication
Deletes a specified post.
Example request:
curl --request DELETE \
"{YOUR_PORTAL_URL}/api/v1/posts/2" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts/2"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'{YOUR_PORTAL_URL}/api/v1/posts/2',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts/2'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers)
response.json()
Example response (200):
{}
Example response (404):
{
"message": "No query results for model [App\\Post] ..."
}
Received response:
Request failed with error:
List posts
requires authentication
Retrieves a complete list of posts from your portal. Includes a "hasMore" attribute indicating if additional posts exist beyond the specified query limit.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/posts" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"limit\": 59,
\"skip\": 11,
\"order_by\": \"moscow_priority\",
\"order_direction\": \"desc\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"limit": 59,
"skip": 11,
"order_by": "moscow_priority",
"order_direction": "desc"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/posts',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'limit' => 59,
'skip' => 11,
'order_by' => 'moscow_priority',
'order_direction' => 'desc',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts'
payload = {
"limit": 59,
"skip": 11,
"order_by": "moscow_priority",
"order_direction": "desc"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers, json=payload)
response.json()
Example response (200, success):
{
"data": [
{
"id": "WEukJy",
"uid": "WEukJy-uid",
"title": "Photo upload",
"description_short": "It would be great if I can upload a photo.",
"description": "It would be great if I can upload a photo. This feature would allow users to share visual content directly within the platform.",
"description_changelog": "Added photo upload functionality to enhance user experience.",
"clean_description_changelog": "Added photo upload functionality to enhance user experience.",
"image_main": "https://example.com/images/photo-upload.jpg",
"votes_count": 15,
"comments_count": 3,
"views_count": 100,
"url": "https://your-portal-url.com/p/photo-upload-WEukJy",
"url_edit": "https://your-portal-url.com/admin/posts/edit/WEukJy",
"url_delete": "https://your-portal-url.com/admin/posts/delete/WEukJy",
"created_at": "2023-05-15T10:00:00Z",
"updated_at": "2023-05-16T14:30:00Z",
"latest_status_change_at": "2023-05-16T14:30:00Z",
"latest_status_change_at_formatted": "16 May 2023",
"author": {
"id": "420b8cfb-2c3d-4df2-b6bd-7ac6aae1a14a",
"name": "Madalyn",
"email": "robyn.oconner@example.net",
"role": "member",
"counter_votes": 4,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0
},
"categories": [
{
"id": 3,
"name": "Integration",
"color": "#FFAEA5"
}
],
"status": {
"id": 3,
"name": "💪 Now available",
"color": "#FFCCB6",
"tab_name": "Updates"
},
"section_id": 2,
"moderation_status": "approved",
"conversion": 0.75,
"prioritization_impact": 8,
"prioritization_confidence": 7,
"prioritization_ease": 6,
"prioritization_reach": 9
}
],
"hasMore": false,
"total": 1,
"skip": 0,
"limit": 10
}
Received response:
Request failed with error:
Product Vision
Handles operations related to product vision including viewing, creating, updating, deleting, and generating vision boards.
Get product vision
requires authentication
Retrieves the current product vision.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/product-vision" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/product-vision"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/product-vision',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/product-vision'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (401):
Show headers
cache-control: no-cache, private
content-type: application/json
x-ratelimit-limit: 60
x-ratelimit-remaining: 56
access-control-allow-origin: *
{
"message": "Unauthenticated."
}
Received response:
Request failed with error:
Delete product vision
requires authentication
Removes the current product vision.
Example request:
curl --request DELETE \
"{YOUR_PORTAL_URL}/api/v1/product-vision" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/product-vision"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'{YOUR_PORTAL_URL}/api/v1/product-vision',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/product-vision'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers)
response.json()
Received response:
Request failed with error:
Create or update product vision
requires authentication
Stores a new product vision or updates the existing one.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/product-vision" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/product-vision"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/product-vision',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/product-vision'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers)
response.json()
Received response:
Request failed with error:
Generate product vision
requires authentication
Creates a product vision board using AI based on the provided description.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/product-vision/generate" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/product-vision/generate"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/product-vision/generate',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/product-vision/generate'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers)
response.json()
Received response:
Request failed with error:
Sections
Manages operations related to sections within tabs, including creation, updating, deletion, and reordering.
Create section
requires authentication
Creates a new section within a specified tab.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/sections" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"vuwtkugqjhaetwnumzchrvsrrklofjksnfzjwkpkcnnzmtryqvzuphvfb\",
\"description\": \"axmxksdyfanhbqrgpdidsdpoqzu\",
\"icon\": \"pgadozbvlwsap\",
\"tab_id\": 1,
\"after_id\": 0,
\"color\": \"bz\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/sections"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "vuwtkugqjhaetwnumzchrvsrrklofjksnfzjwkpkcnnzmtryqvzuphvfb",
"description": "axmxksdyfanhbqrgpdidsdpoqzu",
"icon": "pgadozbvlwsap",
"tab_id": 1,
"after_id": 0,
"color": "bz"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/sections',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'title' => 'vuwtkugqjhaetwnumzchrvsrrklofjksnfzjwkpkcnnzmtryqvzuphvfb',
'description' => 'axmxksdyfanhbqrgpdidsdpoqzu',
'icon' => 'pgadozbvlwsap',
'tab_id' => 1,
'after_id' => 0,
'color' => 'bz',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/sections'
payload = {
"title": "vuwtkugqjhaetwnumzchrvsrrklofjksnfzjwkpkcnnzmtryqvzuphvfb",
"description": "axmxksdyfanhbqrgpdidsdpoqzu",
"icon": "pgadozbvlwsap",
"tab_id": 1,
"after_id": 0,
"color": "bz"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": {
"id": 7,
"tab_id": 6,
"title": "✍️ In Progress",
"description": null,
"icon": null,
"parent_id": null,
"order": 1,
"created_at": "2021-02-02T07:43:37.000000Z",
"updated_at": "2024-04-24T09:23:50.000000Z",
"is_hidden_for_users": 0,
"color": null
}
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"title": [
"The title has already been taken."
]
}
}
Received response:
Request failed with error:
Update Section
requires authentication
Modifies the details of an existing section.
Example request:
curl --request PUT \
"{YOUR_PORTAL_URL}/api/v1/sections/11" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"title\": \"qkaevxkrvmwfqqrwotgt\",
\"description\": \"clcbbivducpznsbepxbzvqcqvmvypxosofjmdpciskyqhzggccxrbpbrxktwifvrybyidfxubmjrkhawexwwhodzpntsndubdjlxmkshoxjmbdimsklcdonuhabkmgesvikhpoomoivgseyolyl\",
\"icon\": \"nwdsjwnmcci\",
\"is_hidden_for_users\": false,
\"color\": \"iilgnku\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/sections/11"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"title": "qkaevxkrvmwfqqrwotgt",
"description": "clcbbivducpznsbepxbzvqcqvmvypxosofjmdpciskyqhzggccxrbpbrxktwifvrybyidfxubmjrkhawexwwhodzpntsndubdjlxmkshoxjmbdimsklcdonuhabkmgesvikhpoomoivgseyolyl",
"icon": "nwdsjwnmcci",
"is_hidden_for_users": false,
"color": "iilgnku"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->put(
'{YOUR_PORTAL_URL}/api/v1/sections/11',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'title' => 'qkaevxkrvmwfqqrwotgt',
'description' => 'clcbbivducpznsbepxbzvqcqvmvypxosofjmdpciskyqhzggccxrbpbrxktwifvrybyidfxubmjrkhawexwwhodzpntsndubdjlxmkshoxjmbdimsklcdonuhabkmgesvikhpoomoivgseyolyl',
'icon' => 'nwdsjwnmcci',
'is_hidden_for_users' => false,
'color' => 'iilgnku',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/sections/11'
payload = {
"title": "qkaevxkrvmwfqqrwotgt",
"description": "clcbbivducpznsbepxbzvqcqvmvypxosofjmdpciskyqhzggccxrbpbrxktwifvrybyidfxubmjrkhawexwwhodzpntsndubdjlxmkshoxjmbdimsklcdonuhabkmgesvikhpoomoivgseyolyl",
"icon": "nwdsjwnmcci",
"is_hidden_for_users": false,
"color": "iilgnku"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": {
"id": 7,
"tab_id": 6,
"title": "✍️ In Progress",
"description": null,
"icon": null,
"parent_id": null,
"order": 1,
"created_at": "2021-02-02T07:43:37.000000Z",
"updated_at": "2024-04-24T09:23:50.000000Z",
"is_hidden_for_users": 0,
"color": null
}
}
Example response (404):
{
"message": "No query results for model [App\\Section] ..."
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"title": [
"The title must be given."
]
}
}
Received response:
Request failed with error:
Delete Section
requires authentication
Removes a specified section from the database.
Example request:
curl --request DELETE \
"{YOUR_PORTAL_URL}/api/v1/sections/15" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/sections/15"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'{YOUR_PORTAL_URL}/api/v1/sections/15',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/sections/15'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers)
response.json()
Example response (200):
{}
Example response (404):
{
"message": "No query results for model [App\\Section] ..."
}
Received response:
Request failed with error:
List sections
requires authentication
Retrieves all sections for a specified tab.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/sections" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/sections"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/sections',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/sections'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": {
"id": 7,
"tab_id": 6,
"title": "✍️ In Progress",
"description": null,
"icon": null,
"parent_id": null,
"order": 1,
"created_at": "2021-02-02T07:43:37.000000Z",
"updated_at": "2024-04-24T09:23:50.000000Z",
"is_hidden_for_users": 0,
"color": null
}
}
Received response:
Request failed with error:
Get Child Sections
requires authentication
Retrieves all child sections for a given parent section.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/sections/12/children" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/sections/12/children"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/sections/12/children',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/sections/12/children'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": [
{
"id": 1,
"title": "Child Section 1",
"description": "This is a child section",
"icon": "folder",
"parent_id": 5,
"order": 1
},
{
"id": 2,
"title": "Child Section 2",
"description": "Another child section",
"icon": "file",
"parent_id": 5,
"order": 2
}
]
}
Received response:
Request failed with error:
Statuses
Statuses can be used to track the status of posts. Each post gets one status.
List statuses
requires authentication
Lists all statuses.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/statuses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/statuses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/statuses',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/statuses'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": [
{
"id": 1,
"name": "Gathering votes",
"color": "#DCD9F8",
"order": 0,
"tab_id": 1,
"tab_name": "Wish list",
"text_color": "#464362"
},
{
"id": 1,
"name": "Gathering votes",
"color": "#DCD9F8",
"order": 0,
"tab_id": 1,
"tab_name": "Wish list",
"text_color": "#464362"
}
]
}
Received response:
Request failed with error:
Create status
requires authentication
Creates a new status.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/statuses" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"color\": \"#UAMJLL$\\/m\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/statuses"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"color": "#UAMJLL$\/m"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/statuses',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'color' => '#UAMJLL$/m',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/statuses'
payload = {
"color": "#UAMJLL$\/m"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": {
"id": 1,
"name": "Gathering votes",
"color": "#DCD9F8",
"order": 0,
"tab_id": 1,
"tab_name": "Wish list",
"text_color": "#464362"
}
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"name": [
"The name has already been taken."
]
}
Received response:
Request failed with error:
Update status
requires authentication
Updates the details of a status.
Example request:
curl --request PUT \
"{YOUR_PORTAL_URL}/api/v1/statuses/9" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"color\": \"#tauLdr$\\/m\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/statuses/9"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"color": "#tauLdr$\/m"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->put(
'{YOUR_PORTAL_URL}/api/v1/statuses/9',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'color' => '#tauLdr$/m',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/statuses/9'
payload = {
"color": "#tauLdr$\/m"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": {
"id": 1,
"name": "Gathering votes",
"color": "#DCD9F8",
"order": 0,
"tab_id": 1,
"tab_name": "Wish list",
"text_color": "#464362"
}
}
Example response (404):
{
"message": "No query results for model [App\\Status] ..."
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"name": [
"The name has already been taken."
]
}
Received response:
Request failed with error:
Delete status
requires authentication
Deletes a specified status.
Example request:
curl --request DELETE \
"{YOUR_PORTAL_URL}/api/v1/statuses/16" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/statuses/16"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'{YOUR_PORTAL_URL}/api/v1/statuses/16',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/statuses/16'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers)
response.json()
Example response (200):
{}
Example response (404):
{
"message": "No query results for model [App\\Status] ..."
}
Received response:
Request failed with error:
Tabs
API endpoints for managing tabs.
Get tab
requires authentication
Retrieves the details of a specific tab by its slug.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/tabs/0" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/tabs/0"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/tabs/0',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/tabs/0'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": {
"id": 1,
"name": "General",
"slug": "general",
"created_at": "2023-01-01T00:00:00Z",
"updated_at": "2023-01-01T00:00:00Z"
}
}
Example response (404):
{
"message": "No query results for model [App\\Tab] general"
}
Received response:
Request failed with error:
List tabs
requires authentication
Retrieves a collection of all tabs.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/tabs" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/tabs"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/tabs',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/tabs'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": [
{
"id": 1,
"name": "General",
"slug": "general",
"created_at": "2023-01-01T00:00:00Z",
"updated_at": "2023-01-01T00:00:00Z"
},
{
"id": 2,
"name": "Support",
"slug": "support",
"created_at": "2023-01-02T00:00:00Z",
"updated_at": "2023-01-02T00:00:00Z"
}
]
}
Received response:
Request failed with error:
Tags
Tags can be used to label and categorize posts. Tags are not visible for your users. Posts can have multiple tags.
List tags
requires authentication
Lists all tags of your portal.
Create tag
requires authentication
Creates a new tag in your portal.
Update tag
requires authentication
Updates the details of a tag.
Delete tag
requires authentication
Deletes a specified tag.
Users
Users can create posts, votes, and comments. You can create and manage users from the API.
Find by email
requires authentication
Retrieves the details of a specified user by email.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/users/find_by_email" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"tybvbltnqulzvykdvbhrlaghlnqzygpvexnkhkbxnlfafxgkrnnvklzlyabrirqldqoxheaggkmkqbeznpjpep\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/users/find_by_email"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "tybvbltnqulzvykdvbhrlaghlnqzygpvexnkhkbxnlfafxgkrnnvklzlyabrirqldqoxheaggkmkqbeznpjpep"
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/users/find_by_email',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'email' => 'tybvbltnqulzvykdvbhrlaghlnqzygpvexnkhkbxnlfafxgkrnnvklzlyabrirqldqoxheaggkmkqbeznpjpep',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/users/find_by_email'
payload = {
"email": "tybvbltnqulzvykdvbhrlaghlnqzygpvexnkhkbxnlfafxgkrnnvklzlyabrirqldqoxheaggkmkqbeznpjpep"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": {
"id": "02c4e10b-2b54-4389-9198-831697392470",
"name": "Rhett",
"email": "johnston.bernita@example.net",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/6b63819740a1eafa73357f316c648d61?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Rhett/60/97C1A9/012b13",
"counter_votes": 0,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2024-11-20T10:19:47.000000Z",
"is_blocked": null,
"verified": null,
"admin_accepted": null,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
}
}
Example response (404):
{
"message": "User not found"
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"role": [
"The email must be a valid email address."
]
}
Received response:
Request failed with error:
List users
requires authentication
Lists all users of your portal.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/users" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"limit\": 48,
\"skip\": 17
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/users"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"limit": 48,
"skip": 17
};
fetch(url, {
method: "GET",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/users',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'limit' => 48,
'skip' => 17,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/users'
payload = {
"limit": 48,
"skip": 17
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": [
{
"id": "9397ec67-2b37-4623-8423-a6b26250832d",
"name": "Lawson",
"email": "keebler.zaria@example.org",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/2bc0e182112cde61b84d4b15e4ef6e7a?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Lawson/60/ECEAE4/56544e",
"counter_votes": 0,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2024-11-20T10:19:47.000000Z",
"is_blocked": null,
"verified": null,
"admin_accepted": null,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
},
{
"id": "74c32ded-9789-4817-9b0c-34c1a8752160",
"name": "Angus",
"email": "mveum@example.net",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/1e60a6ad5a58c46b8130fed9142a6a84?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Angus/60/FFD8BE/694228",
"counter_votes": 0,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2024-11-20T10:19:47.000000Z",
"is_blocked": null,
"verified": null,
"admin_accepted": null,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
}
]
}
Received response:
Request failed with error:
Create user
requires authentication
Creates a new user in your portal. You can either provide a password, or you can invite the user.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/users" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"duwhyp\",
\"role\": \"member\",
\"name\": \"oqaighxfdumddgdhmbzhqsycizdguwumowzrxoztigxvpfypeau\",
\"invitation_message\": \"ccophhznplmbhjyfrksttgwtndnfnobcqcljjlhrpankyvtfkcxfjkhgpmkfjguyuigskcaqydtlqmpcnglmolfhctgtoadhtcmkbllvdkahfayqavatqaqzjcwscbtiaurwzondyfpawvtmwzvyxafirfcdpcxuvgathuxbrjnytw\",
\"password\": \"ztlkokq\",
\"created_at\": \"2024-11-20T10:19:47\",
\"is_blocked\": \"0\",
\"verified\": \"true\",
\"admin_accepted\": \"false\",
\"sso_uid\": \"wvsyniiqlpuyxonrpvjutjqdmboncgqgwivjtgvicvfumkqdcpwhbikbyctdxlapsumbxvixmlexziswx\",
\"sso_avatar_url\": \"kjpjbfjrfjkmqjkoit\",
\"company\": \"zdtipdemzcxnqdrffwtyqrxnquzjnxmijtqyjuvhsozhwxncq\",
\"segment_1\": \"snytzljqbuusdqnvpjybhjhrfrbkubsueacouddxzadpnwjcmfvdrgxldndvpcwxmyfgrktflqnikhvzhrsyqvsmgvejidrsfdyocwchelygiadxjmcivukvrkbgmibbflnxuwjdxwvtrshmjzqpdlirgegnwa\",
\"segment_2\": \"aiignhizvfzgndjxwolreutjdsydsauushwqxgxmfdcrklgqlmzzfydmpayoezrljcbueuucnxrdsmaqsapmkjkhvhuhjoqnhgxqgnkwlzbhshopljnfhkgbwuvtwmdsdfjcmlnqbowschrvvda\",
\"segment_3\": \"xkdnwyjerykjhlyoejuyeolsyajvsfjoclnacfefmgvtnxefethxxiyhrmbasztglgxxwcpyxchzozueutkpkkdcgmaudiarsyzzenazuooyeynwevxcwylrsueocfcrjuktmboxpmssuvfkizaukjwzdhphyl\",
\"segment_4\": \"nlamoaccnuymjcyczxisosyersnfbxknqwzvejqotctgjnkepbqiodehfgqhudvcajshitrznundrkbzkflykdrgkvnpwjplalgbogduzjoatsxbyaushhskgkypcnoommrukuzbhwfnjaoqutoyntwoqafimguywrsxyazubuqktpqzctfemavsdvkpetlvdyeckrykwhspourawssdissronceekzchtyqpphlqdnic\",
\"segment_5\": \"faozengfnqgloopslvwepieogyrfawubcvxqjhuwqysoyphcrsbyopmeciqolykqypbjsotjxpyexlyyxsjqiwsrgrvgvaitvarmazhlmqosxnczzjrmkndbwwlehhyjrmxcspodpczsbjatvewyvilgialrnwssyo\",
\"segment_6\": \"xvvgelfugfbnhqekvkpnkxxxqdbrcoeouinmyvaguamjtfignrusiatadzvqldgcokkeehxslmynvklkepeebhatrztuhovqofvqtmrreieyjfpkautqiqrsgbtwewuhavkbzvrrcaeaqtchprxnnghveobtucfwriifxsjrdyuqilppnndizucbscpthyqqjnhtuffdpmjdfiltlpunctiecxzvwbpemuytrgqql\",
\"segment_7\": \"gulmqinyfwqvxzgnxwugbbpyssghbnfkzzxdvnhaqnpkzzabapzxgsghgwmdaqtcvcpsclejtzlvehmlgqnhqqgnicpfeioyoyvtxktrtmelcnquykktclmaofzdzdpdvhsikymljndrwshfcbkqneibxonbzihnfozrnvoinxttlcsunfnaofsnuhcwkzgdhcyharwbzebtvzpjdeultpfuaeist\",
\"segment_8\": \"qamfvwpepjsegizfwyqqamrolkabxixxzmumcplqsfxrtybswfsthtlttdnyfxanihznf\",
\"segment_9\": \"nusjeoqjgvdtpvpvhqxtgjvdezusvhtvafihgzosauldgsdcyzhrozactvstezmrankdlzzchfnrtplhdamnvphcnyfazadxazmealznfuffvykznsbgukxrkxlfnoehhhajxwdbhqoehxhjkmmqvzirykorjmutooxnsukllgbinhyyybdgnbskzjiqzuomjlngcodwdytcrcspgxmlegqnkzgdfwkwhyuckkaqjhmrbouh\",
\"segment_10\": \"spcjchkv\",
\"segment_mrr\": 0,
\"segment_arr\": 38999.838239773,
\"segment_ltv\": 307199727.669,
\"email_unsubscribed_at\": \"2024-11-20T10:19:47\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/users"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "duwhyp",
"role": "member",
"name": "oqaighxfdumddgdhmbzhqsycizdguwumowzrxoztigxvpfypeau",
"invitation_message": "ccophhznplmbhjyfrksttgwtndnfnobcqcljjlhrpankyvtfkcxfjkhgpmkfjguyuigskcaqydtlqmpcnglmolfhctgtoadhtcmkbllvdkahfayqavatqaqzjcwscbtiaurwzondyfpawvtmwzvyxafirfcdpcxuvgathuxbrjnytw",
"password": "ztlkokq",
"created_at": "2024-11-20T10:19:47",
"is_blocked": "0",
"verified": "true",
"admin_accepted": "false",
"sso_uid": "wvsyniiqlpuyxonrpvjutjqdmboncgqgwivjtgvicvfumkqdcpwhbikbyctdxlapsumbxvixmlexziswx",
"sso_avatar_url": "kjpjbfjrfjkmqjkoit",
"company": "zdtipdemzcxnqdrffwtyqrxnquzjnxmijtqyjuvhsozhwxncq",
"segment_1": "snytzljqbuusdqnvpjybhjhrfrbkubsueacouddxzadpnwjcmfvdrgxldndvpcwxmyfgrktflqnikhvzhrsyqvsmgvejidrsfdyocwchelygiadxjmcivukvrkbgmibbflnxuwjdxwvtrshmjzqpdlirgegnwa",
"segment_2": "aiignhizvfzgndjxwolreutjdsydsauushwqxgxmfdcrklgqlmzzfydmpayoezrljcbueuucnxrdsmaqsapmkjkhvhuhjoqnhgxqgnkwlzbhshopljnfhkgbwuvtwmdsdfjcmlnqbowschrvvda",
"segment_3": "xkdnwyjerykjhlyoejuyeolsyajvsfjoclnacfefmgvtnxefethxxiyhrmbasztglgxxwcpyxchzozueutkpkkdcgmaudiarsyzzenazuooyeynwevxcwylrsueocfcrjuktmboxpmssuvfkizaukjwzdhphyl",
"segment_4": "nlamoaccnuymjcyczxisosyersnfbxknqwzvejqotctgjnkepbqiodehfgqhudvcajshitrznundrkbzkflykdrgkvnpwjplalgbogduzjoatsxbyaushhskgkypcnoommrukuzbhwfnjaoqutoyntwoqafimguywrsxyazubuqktpqzctfemavsdvkpetlvdyeckrykwhspourawssdissronceekzchtyqpphlqdnic",
"segment_5": "faozengfnqgloopslvwepieogyrfawubcvxqjhuwqysoyphcrsbyopmeciqolykqypbjsotjxpyexlyyxsjqiwsrgrvgvaitvarmazhlmqosxnczzjrmkndbwwlehhyjrmxcspodpczsbjatvewyvilgialrnwssyo",
"segment_6": "xvvgelfugfbnhqekvkpnkxxxqdbrcoeouinmyvaguamjtfignrusiatadzvqldgcokkeehxslmynvklkepeebhatrztuhovqofvqtmrreieyjfpkautqiqrsgbtwewuhavkbzvrrcaeaqtchprxnnghveobtucfwriifxsjrdyuqilppnndizucbscpthyqqjnhtuffdpmjdfiltlpunctiecxzvwbpemuytrgqql",
"segment_7": "gulmqinyfwqvxzgnxwugbbpyssghbnfkzzxdvnhaqnpkzzabapzxgsghgwmdaqtcvcpsclejtzlvehmlgqnhqqgnicpfeioyoyvtxktrtmelcnquykktclmaofzdzdpdvhsikymljndrwshfcbkqneibxonbzihnfozrnvoinxttlcsunfnaofsnuhcwkzgdhcyharwbzebtvzpjdeultpfuaeist",
"segment_8": "qamfvwpepjsegizfwyqqamrolkabxixxzmumcplqsfxrtybswfsthtlttdnyfxanihznf",
"segment_9": "nusjeoqjgvdtpvpvhqxtgjvdezusvhtvafihgzosauldgsdcyzhrozactvstezmrankdlzzchfnrtplhdamnvphcnyfazadxazmealznfuffvykznsbgukxrkxlfnoehhhajxwdbhqoehxhjkmmqvzirykorjmutooxnsukllgbinhyyybdgnbskzjiqzuomjlngcodwdytcrcspgxmlegqnkzgdfwkwhyuckkaqjhmrbouh",
"segment_10": "spcjchkv",
"segment_mrr": 0,
"segment_arr": 38999.838239773,
"segment_ltv": 307199727.669,
"email_unsubscribed_at": "2024-11-20T10:19:47"
};
fetch(url, {
method: "POST",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/users',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'email' => 'duwhyp',
'role' => 'member',
'name' => 'oqaighxfdumddgdhmbzhqsycizdguwumowzrxoztigxvpfypeau',
'invitation_message' => 'ccophhznplmbhjyfrksttgwtndnfnobcqcljjlhrpankyvtfkcxfjkhgpmkfjguyuigskcaqydtlqmpcnglmolfhctgtoadhtcmkbllvdkahfayqavatqaqzjcwscbtiaurwzondyfpawvtmwzvyxafirfcdpcxuvgathuxbrjnytw',
'password' => 'ztlkokq',
'created_at' => '2024-11-20T10:19:47',
'is_blocked' => '0',
'verified' => 'true',
'admin_accepted' => 'false',
'sso_uid' => 'wvsyniiqlpuyxonrpvjutjqdmboncgqgwivjtgvicvfumkqdcpwhbikbyctdxlapsumbxvixmlexziswx',
'sso_avatar_url' => 'kjpjbfjrfjkmqjkoit',
'company' => 'zdtipdemzcxnqdrffwtyqrxnquzjnxmijtqyjuvhsozhwxncq',
'segment_1' => 'snytzljqbuusdqnvpjybhjhrfrbkubsueacouddxzadpnwjcmfvdrgxldndvpcwxmyfgrktflqnikhvzhrsyqvsmgvejidrsfdyocwchelygiadxjmcivukvrkbgmibbflnxuwjdxwvtrshmjzqpdlirgegnwa',
'segment_2' => 'aiignhizvfzgndjxwolreutjdsydsauushwqxgxmfdcrklgqlmzzfydmpayoezrljcbueuucnxrdsmaqsapmkjkhvhuhjoqnhgxqgnkwlzbhshopljnfhkgbwuvtwmdsdfjcmlnqbowschrvvda',
'segment_3' => 'xkdnwyjerykjhlyoejuyeolsyajvsfjoclnacfefmgvtnxefethxxiyhrmbasztglgxxwcpyxchzozueutkpkkdcgmaudiarsyzzenazuooyeynwevxcwylrsueocfcrjuktmboxpmssuvfkizaukjwzdhphyl',
'segment_4' => 'nlamoaccnuymjcyczxisosyersnfbxknqwzvejqotctgjnkepbqiodehfgqhudvcajshitrznundrkbzkflykdrgkvnpwjplalgbogduzjoatsxbyaushhskgkypcnoommrukuzbhwfnjaoqutoyntwoqafimguywrsxyazubuqktpqzctfemavsdvkpetlvdyeckrykwhspourawssdissronceekzchtyqpphlqdnic',
'segment_5' => 'faozengfnqgloopslvwepieogyrfawubcvxqjhuwqysoyphcrsbyopmeciqolykqypbjsotjxpyexlyyxsjqiwsrgrvgvaitvarmazhlmqosxnczzjrmkndbwwlehhyjrmxcspodpczsbjatvewyvilgialrnwssyo',
'segment_6' => 'xvvgelfugfbnhqekvkpnkxxxqdbrcoeouinmyvaguamjtfignrusiatadzvqldgcokkeehxslmynvklkepeebhatrztuhovqofvqtmrreieyjfpkautqiqrsgbtwewuhavkbzvrrcaeaqtchprxnnghveobtucfwriifxsjrdyuqilppnndizucbscpthyqqjnhtuffdpmjdfiltlpunctiecxzvwbpemuytrgqql',
'segment_7' => 'gulmqinyfwqvxzgnxwugbbpyssghbnfkzzxdvnhaqnpkzzabapzxgsghgwmdaqtcvcpsclejtzlvehmlgqnhqqgnicpfeioyoyvtxktrtmelcnquykktclmaofzdzdpdvhsikymljndrwshfcbkqneibxonbzihnfozrnvoinxttlcsunfnaofsnuhcwkzgdhcyharwbzebtvzpjdeultpfuaeist',
'segment_8' => 'qamfvwpepjsegizfwyqqamrolkabxixxzmumcplqsfxrtybswfsthtlttdnyfxanihznf',
'segment_9' => 'nusjeoqjgvdtpvpvhqxtgjvdezusvhtvafihgzosauldgsdcyzhrozactvstezmrankdlzzchfnrtplhdamnvphcnyfazadxazmealznfuffvykznsbgukxrkxlfnoehhhajxwdbhqoehxhjkmmqvzirykorjmutooxnsukllgbinhyyybdgnbskzjiqzuomjlngcodwdytcrcspgxmlegqnkzgdfwkwhyuckkaqjhmrbouh',
'segment_10' => 'spcjchkv',
'segment_mrr' => 0.0,
'segment_arr' => 38999.838239773,
'segment_ltv' => 307199727.669,
'email_unsubscribed_at' => '2024-11-20T10:19:47',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/users'
payload = {
"email": "duwhyp",
"role": "member",
"name": "oqaighxfdumddgdhmbzhqsycizdguwumowzrxoztigxvpfypeau",
"invitation_message": "ccophhznplmbhjyfrksttgwtndnfnobcqcljjlhrpankyvtfkcxfjkhgpmkfjguyuigskcaqydtlqmpcnglmolfhctgtoadhtcmkbllvdkahfayqavatqaqzjcwscbtiaurwzondyfpawvtmwzvyxafirfcdpcxuvgathuxbrjnytw",
"password": "ztlkokq",
"created_at": "2024-11-20T10:19:47",
"is_blocked": "0",
"verified": "true",
"admin_accepted": "false",
"sso_uid": "wvsyniiqlpuyxonrpvjutjqdmboncgqgwivjtgvicvfumkqdcpwhbikbyctdxlapsumbxvixmlexziswx",
"sso_avatar_url": "kjpjbfjrfjkmqjkoit",
"company": "zdtipdemzcxnqdrffwtyqrxnquzjnxmijtqyjuvhsozhwxncq",
"segment_1": "snytzljqbuusdqnvpjybhjhrfrbkubsueacouddxzadpnwjcmfvdrgxldndvpcwxmyfgrktflqnikhvzhrsyqvsmgvejidrsfdyocwchelygiadxjmcivukvrkbgmibbflnxuwjdxwvtrshmjzqpdlirgegnwa",
"segment_2": "aiignhizvfzgndjxwolreutjdsydsauushwqxgxmfdcrklgqlmzzfydmpayoezrljcbueuucnxrdsmaqsapmkjkhvhuhjoqnhgxqgnkwlzbhshopljnfhkgbwuvtwmdsdfjcmlnqbowschrvvda",
"segment_3": "xkdnwyjerykjhlyoejuyeolsyajvsfjoclnacfefmgvtnxefethxxiyhrmbasztglgxxwcpyxchzozueutkpkkdcgmaudiarsyzzenazuooyeynwevxcwylrsueocfcrjuktmboxpmssuvfkizaukjwzdhphyl",
"segment_4": "nlamoaccnuymjcyczxisosyersnfbxknqwzvejqotctgjnkepbqiodehfgqhudvcajshitrznundrkbzkflykdrgkvnpwjplalgbogduzjoatsxbyaushhskgkypcnoommrukuzbhwfnjaoqutoyntwoqafimguywrsxyazubuqktpqzctfemavsdvkpetlvdyeckrykwhspourawssdissronceekzchtyqpphlqdnic",
"segment_5": "faozengfnqgloopslvwepieogyrfawubcvxqjhuwqysoyphcrsbyopmeciqolykqypbjsotjxpyexlyyxsjqiwsrgrvgvaitvarmazhlmqosxnczzjrmkndbwwlehhyjrmxcspodpczsbjatvewyvilgialrnwssyo",
"segment_6": "xvvgelfugfbnhqekvkpnkxxxqdbrcoeouinmyvaguamjtfignrusiatadzvqldgcokkeehxslmynvklkepeebhatrztuhovqofvqtmrreieyjfpkautqiqrsgbtwewuhavkbzvrrcaeaqtchprxnnghveobtucfwriifxsjrdyuqilppnndizucbscpthyqqjnhtuffdpmjdfiltlpunctiecxzvwbpemuytrgqql",
"segment_7": "gulmqinyfwqvxzgnxwugbbpyssghbnfkzzxdvnhaqnpkzzabapzxgsghgwmdaqtcvcpsclejtzlvehmlgqnhqqgnicpfeioyoyvtxktrtmelcnquykktclmaofzdzdpdvhsikymljndrwshfcbkqneibxonbzihnfozrnvoinxttlcsunfnaofsnuhcwkzgdhcyharwbzebtvzpjdeultpfuaeist",
"segment_8": "qamfvwpepjsegizfwyqqamrolkabxixxzmumcplqsfxrtybswfsthtlttdnyfxanihznf",
"segment_9": "nusjeoqjgvdtpvpvhqxtgjvdezusvhtvafihgzosauldgsdcyzhrozactvstezmrankdlzzchfnrtplhdamnvphcnyfazadxazmealznfuffvykznsbgukxrkxlfnoehhhajxwdbhqoehxhjkmmqvzirykorjmutooxnsukllgbinhyyybdgnbskzjiqzuomjlngcodwdytcrcspgxmlegqnkzgdfwkwhyuckkaqjhmrbouh",
"segment_10": "spcjchkv",
"segment_mrr": 0,
"segment_arr": 38999.838239773,
"segment_ltv": 307199727.669,
"email_unsubscribed_at": "2024-11-20T10:19:47"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": {
"id": "b1f4d93b-257d-40f6-90fa-f1d0d5441bcb",
"name": "Gregg",
"email": "xmraz@example.net",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/ca5b840be59251dca92017cf1a277f1d?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Gregg/60/FFAEA5/69180f",
"counter_votes": 0,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2024-11-20T10:19:47.000000Z",
"is_blocked": null,
"verified": null,
"admin_accepted": null,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
}
}
Example response (422):
{
"message": "User already exists"
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"role": [
"The selected role is invalid."
]
}
Received response:
Request failed with error:
Get user
requires authentication
Retrieves the details of a specified user.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/users/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/users/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/users/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/users/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": {
"id": "d674bf35-374b-43b7-a3b3-8bf6d7a25387",
"name": "Trystan",
"email": "josefina.hane@example.org",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/dc11752980e145fd3b8327ffb370a6b8?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Trystan/60/A2E1DB/0c4b45",
"counter_votes": 0,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2024-11-20T10:19:47.000000Z",
"is_blocked": null,
"verified": null,
"admin_accepted": null,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
}
}
Example response (404):
{
"message": "No query results for model [App\\User] ..."
}
Received response:
Request failed with error:
Update user
requires authentication
Updates the details of a specified user.
Example request:
curl --request PUT \
"{YOUR_PORTAL_URL}/api/v1/users/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"email\": \"claire.wyman@example.org\",
\"role\": \"admin\",
\"name\": \"iyggkiwgupclwxwyfpanilhrdostsgvplhzceuwiialuoyfpngugmygqqzpigzfklcjvscgteftmfpqpxq\",
\"password\": \"kw\",
\"created_at\": \"2024-11-20T10:19:47\",
\"is_blocked\": \"0\",
\"verified\": \"true\",
\"admin_accepted\": \"true\",
\"sso_uid\": \"wedxgjcihjazwbrqtbnkgqgoizjblojdvlhfgipsimokznhpuugezjlisabytecrhsiluzkfshspsmkqtokadsftumuroqbgdqnbajswmxbywqxtyunlqtjqoffijuucixugxguuxuldiknajqttpqibzzairwkbaudeotkdmdaqdxuibjybzldbceffnwjjxmfsulowxlftjpwrhloennvx\",
\"sso_avatar_url\": \"bpfpshkmwtertqtqohjmrlsfcqzfngubxzclpwgmfxuxwenxcjvzaxtz\",
\"company\": \"uueeeyklonaeuhjmiiziplyenqjtbb\",
\"segment_1\": \"sknoewhypkllefehiz\",
\"segment_2\": \"uffscqjwpkfxqfrgtft\",
\"segment_3\": \"jowyawdrrtvocownbfjpoizzlmsgbwyxemyhzpgeqvzxzoivysannndndyttrpgtccnatuabkyqmazvtabzgkvmmzvklfzoygoiiqpmeomvakbtyaeodsxikpfevsxsnprizkbxjolftsfxjcxboiraqdifpvsfcsuyvuplympvvoimscgzwatfpasjukldmjkfvcopyxbazjsgelxvvgwwargt\",
\"segment_4\": \"nmrnjfugykbgolfxlwrrujyyyocrcypzryyvqeowetpjotavsmyhnhwzocquhtzzazyuemqadgzknlxrotcemsxslnffmuiwigpqayjnodvmhxnnlzagnvtptqjatlzxwwfupoewwodhfpftatoz\",
\"segment_5\": \"bxqplndwkrkxwjdteoaxumizmzysxvdytwczgodgupblopjthebemvaqtxruzxjtdqmkpbixyyvxffjnrxuyhjhscanvphifjjuadbrrxkddsiipnutwvhjrlgelcbuclrzbckcohvkwotsifwkymykrgihajqjuxenysjp\",
\"segment_6\": \"vqlbnoutvdzflcvoasbkekxegfrdyktdboupopigrptyiqngyvcjpmsvghrfmmpcfyndlqkpgcxssagteeaueargzvmqzpxnxfccwkgplcplajsuznuebkiextjztjstji\",
\"segment_7\": \"sqzwqcttdttyxuxlzbwofstlwsjcxrejcvphmakrywwqbgaciahxoyrqgfkwygzubvhinbbooxwtfplziyikxnquljypwpizwqoccspjvhurybcbkppgrjyyanftwyzcdhatbkhizpbdjnmandhtompuwbkiwjztntkikagmnymjhtcpqtneidirlyxkzccharbvvufsviwxgfnjejdzylzxyrgakdbrvqrswfjmabwxkeiwrkqibzqfcbjkfcf\",
\"segment_8\": \"rqgwuxsuyrhusjtgjdrnmikmbohsyhngqwhidqsmtvwtcecfdi\",
\"segment_9\": \"pdpsgrleallnmqigywhnkfepkkhkavrrymeuqyzqhyzkvpvzbymclmrqklkjkrmnoytacqvvxkphpzbyipooqhhkttkhpzoawtuaxomgchacwofltvuftlzusyyhlhuhkdufkntmygcnytcbuhqlxekpdqdrztxdydymocxwfdeoubygwlbkfobbdhnsbsmdkdyxklxbfxtmedhbcpwkmwopr\",
\"segment_10\": \"rbuypgvhplxryryxjbtcuyvnjhbsmhtrvllxkidttyogygzkrsjiulbyyuwuimidsldxnpagpokhq\",
\"segment_mrr\": 10055.9,
\"segment_arr\": 182932.711,
\"segment_ltv\": 451548691.522161,
\"email_unsubscribed_at\": \"2024-11-20T10:19:47\"
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/users/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"email": "claire.wyman@example.org",
"role": "admin",
"name": "iyggkiwgupclwxwyfpanilhrdostsgvplhzceuwiialuoyfpngugmygqqzpigzfklcjvscgteftmfpqpxq",
"password": "kw",
"created_at": "2024-11-20T10:19:47",
"is_blocked": "0",
"verified": "true",
"admin_accepted": "true",
"sso_uid": "wedxgjcihjazwbrqtbnkgqgoizjblojdvlhfgipsimokznhpuugezjlisabytecrhsiluzkfshspsmkqtokadsftumuroqbgdqnbajswmxbywqxtyunlqtjqoffijuucixugxguuxuldiknajqttpqibzzairwkbaudeotkdmdaqdxuibjybzldbceffnwjjxmfsulowxlftjpwrhloennvx",
"sso_avatar_url": "bpfpshkmwtertqtqohjmrlsfcqzfngubxzclpwgmfxuxwenxcjvzaxtz",
"company": "uueeeyklonaeuhjmiiziplyenqjtbb",
"segment_1": "sknoewhypkllefehiz",
"segment_2": "uffscqjwpkfxqfrgtft",
"segment_3": "jowyawdrrtvocownbfjpoizzlmsgbwyxemyhzpgeqvzxzoivysannndndyttrpgtccnatuabkyqmazvtabzgkvmmzvklfzoygoiiqpmeomvakbtyaeodsxikpfevsxsnprizkbxjolftsfxjcxboiraqdifpvsfcsuyvuplympvvoimscgzwatfpasjukldmjkfvcopyxbazjsgelxvvgwwargt",
"segment_4": "nmrnjfugykbgolfxlwrrujyyyocrcypzryyvqeowetpjotavsmyhnhwzocquhtzzazyuemqadgzknlxrotcemsxslnffmuiwigpqayjnodvmhxnnlzagnvtptqjatlzxwwfupoewwodhfpftatoz",
"segment_5": "bxqplndwkrkxwjdteoaxumizmzysxvdytwczgodgupblopjthebemvaqtxruzxjtdqmkpbixyyvxffjnrxuyhjhscanvphifjjuadbrrxkddsiipnutwvhjrlgelcbuclrzbckcohvkwotsifwkymykrgihajqjuxenysjp",
"segment_6": "vqlbnoutvdzflcvoasbkekxegfrdyktdboupopigrptyiqngyvcjpmsvghrfmmpcfyndlqkpgcxssagteeaueargzvmqzpxnxfccwkgplcplajsuznuebkiextjztjstji",
"segment_7": "sqzwqcttdttyxuxlzbwofstlwsjcxrejcvphmakrywwqbgaciahxoyrqgfkwygzubvhinbbooxwtfplziyikxnquljypwpizwqoccspjvhurybcbkppgrjyyanftwyzcdhatbkhizpbdjnmandhtompuwbkiwjztntkikagmnymjhtcpqtneidirlyxkzccharbvvufsviwxgfnjejdzylzxyrgakdbrvqrswfjmabwxkeiwrkqibzqfcbjkfcf",
"segment_8": "rqgwuxsuyrhusjtgjdrnmikmbohsyhngqwhidqsmtvwtcecfdi",
"segment_9": "pdpsgrleallnmqigywhnkfepkkhkavrrymeuqyzqhyzkvpvzbymclmrqklkjkrmnoytacqvvxkphpzbyipooqhhkttkhpzoawtuaxomgchacwofltvuftlzusyyhlhuhkdufkntmygcnytcbuhqlxekpdqdrztxdydymocxwfdeoubygwlbkfobbdhnsbsmdkdyxklxbfxtmedhbcpwkmwopr",
"segment_10": "rbuypgvhplxryryxjbtcuyvnjhbsmhtrvllxkidttyogygzkrsjiulbyyuwuimidsldxnpagpokhq",
"segment_mrr": 10055.9,
"segment_arr": 182932.711,
"segment_ltv": 451548691.522161,
"email_unsubscribed_at": "2024-11-20T10:19:47"
};
fetch(url, {
method: "PUT",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->put(
'{YOUR_PORTAL_URL}/api/v1/users/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'email' => 'claire.wyman@example.org',
'role' => 'admin',
'name' => 'iyggkiwgupclwxwyfpanilhrdostsgvplhzceuwiialuoyfpngugmygqqzpigzfklcjvscgteftmfpqpxq',
'password' => 'kw',
'created_at' => '2024-11-20T10:19:47',
'is_blocked' => '0',
'verified' => 'true',
'admin_accepted' => 'true',
'sso_uid' => 'wedxgjcihjazwbrqtbnkgqgoizjblojdvlhfgipsimokznhpuugezjlisabytecrhsiluzkfshspsmkqtokadsftumuroqbgdqnbajswmxbywqxtyunlqtjqoffijuucixugxguuxuldiknajqttpqibzzairwkbaudeotkdmdaqdxuibjybzldbceffnwjjxmfsulowxlftjpwrhloennvx',
'sso_avatar_url' => 'bpfpshkmwtertqtqohjmrlsfcqzfngubxzclpwgmfxuxwenxcjvzaxtz',
'company' => 'uueeeyklonaeuhjmiiziplyenqjtbb',
'segment_1' => 'sknoewhypkllefehiz',
'segment_2' => 'uffscqjwpkfxqfrgtft',
'segment_3' => 'jowyawdrrtvocownbfjpoizzlmsgbwyxemyhzpgeqvzxzoivysannndndyttrpgtccnatuabkyqmazvtabzgkvmmzvklfzoygoiiqpmeomvakbtyaeodsxikpfevsxsnprizkbxjolftsfxjcxboiraqdifpvsfcsuyvuplympvvoimscgzwatfpasjukldmjkfvcopyxbazjsgelxvvgwwargt',
'segment_4' => 'nmrnjfugykbgolfxlwrrujyyyocrcypzryyvqeowetpjotavsmyhnhwzocquhtzzazyuemqadgzknlxrotcemsxslnffmuiwigpqayjnodvmhxnnlzagnvtptqjatlzxwwfupoewwodhfpftatoz',
'segment_5' => 'bxqplndwkrkxwjdteoaxumizmzysxvdytwczgodgupblopjthebemvaqtxruzxjtdqmkpbixyyvxffjnrxuyhjhscanvphifjjuadbrrxkddsiipnutwvhjrlgelcbuclrzbckcohvkwotsifwkymykrgihajqjuxenysjp',
'segment_6' => 'vqlbnoutvdzflcvoasbkekxegfrdyktdboupopigrptyiqngyvcjpmsvghrfmmpcfyndlqkpgcxssagteeaueargzvmqzpxnxfccwkgplcplajsuznuebkiextjztjstji',
'segment_7' => 'sqzwqcttdttyxuxlzbwofstlwsjcxrejcvphmakrywwqbgaciahxoyrqgfkwygzubvhinbbooxwtfplziyikxnquljypwpizwqoccspjvhurybcbkppgrjyyanftwyzcdhatbkhizpbdjnmandhtompuwbkiwjztntkikagmnymjhtcpqtneidirlyxkzccharbvvufsviwxgfnjejdzylzxyrgakdbrvqrswfjmabwxkeiwrkqibzqfcbjkfcf',
'segment_8' => 'rqgwuxsuyrhusjtgjdrnmikmbohsyhngqwhidqsmtvwtcecfdi',
'segment_9' => 'pdpsgrleallnmqigywhnkfepkkhkavrrymeuqyzqhyzkvpvzbymclmrqklkjkrmnoytacqvvxkphpzbyipooqhhkttkhpzoawtuaxomgchacwofltvuftlzusyyhlhuhkdufkntmygcnytcbuhqlxekpdqdrztxdydymocxwfdeoubygwlbkfobbdhnsbsmdkdyxklxbfxtmedhbcpwkmwopr',
'segment_10' => 'rbuypgvhplxryryxjbtcuyvnjhbsmhtrvllxkidttyogygzkrsjiulbyyuwuimidsldxnpagpokhq',
'segment_mrr' => 10055.9,
'segment_arr' => 182932.711,
'segment_ltv' => 451548691.522161,
'email_unsubscribed_at' => '2024-11-20T10:19:47',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/users/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88'
payload = {
"email": "claire.wyman@example.org",
"role": "admin",
"name": "iyggkiwgupclwxwyfpanilhrdostsgvplhzceuwiialuoyfpngugmygqqzpigzfklcjvscgteftmfpqpxq",
"password": "kw",
"created_at": "2024-11-20T10:19:47",
"is_blocked": "0",
"verified": "true",
"admin_accepted": "true",
"sso_uid": "wedxgjcihjazwbrqtbnkgqgoizjblojdvlhfgipsimokznhpuugezjlisabytecrhsiluzkfshspsmkqtokadsftumuroqbgdqnbajswmxbywqxtyunlqtjqoffijuucixugxguuxuldiknajqttpqibzzairwkbaudeotkdmdaqdxuibjybzldbceffnwjjxmfsulowxlftjpwrhloennvx",
"sso_avatar_url": "bpfpshkmwtertqtqohjmrlsfcqzfngubxzclpwgmfxuxwenxcjvzaxtz",
"company": "uueeeyklonaeuhjmiiziplyenqjtbb",
"segment_1": "sknoewhypkllefehiz",
"segment_2": "uffscqjwpkfxqfrgtft",
"segment_3": "jowyawdrrtvocownbfjpoizzlmsgbwyxemyhzpgeqvzxzoivysannndndyttrpgtccnatuabkyqmazvtabzgkvmmzvklfzoygoiiqpmeomvakbtyaeodsxikpfevsxsnprizkbxjolftsfxjcxboiraqdifpvsfcsuyvuplympvvoimscgzwatfpasjukldmjkfvcopyxbazjsgelxvvgwwargt",
"segment_4": "nmrnjfugykbgolfxlwrrujyyyocrcypzryyvqeowetpjotavsmyhnhwzocquhtzzazyuemqadgzknlxrotcemsxslnffmuiwigpqayjnodvmhxnnlzagnvtptqjatlzxwwfupoewwodhfpftatoz",
"segment_5": "bxqplndwkrkxwjdteoaxumizmzysxvdytwczgodgupblopjthebemvaqtxruzxjtdqmkpbixyyvxffjnrxuyhjhscanvphifjjuadbrrxkddsiipnutwvhjrlgelcbuclrzbckcohvkwotsifwkymykrgihajqjuxenysjp",
"segment_6": "vqlbnoutvdzflcvoasbkekxegfrdyktdboupopigrptyiqngyvcjpmsvghrfmmpcfyndlqkpgcxssagteeaueargzvmqzpxnxfccwkgplcplajsuznuebkiextjztjstji",
"segment_7": "sqzwqcttdttyxuxlzbwofstlwsjcxrejcvphmakrywwqbgaciahxoyrqgfkwygzubvhinbbooxwtfplziyikxnquljypwpizwqoccspjvhurybcbkppgrjyyanftwyzcdhatbkhizpbdjnmandhtompuwbkiwjztntkikagmnymjhtcpqtneidirlyxkzccharbvvufsviwxgfnjejdzylzxyrgakdbrvqrswfjmabwxkeiwrkqibzqfcbjkfcf",
"segment_8": "rqgwuxsuyrhusjtgjdrnmikmbohsyhngqwhidqsmtvwtcecfdi",
"segment_9": "pdpsgrleallnmqigywhnkfepkkhkavrrymeuqyzqhyzkvpvzbymclmrqklkjkrmnoytacqvvxkphpzbyipooqhhkttkhpzoawtuaxomgchacwofltvuftlzusyyhlhuhkdufkntmygcnytcbuhqlxekpdqdrztxdydymocxwfdeoubygwlbkfobbdhnsbsmdkdyxklxbfxtmedhbcpwkmwopr",
"segment_10": "rbuypgvhplxryryxjbtcuyvnjhbsmhtrvllxkidttyogygzkrsjiulbyyuwuimidsldxnpagpokhq",
"segment_mrr": 10055.9,
"segment_arr": 182932.711,
"segment_ltv": 451548691.522161,
"email_unsubscribed_at": "2024-11-20T10:19:47"
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('PUT', url, headers=headers, json=payload)
response.json()
Example response (200):
{
"data": {
"id": "6f9143a2-1c5f-49f7-8882-65fd4165a209",
"name": "Owen",
"email": "brent96@example.com",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/0335c46c80bc4810f50f4d8098283689?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Owen/60/FFC8A2/69320c",
"counter_votes": 0,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2024-11-20T10:19:47.000000Z",
"is_blocked": null,
"verified": null,
"admin_accepted": null,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
}
}
Example response (404):
{
"message": "No query results for model [App\\User] ..."
}
Example response (422):
{
"message": "The given data was invalid.",
"errors": {
"role": [
"The selected role is invalid."
]
}
Received response:
Request failed with error:
Delete user
requires authentication
Deletes a specified user.
Example request:
curl --request DELETE \
"{YOUR_PORTAL_URL}/api/v1/users/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json" \
--data "{
\"delete_all_data\": true
}"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/users/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
let body = {
"delete_all_data": true
};
fetch(url, {
method: "DELETE",
headers,
body: JSON.stringify(body),
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'{YOUR_PORTAL_URL}/api/v1/users/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
'json' => [
'delete_all_data' => true,
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/users/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88'
payload = {
"delete_all_data": true
}
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers, json=payload)
response.json()
Example response (200):
{}
Example response (404):
{
"message": "No query results for model [App\\User] ..."
}
Received response:
Request failed with error:
Votes
Manage votes on your posts.
List votes
requires authentication
Lists all votes of a post.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/votes" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/votes"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/votes',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/votes'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": [
{
"created_at": "2020-06-09T14:40:38.000000Z",
"voter": {
"id": "2850e389-2827-4316-a50a-fcdcc6474b5d",
"name": "Jordi",
"email": "descubre@exploradoresdemartech.com",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/72802d9f5cd0781807579a89a3947b75?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Jordi/60/CCE2CB/364c35",
"counter_votes": 3,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2020-06-09T14:40:23.000000Z",
"is_blocked": 0,
"verified": false,
"admin_accepted": 1,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
}
},
{
"created_at": "2020-06-09T14:40:38.000000Z",
"voter": {
"id": "2850e389-2827-4316-a50a-fcdcc6474b5d",
"name": "Jordi",
"email": "descubre@exploradoresdemartech.com",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/72802d9f5cd0781807579a89a3947b75?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Jordi/60/CCE2CB/364c35",
"counter_votes": 3,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2020-06-09T14:40:23.000000Z",
"is_blocked": 0,
"verified": false,
"admin_accepted": 1,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
}
}
]
}
Received response:
Request failed with error:
Revoke vote
requires authentication
Revoke a user's vote for a post.
Example request:
curl --request DELETE \
"{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/votes/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/votes/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "DELETE",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->delete(
'{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/votes/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/votes/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('DELETE', url, headers=headers)
response.json()
Example response (200):
{}
Example response (404):
{
"message": "No query results for model [App\\User] ..."
}
Example response (404):
{
"message": "No query results for model [App\\Post] ..."
}
Example response (422):
{
"message": "Post is not voteable."
}
Example response (422):
{
"message": "User has not voted yet."
}
Received response:
Request failed with error:
Vote
requires authentication
Add the vote of a user to a post.
Example request:
curl --request POST \
"{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/votes/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/votes/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "POST",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->post(
'{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/votes/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/posts/0UFQQh/votes/8cbfbfd6-ecc3-4ec3-8b31-ea76b11c1f88'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('POST', url, headers=headers)
response.json()
Example response (200):
{
"data": {
"created_at": "2020-06-09T14:40:38.000000Z",
"voter": {
"id": "2850e389-2827-4316-a50a-fcdcc6474b5d",
"name": "Jordi",
"email": "descubre@exploradoresdemartech.com",
"role": "member",
"profile_url": "{YOUR-PORTAL-URL}/user/profile/123456",
"avatar_small_url": "https://www.gravatar.com/avatar/72802d9f5cd0781807579a89a3947b75?s=60&d=https%3A%2F%2Fui-avatars.com%2Fapi%2F/Jordi/60/CCE2CB/364c35",
"counter_votes": 3,
"counter_comments": 0,
"counter_posts": 0,
"counter_comment_votes": 0,
"created_at": "2020-06-09T14:40:23.000000Z",
"is_blocked": 0,
"verified": false,
"admin_accepted": 1,
"sso_uid": null,
"sso_avatar_url": null,
"company": null,
"segment_1": null,
"segment_2": null,
"segment_3": null,
"segment_4": null,
"segment_5": null,
"segment_6": null,
"segment_7": null,
"segment_8": null,
"segment_9": null,
"segment_10": null,
"segment_mrr": null,
"segment_arr": null,
"segment_ltv": null,
"email_unsubscribed_at": null
}
}
}
Example response (404):
{
"message": "No query results for model [App\\User] ..."
}
Example response (404):
{
"message": "No query results for model [App\\Post] ..."
}
Example response (422):
{
"message": "Post is not voteable."
}
Example response (422):
{
"message": "User has already voted for this post."
}
Received response:
Request failed with error:
Widgets
API endpoints for managing widgets in your portal.
List widgets
requires authentication
Retrieves a collection of all widgets in your portal.
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/widgets" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/widgets"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/widgets',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/widgets'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": [
{
"id": "widget1",
"name": "Feedback Widget",
"type": "feedback",
"created_at": "2023-01-01T00:00:00Z",
"updated_at": "2023-01-01T00:00:00Z"
},
{
"id": "widget2",
"name": "Survey Widget",
"type": "survey",
"created_at": "2023-01-02T00:00:00Z",
"updated_at": "2023-01-02T00:00:00Z"
}
]
}
Received response:
Request failed with error:
Get widget
requires authentication
Retrieves the details of a specific widget by its key (ID).
Example request:
curl --request GET \
--get "{YOUR_PORTAL_URL}/api/v1/widgets/widget1" \
--header "Authorization: Bearer {YOUR_AUTH_KEY}" \
--header "Content-Type: application/json" \
--header "Accept: application/json"
const url = new URL(
"{YOUR_PORTAL_URL}/api/v1/widgets/widget1"
);
const headers = {
"Authorization": "Bearer {YOUR_AUTH_KEY}",
"Content-Type": "application/json",
"Accept": "application/json",
};
fetch(url, {
method: "GET",
headers,
}).then(response => response.json());
$client = new \GuzzleHttp\Client();
$response = $client->get(
'{YOUR_PORTAL_URL}/api/v1/widgets/widget1',
[
'headers' => [
'Authorization' => 'Bearer {YOUR_AUTH_KEY}',
'Content-Type' => 'application/json',
'Accept' => 'application/json',
],
]
);
$body = $response->getBody();
print_r(json_decode((string) $body));
import requests
import json
url = '{YOUR_PORTAL_URL}/api/v1/widgets/widget1'
headers = {
'Authorization': 'Bearer {YOUR_AUTH_KEY}',
'Content-Type': 'application/json',
'Accept': 'application/json'
}
response = requests.request('GET', url, headers=headers)
response.json()
Example response (200):
{
"data": {
"id": "widget1",
"name": "Feedback Widget",
"type": "feedback",
"created_at": "2023-01-01T00:00:00Z",
"updated_at": "2023-01-01T00:00:00Z"
}
}
Example response (404):
{
"message": "No query results for model [App\\Widget] widget1"
}
Received response:
Request failed with error: