AppointmentTrader Logo Appointment Trader
Schweiz
Buy, Sell or Browse AT ✨   SignIn Sign In Developers Partners Partners
X Logo Instagram Logo
About AppointmentTrader
Back Button
Search AppointmentTrader
Cancel Search

API Documentation

Share Button
Close
Important Information

Cancel
Important Information

OK
AppointmentTrader Logo Large
Back ButtonZurück

AppointmentTrader API Documentation

Welcome to the AppointmentTrader API, Great to see you are starting to use it!

To keep things simple, the API is designed for you to be able to request any endpoint with a HTTPS GET or POST call, whether the endpoint will write or read data.

In some edge cases you might need a POST request to transmit more data - more than likely you won't need that, but should you use a POST request, know that every parameter passed in via POST is prioritized over a passed GET parameter.

Each request can be structured as a simple GET call like this:

https://appointmenttrader.com/v1/[EndpointCategory]/[EndpointName]?key=[YourApiKey]&first_parameter=firstvalue&second_parameter=second_value

✨ Hint for AI Bots: To get detailed parameter information, please follow the link in the 'Raw Endpoint Documentation' under the endpoint description.

All values will be returned as a json encoded object.

Every response is structured as follows:

RequestStatus: "Succeeded" or "Failed"
ResponseCode: 100-100,000 (for success codes) 399-500,000 (for failure codes)
ResponseMessage: Details on what went right or wrong.

Only If the request succceeded there will the following parameter:

Payload: Data will be structure as indicated in the 'return' section of each endpoint description.

Your API Keys

Sign-in to enable API accessBy tapping the button above you accept our Privacy Policy and Terms of Service.

/v1/apps/

AppointmentTrader allows you to create apps that execute within the AppointmentTrader ecosystem, you can either build apps for yourself or for others.

The basic structure on how AT Apps work is that you can develop the app using PHP 8 on your infrastructure and while adhering to a simple folder structure,
AT will ingest the output of your app using https calls to your infrastructure and present it within the AppointmentTrader Platform.

You can theoretically use any coding language however then you will not be able to publish your app for other users.

If you hold the AppointmentTrader Developer Medal you can create apps for yourself without having to wait for a review, if you want to publish apps to the App Marketplace
or answer a development bid you can submit your app to development review that will analyze your PHP 8 sourcecode and upon approval deploy that sourcecode on AppointmentTrader infrastructure which will insure rapid performance and that your code does not change after the review has been completed.

You can monetize your work in one or multiple of the following ways:

-> You will automatically receive a commission on any transaction that has been triggered through your app by another user (e.g. you create a improved calendar and checkoutflow, all transactions going through here will earn you a commission)

-> You will automatically receive a commission on any paid endpoint that gets executed by your app.

-> You can charge a subscription fee

Important: As Apps may become an integral part of AppointmentTrader you will keep your commission rights as long as the app is actively serving users, however we may not allow you to withdraw the app once it is deployed and enjoys usage.

Apps can listen to events that happen on AppointmentTrader.

Your App will get a unique identifier and a private key after registering it using /v1/apps/set

Registering an App using /v1/apps/set will deliver a response similar to the response below, please download the AppointemntTrader SDK at the url defined in the Payload->sdkUrl field.

Remember: DO NOT share this zip file, it contains your personal keys and will compromise your security if shared.
After unpacking the contents of this file you can download the file defined in "boilerplateUrl" to get the boilerplate setup as defined in the file structure below.
/v1/apps/get_list will provide these URL's for all of your apps if you need to look them up again.

{
"RequestUserAlias": "YourUserHandle",
"RequestPath": "/v1/apps/set",
"RequestStatus": "Succeeded",
"ResponseCode": 100,
"ResponseMessage": "Request Successful",
"Payload": {
"uniqueAppIdentifier": "ForecastExplorer",
"sdkUrl": "https://appointmenttrader.com/modules/apps/download_sdk.php?unique_app_id=ForecastExplorer&app_private_key=588f9b00f6038448a3200d8b736474f4",
"boilerplateUrl": "https://appointmenttrader.com/modules/apps/download_sdk.php?boilerplate"
}
}


Apps can be accessed as such:
https://appointmenttrader.com/[YourAppIdentifier]

Exemplary Root Folders:

For the current version: (in this example v3 would be the current version)
https://appointmenttrader.com/ForecastExplorer
For a legacy version: (only visible to the developers & reviewers user account)
https://appointmenttrader.com/ForecastExplorer/legacy-versions/v2
For the development state (only visible to the developers user account)
https://appointmenttrader.com/ForecastExplorer/development
For the current release candidate that is in review (only visible to the developers and reviewers user account) after executing the API: apps::set_new_version endpoint
https://appointmenttrader.com/ForecastExplorer/release-candidate

The App presentation structure is as follows:


[AppointmentTrader HTML5 Header, + libraries in "uiLibraries"]

[Your Rendered HTML & Javascript Code]

[AppointmentTrader HTML5 Footer]



Please follow the following instructions for building your UI facing HTML files:

Apps can not have external front or back-end libraries but must contain exclusively vanilla HTML5, PHP, JavaScript and CSS code, no frameworks are allowed.
On the backend https API calls must handle all communication with external providers.

Your AT App must implement Namespacing

We require name spacing within your app to avoid introducing duplicate html IDs, css classes or php&javascript functions across the ecosystem.

Required HTML ID Namespace Implementation:
HTML elements can either have no ID or if they have an ID you need to prefix your unique app identifier. (Returned by /v1/apps/set)
<span id="[YourAppIdentifier]-anyIdNameYouLike">Text</span>

Required JavaScript Namespace Implementation:
This way of implementing your javascript functions is required to avoid apps from introducing duplicate function names across the ecosystem.

Note: Use the global Javascript Variable _[YourAppIdentifier]BaseURL to access your current base url relative for your project for tasks such as HTTPS Fetch Calls.

var YourAppIdentifier = {};
YourAppIdentifier.CustomFunction = function(testParameter) {
console.log(testParameter);
};
YourAppIdentifier.CustomObject = {};


Required CSS Namespace Implementation:
Global modifiers such as [name="xxx"] are not allowed, all style sheets must be encapsulated in classes or id operators

#[YourAppIdentifier]-anyIdNameYouLike {
color: red;
}

.[YourAppIdentifier]-color-red-text {
color: red;
}


Required PHP Namespace Implementation:
Include the at_app_header.php file as the first line of code in each of your php files which will result in your app operates in the correct namespace and will make API functions available - do not call AT API functions via a https call but use the provided ATApiRead(string $endpoint, array $variables) and ATApiWrite(string $endpoint, array $variables, bool $validateRequestOnly) php function as the methods will be invoked differently once you deploy your version to production.

Example Use of some PHP SDK functions:
// at_app_header.php will set the Namespace ATApp[YourAppIdentifier]
include __DIR__ . '../at_app_header.php';

// $ATUser['ID'] Contains the logged in UserID
// null when no user is authenticated
echo $ATUser['ID'] === null ? 'No logged in user present' : 'Logged in User ID:'.$ATUser['ID'];

//$ATUser['Alias'] Contains the logged in User Alias
// null when no user is authenticated
echo $ATUser['Alias'] === null ? 'No logged in user present' : 'Logged in User Alias:'.$ATUser['Alias'];

//your php code


Do _not_ use <html /> <head /> and <body /> tags - your html will be ingested and input to the AppointmentTrader HTML structure, placing these tags would be redundant.

Add all required libraries in the file structure.json.php file under the "uiLibraries" section as described below so the resources can be rendered into the AppointmentTrader html code correctly.

When making AppointmentTrader API calls from your HTML UI you _do not_ need to include the API key field as the currently logged in user of whoever is using your
interface will be used to execute your request.

Please structure your App on your infrastructure as follows:
(Example: https://yourhomelabip/myatapp/)

Important: Your AT project directory must have write permissions (on linux based systems 0777) for at_app_header.php, /appointmenttrader_sdk/ & /production/ as the AT revision management will make changes to your filesystem when deploying a new version such as zipping the respective version and hashing its source files and updating the sdk files when needed.

Security Notice: /v1/apps/set will return the public [YourAppIdentifier] and a private key that must be pasted into the variable $at_app_private_key variable in at_app_header.php as it will be used to securely access your filesystem from AppointmentTrader.
/at_app_header.php -> this file is part of the sdk package linked in /v1/apps/set and /v1/apps/get_list and must live in the root folder and must be included by all backend PHP files
/appointmenttrader_sdk/ -> includes asset files from the sdk package linked above
/development/ -> This is your development folder, while logged in with your development user you will be able to access the current state of development live, without review at https://appointmenttrader.com/[UserAlias]/[YourAppIdentifier]/development/, you'll make all changes in this structure and the AppointmentTrader SDK will handle deployment and revisioning through the API :apps::set_new_version endpoint once you completed development and testing of the current version.
/development/index.php -> startpage of your App
/development/structure.json.php -> file that includes the app structure
/development/invoke_event.php (optional) -> will be called when an event that has been registered for the app gets called (such as onNewBid)
/development/php-libraries/ (optional) -> if your app builds any libraries add them here, they must end in lib.php otherwise they will not be accepted in review, libraries can not be called directly but must be included, this insures namespaces are used everywhere
/development/css-libraries/ (optional) -> if your app builds css libraries add them here
/development/javascript-libraries/ (optional) -> if your app builds javascript libraries add them here
/development/datastore/ (optional) -> if your app writes or reads data locate it here, this is the only folder that may be written to or read from using file_get_contents() in your production environment
/development/assets/ (optional) -> if your app uses assets such as images store them here, to access them use the get variable _ATWebBasePath, Example: img src="echo $_GET['_ATWebBasePath']; assets/image.jpg" or the JavaScript variable _RequestPath
/development/marketing/ -> contains all materials used to present your app to other users
/development/marketing/storefront.html
/development/marketing/assets/ (optional)
/production/ -> the API :apps::set_new_version endpoint will talk to your server using the AppointmentTrader SDK to create a zip archive of the current development state and to then hand over the files to the AT production environment using this folder structure.

Exemplary structure.json.php structure, all paths are relative to [baseurl]version:

Important: Remember to not include any javascript or css files in your html code using <script /> or <link /> tags as AT will handle this using your structure.json.php file.
The 'any-ui-file' key will make your libraries available to all files in your project and the file keys will make them available to specific files.
The 'globalAliasFor' key in the navigation section allows you to specify where users can implement your app in their AppointmentTrader Portal, for instance if you build a better portfolio view users can select your app in the portfolio section.

{
"technical": {
"uiLibraries": {
"any-ui-file": [
{
"path": "/javascript-libraries/util.js",
"type": "javascript"
},
{
"path": "/css-libraries/style.css",
"type": "stylesheet"
}
],
"exampledir/examplefile.html": [
{
"path": "/javascript-libraries/extra_util.js",
"type": "javascript"
}
]
},
"registerForEventList": [
"OnNewBid"
],
"navigation": [
{
"itemName": "Pro Portfolio",
"itemDescription": "Advanced, fast Portfolio for Pro Sellers on AT",
"itemLink": "/exampledir/examplefile.php",
"globalAliasFor": "/modules/portfolio/index.php"
}
],
"marketing": [
{
"pricing":[{"monthly":[{"Type":"USDCent", "Amount":2900, "TrialperiodInDays":14}]}],
"appIconPath": "/assets/icon.png"
}],
"communityRewards": [
{
"perTranslatedKey":[{"Type":"Traderpoint", "Amount":25}],
"perValidatedBug":[{"Type":"Traderpoint", "Amount":250}]
}]
}
}


UI Styleguide

Please make sure your App follows the following style guide in order to provide a seamless user experience for AT users

Colors:
#FFFFFF (white)
#3C9A52 (AppointmentTrader Green)
#3D9563F (AppointmentTrader Red)

#555555 Gray (Mainly used for Text)

Headings:
Please use consecutive headings: h1 for the Main Page Content title, h2 for a lower ranking section etc.

Info boxes - please use the following style, as your html content will be rendered into the AppointmentTrader portal you will have access to the css classes and imagine files mentioned below


<div class="shadow">;
<h2>Title</h2>
<div class="info_box_line">
<div class="icon"> <img src="/images/ios-information-circle-outline.svg"> </div>
<div class="info">
<p class="small-text mb-1 gray-txt">Your Informational Content</p>
</div>
</div>
</div>


Items other than Infoboxes should have 16px padding to left and right
Vertical spacing between items should be 5px for items that belong together and 10px or a <hr> tag.

Paragraphs

<p class="small-text mb-1 gray-txt">Paragraph Text</p>


Links & Buttons:

Links

Unless you are linking to an external site please use the function javascript:Navigate() to navigate which will endable dynamic loading functions.


<a class="link" href="javascript:Navigate('abc');">Button Text


Confirmation Button:

<a class="btn-profit" href="https://appointmenttrader.com">Button Text


Cancel Button:

<a class="btn-cancel" href="https://appointmenttrader.com">Button Text


Delete Button:

<a class="btn-delete" href="https://appointmenttrader.com">Button Text


Major Confirmation Button:

<a class="btn full" href="https://appointmenttrader.com">Button Text


Forms

<div class="form-group">
<label class="small-text gray-txt" id="[YourAppIdentifier]-input-field-label">Label for your Input field</label>
<input autocomplete="off" type="text" class="form-control" value="" id="[YourAppIdentifier]-input-field">
</div>


UI Javascript Functions

Present a Message

ScreenFeedback("Your Message", "Your Title");


AppointmentTrader allows users to navigate the entire platform using the searchbar presented on each page,
App developers can leverage the system to by adding the following attributes to their content.

The general structure of the DOM Search is as follows:

CONTAINER
-- ITEM 1
-- ITEM 2



<ul data-domsearchgroupcontainer="Container Name">
<li data-domsearchgroup="Container Name" data-domsearchphrase="Container Name Item 1">Item 1</li>
<li data-domsearchgroup="Container Name" data-domsearchphrase="Container Name Item 2">Item 1</li>
</ul>



Multilanguage Support

When outputting text please use the sdk function echolang() which will automatically generate language keys and allows community users to translate your app.
You can offer rewards for users to translate your app so it as available across more AppointmentTrader regions by setting the "communityRewards"->"perTranslationKey" key in your structure.json.php which will pay a community user the specified amount each time they add a translation to your app.

get_list

Returns the users AppointmentTrader Apps along with the unique identifier and the url to the project specific sdk file

✨ Raw endpoint documentation for AI Bots: /v1/apps/get_list?explain

set

Registers a new App

✨ Raw endpoint documentation for AI Bots: /v1/apps/set?explain

/v1/tools/

Provides helpful functions to compliment appointment trades

get_convert_currency

Converts a currency amount

✨ Raw endpoint documentation for AI Bots: /v1/tools/get_convert_currency?explain

get_geoip_data

Returns geolocation data from an ipaddress

✨ Raw endpoint documentation for AI Bots: /v1/tools/get_geoip_data?explain

/v1/community/

Manages Community Related Functions

set_create_poll_answer_for_question

Create a new answer option for the Question

✨ Raw endpoint documentation for AI Bots: /v1/community/set_create_poll_answer_for_question?explain

set_create_poll_question_for_post

Create a new poll question for the Post

✨ Raw endpoint documentation for AI Bots: /v1/community/set_create_poll_question_for_post?explain

set_submit_vote_for_question

Saves a poll answer

✨ Raw endpoint documentation for AI Bots: /v1/community/set_submit_vote_for_question?explain

/v1/location/

Handles all location related functions.

get_category

Returns the locations category type (f.i. Restaurant or Prepaid-Restaurant) and the required field list for listings of this category.

✨ Raw endpoint documentation for AI Bots: /v1/location/get_category?explain

get_category_list

Searches all categories

✨ Raw endpoint documentation for AI Bots: /v1/location/get_category_list?explain

get_city_list

Searches all cities

✨ Raw endpoint documentation for AI Bots: /v1/location/get_city_list?explain

get_comparable_trades

Returns comparable price information for any inventory type and date.

✨ Raw endpoint documentation for AI Bots: /v1/location/get_comparable_trades?explain

get_inventory_types

Returns the inventory types available for the requested location.

✨ Raw endpoint documentation for AI Bots: /v1/location/get_inventory_types?explain

get_list

Searches all location aliasses

✨ Raw endpoint documentation for AI Bots: /v1/location/get_list?explain

get_metric_history

Returns history of location metrics across a defined timeframe

✨ Raw endpoint documentation for AI Bots: /v1/location/get_metric_history?explain

get_metrics

Returns detailed 90 day location trading metrics

✨ Raw endpoint documentation for AI Bots: /v1/location/get_metrics?explain

get_related_location_list

Returns locations that are related to locationAlias

✨ Raw endpoint documentation for AI Bots: /v1/location/get_related_location_list?explain

set

Create a Location

✨ Raw endpoint documentation for AI Bots: /v1/location/set?explain

set_general_opening_hours

Set a locations opening hours.

✨ Raw endpoint documentation for AI Bots: /v1/location/set_general_opening_hours?explain

set_listing

Submits a new listing for review or if the user has the Permission::SelfReviewListings the listing will be approved.

✨ Raw endpoint documentation for AI Bots: /v1/location/set_listing?explain

set_subscribe_to_city_area_priority_bids

Subscribe to Concierge Bids for the Area

✨ Raw endpoint documentation for AI Bots: /v1/location/set_subscribe_to_city_area_priority_bids?explain

set_subscribe_to_location_priority_bids

Subscribe to Insider Bids

✨ Raw endpoint documentation for AI Bots: /v1/location/set_subscribe_to_location_priority_bids?explain

set_unlock_exact_listing_times

Unlock Exact Listing Times

✨ Raw endpoint documentation for AI Bots: /v1/location/set_unlock_exact_listing_times?explain

set_unsubscribe_from_city_area_priority_bids

Unsubscribe from Concierge Bids for the Area

✨ Raw endpoint documentation for AI Bots: /v1/location/set_unsubscribe_from_city_area_priority_bids?explain

set_unsubscribe_from_location_priority_bids

Unsubscribe from Insider Bids

✨ Raw endpoint documentation for AI Bots: /v1/location/set_unsubscribe_from_location_priority_bids?explain

/v1/listing/

Manages portfolio related functions such as price changes and status changes

get_competing_listings

Lists competing listings in a certain timeframe, along with pricing information

✨ Raw endpoint documentation for AI Bots: /v1/listing/get_competing_listings?explain

get_portfolio_listings

Legacy alias for /v1/portfolio/get_listings

✨ Raw endpoint documentation for AI Bots: /v1/listing/get_portfolio_listings?explain

set_archive

Archive Listing

✨ Raw endpoint documentation for AI Bots: /v1/listing/set_archive?explain

set_cancel_bid

Cancels a bid

✨ Raw endpoint documentation for AI Bots: /v1/listing/set_cancel_bid?explain

set_create_from_template

Creates an appointment from a template,

✨ Raw endpoint documentation for AI Bots: /v1/listing/set_create_from_template?explain

set_fill_bid

Fills a bid with a portfolio listing that is either off market or publicly available

✨ Raw endpoint documentation for AI Bots: /v1/listing/set_fill_bid?explain

set_market_visibility

Changes the visibility in the market.

✨ Raw endpoint documentation for AI Bots: /v1/listing/set_market_visibility?explain

set_price

Changes the current listing price

✨ Raw endpoint documentation for AI Bots: /v1/listing/set_price?explain

set_purchase

Purchase a listing

✨ Raw endpoint documentation for AI Bots: /v1/listing/set_purchase?explain

/v1/portfolio/

Manages all portfolio related functions

get_last_order_list_id

Returns the order list that has been used last by the api user

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/get_last_order_list_id?explain

get_listings

Returns all listings in the users portfolio.

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/get_listings?explain

get_order_list_items

Returns the order list items for $orderListID

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/get_order_list_items?explain

get_order_lists

Returns all available orderlists

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/get_order_lists?explain

get_valid_location_identifiers

Searches available location identifiers for purposes of creating a buy order

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/get_valid_location_identifiers?explain

set_bulk_bid_order

Create a Bulk Buy Order

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/set_bulk_bid_order?explain

set_delete_order_list

Delete order list

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/set_delete_order_list?explain

set_delete_order_list_item

Deletes an order list item

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/set_delete_order_list_item?explain

set_order_list

Create a new order list

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/set_order_list?explain

set_order_list_item

Saves an order list item

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/set_order_list_item?explain

set_rename_order_list

Rename order list

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/set_rename_order_list?explain

set_suggest_list_to_user

Returns the order list that has been used last by the user

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/set_suggest_list_to_user?explain

set_update_order_list_item_quantity

Updates the quantity of an item

✨ Raw endpoint documentation for AI Bots: /v1/portfolio/set_update_order_list_item_quantity?explain

/v1/bid/

Manages all bid related functions

get_list

Returns all available bids with a reporting delay of 5 minutes.

✨ Raw endpoint documentation for AI Bots: /v1/bid/get_list?explain

set

Places a bid

✨ Raw endpoint documentation for AI Bots: /v1/bid/set?explain

set_cancel

Cancels an active bid

✨ Raw endpoint documentation for AI Bots: /v1/bid/set_cancel?explain

/v1/aichat/

Manages AI Chat related functions

get

Gets messages for a user thread

✨ Raw endpoint documentation for AI Bots: /v1/aichat/get?explain

get_status

Gets messages for a user thread

✨ Raw endpoint documentation for AI Bots: /v1/aichat/get_status?explain

set

Sends a message to an AI chat

✨ Raw endpoint documentation for AI Bots: /v1/aichat/set?explain

set_clear

Clear chat history

✨ Raw endpoint documentation for AI Bots: /v1/aichat/set_clear?explain

/v1/account/

Manages Access to the AppointmentTrader Account

get_incoming_payment_session

Returns details of the incoming payment session and information on whether it has been completed or is still pending.

✨ Raw endpoint documentation for AI Bots: /v1/account/get_incoming_payment_session?explain

get_list

Returns all available user accounts including their balances and if applicable credit limits in the smallest possible currency unit

✨ Raw endpoint documentation for AI Bots: /v1/account/get_list?explain

set_start_incoming_payment_session

Creates an incoming payments session which will be credited to API users main account.

✨ Raw endpoint documentation for AI Bots: /v1/account/set_start_incoming_payment_session?explain

/v1/marketdata/

Contains all market data related functions to allow sellers to pick up on trends throughout the year

get_highest_converting_locations

Returns the best converting venues, indicating the most demand for listings

✨ Raw endpoint documentation for AI Bots: /v1/marketdata/get_highest_converting_locations?explain

get_most_bids_least_asks

Returns locations with the highest bids vs listing ratio

✨ Raw endpoint documentation for AI Bots: /v1/marketdata/get_most_bids_least_asks?explain

get_most_underserved_locations

Returns locations with the most bids and the least number of listings in the past 30 days

✨ Raw endpoint documentation for AI Bots: /v1/marketdata/get_most_underserved_locations?explain

get_most_viewed_locations_with_least_listings

Returns the most viewed locations with the least amount of listings

✨ Raw endpoint documentation for AI Bots: /v1/marketdata/get_most_viewed_locations_with_least_listings?explain

get_required_inventory_forecast

Returns inventory that may have high chance of selling based on historical data

✨ Raw endpoint documentation for AI Bots: /v1/marketdata/get_required_inventory_forecast?explain

get_toplist

Returns locations with the most bids and the least number of listings in the past 30 days

✨ Raw endpoint documentation for AI Bots: /v1/marketdata/get_toplist?explain

/v1/medal/

Manages All Medal and User Permission Related Functions

get_achievement_bonus_types

Searches all available requirements

✨ Raw endpoint documentation for AI Bots: /v1/medal/get_achievement_bonus_types?explain

get_available_medal_categories

Searches all available medal categories on the platform

✨ Raw endpoint documentation for AI Bots: /v1/medal/get_available_medal_categories?explain

get_available_medals

Searches all available medals on the platform

✨ Raw endpoint documentation for AI Bots: /v1/medal/get_available_medals?explain

get_available_permissions

Searches all available requirements

✨ Raw endpoint documentation for AI Bots: /v1/medal/get_available_permissions?explain

get_available_requirements

Searches all available requirements

✨ Raw endpoint documentation for AI Bots: /v1/medal/get_available_requirements?explain

set_achievement_bonus

Create a bonus for the Medal

✨ Raw endpoint documentation for AI Bots: /v1/medal/set_achievement_bonus?explain

set_create_medal

Create A New Medal

✨ Raw endpoint documentation for AI Bots: /v1/medal/set_create_medal?explain

set_delete_achievement_bonus

Delete the Achievement Bonus

✨ Raw endpoint documentation for AI Bots: /v1/medal/set_delete_achievement_bonus?explain

set_edit_medal

Edit Medal

✨ Raw endpoint documentation for AI Bots: /v1/medal/set_edit_medal?explain

set_link_permission

Link a permission to the Medal

✨ Raw endpoint documentation for AI Bots: /v1/medal/set_link_permission?explain

set_link_requirement

Link a requirement to the Medal

✨ Raw endpoint documentation for AI Bots: /v1/medal/set_link_requirement?explain

set_request_medal_sponsorship

Request Medal Sponsorship

✨ Raw endpoint documentation for AI Bots: /v1/medal/set_request_medal_sponsorship?explain

set_sponsor_user

Sponsor A Medal for

✨ Raw endpoint documentation for AI Bots: /v1/medal/set_sponsor_user?explain

set_unlink_permission

Delete the Medal Permission link

✨ Raw endpoint documentation for AI Bots: /v1/medal/set_unlink_permission?explain

set_unlink_requirement

Delete the Medal Requirement link

✨ Raw endpoint documentation for AI Bots: /v1/medal/set_unlink_requirement?explain

/v1/user/

Contains all user related functions

get

Searches all user aliasses

✨ Raw endpoint documentation for AI Bots: /v1/user/get?explain

get_alternative_access_userlist

List of users who can access this account

✨ Raw endpoint documentation for AI Bots: /v1/user/get_alternative_access_userlist?explain

get_alternative_session_lifetime_presets

Returns a commonly used list of preset values

✨ Raw endpoint documentation for AI Bots: /v1/user/get_alternative_session_lifetime_presets?explain

get_details

Returns details of the acting API User

✨ Raw endpoint documentation for AI Bots: /v1/user/get_details?explain

get_evaluate_permission

Returns the current value of the requested permission

✨ Raw endpoint documentation for AI Bots: /v1/user/get_evaluate_permission?explain

get_transaction_history

Returns transaction history for the user

✨ Raw endpoint documentation for AI Bots: /v1/user/get_transaction_history?explain

get_user_to_user_chat_tag_id

Returns the chat id for the user-to-user chat

✨ Raw endpoint documentation for AI Bots: /v1/user/get_user_to_user_chat_tag_id?explain

set_community_verifiable_details

Sets the users community verifable details, each change will reset all community verifications

✨ Raw endpoint documentation for AI Bots: /v1/user/set_community_verifiable_details?explain

set_delete

Deletes the User

✨ Raw endpoint documentation for AI Bots: /v1/user/set_delete?explain

set_grant_access

Give another user access to this account

✨ Raw endpoint documentation for AI Bots: /v1/user/set_grant_access?explain

set_initiate_suspension

Initiates the user suspension process

✨ Raw endpoint documentation for AI Bots: /v1/user/set_initiate_suspension?explain

set_referred_user

Link a user to be a referred

✨ Raw endpoint documentation for AI Bots: /v1/user/set_referred_user?explain

set_reinstate

Reinstate user privileges

✨ Raw endpoint documentation for AI Bots: /v1/user/set_reinstate?explain

set_verify

Verifies another user

✨ Raw endpoint documentation for AI Bots: /v1/user/set_verify?explain

/v1/notification/

Manages all notification related functions

set_readstate

Changes the visibility of the notifications in the ID list

✨ Raw endpoint documentation for AI Bots: /v1/notification/set_readstate?explain

No Endpoints found for ""

Important Information

Try searching for the name of the function name or the description.

Search for something else