-
Notifications
You must be signed in to change notification settings - Fork 1
application
This module offers a collection of functions designed to address specific tasks and provide utilities for various purposes. Explore the available functions to make the most of the functionalities provided by this module.
- elements_application_get_application_profiles
- elements_application_get_applications
- elements_application_create_application
- elements_application_get_application
- elements_application_update_application
- elements_application_delete_application
- elements_application_create_facebook_application_configuration
- elements_application_get_facebook_application_configuration
- elements_application_update_facebook_application_configuration
- elements_application_delete_facebook_application_configuration
- elements_application_create_firebase_application_configuration
- elements_application_get_firebase_application_configuration
- elements_application_update_firebase_application_configuration
- elements_application_delete_firebase_application_configuration
- elements_application_create_google_play_application_configuration
- elements_application_get_google_play_application_configuration
- elements_application_update_google_play_application_configuration
- elements_application_delete_google_play_application_configuration
- elements_application_update_product_bundle_for_application_configuration
- elements_application_create_ios_application_configuration
- elements_application_get_ios_application_configuration
- elements_application_update_ios_application_configuration
- elements_application_delete_ios_application_configuration
- elements_application_update_product_bundle_for_application_configuration_1
- elements_application_create_matchmaking_application_configuration
- elements_application_get_matchmaking_application_configuration
- elements_application_update_matchmaking_application_configuration
- elements_application_delete_matchmaking_application_configuration
- elements_application_create_psn_application_configuration
- elements_application_get_psn_application_configuration
- elements_application_update_psn_application_configuration
- elements_application_delete_psn_application_configuration
Elements Operation: getApplicationProfiles
This function searches all instances of ApplicationProfiles associated with the application. The search query may be a full-text search.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_get_application_profiles(_application_name_or_id, _offset=undefined, _count=undefined, _search=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _offset | Real | The offset of the first result to return in the page. |
| _count | Real | The number of results to return in the page. |
| _search | String | The search filter to use. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsPaginationApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: getApplications
This function performs a full-text search of all applications known to the server. As with other full-text endpoints this allows for pagination and offset.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_get_applications(_offset=undefined, _count=undefined, _search=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _offset | Real | The offset of the first result to return in the page. |
| _count | Real | The number of results to return in the page. |
| _search | String | The search filter to use. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsPaginationApplication | |
| _request | ElementsRequest |
Elements Operation: createApplication
This function gets the metadata for a single application. This may include more specific details not available in the bulk-get or fetch operation.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_create_application(_body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _body | ElementsCreateApplicationRequest | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsApplication | |
| _request | ElementsRequest |
Elements Operation: getApplication
This function gets the metadata for a single application. This may include more specific details not available in the bulk-get or fetch operation.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_get_application(_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _name_or_id | String | The name or ID of the application. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsApplication | |
| _request | ElementsRequest |
Elements Operation: updateApplication
This function performs an update to an existing application known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_update_application(_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _name_or_id | String | The name or ID of the application. |
| _body | ElementsUpdateApplicationRequest | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsApplication | |
| _request | ElementsRequest |
Elements Operation: deleteApplication
This function deletes a specific application known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_delete_application(_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _name_or_id | String | The name or ID of the application. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | Undefined | |
| _request | ElementsRequest |
Elements Operation: createFacebookApplicationConfiguration
This function creates a new Facebook ApplicationConfiguration with the specific ID or application.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_create_facebook_application_configuration(_application_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _body | ElementsFacebookApplicationConfiguration | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsFacebookApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: getFacebookApplicationConfiguration
This function gets a single Facebook application based on unique name or ID.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_get_facebook_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsFacebookApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: updateFacebookApplicationConfiguration
This function updates an existing Facebook Application profile if it is known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_update_facebook_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _body | ElementsFacebookApplicationConfiguration | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsFacebookApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: deleteFacebookApplicationConfiguration
This function deletes an existing Facebook Application profile if it is known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_delete_facebook_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | Undefined | |
| _request | ElementsRequest |
Elements Operation: createFirebaseApplicationConfiguration
This function creates a new Firebase ApplicationConfiguration with the specific ID or application.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_create_firebase_application_configuration(_application_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _body | ElementsFirebaseApplicationConfiguration | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsFirebaseApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: getFirebaseApplicationConfiguration
This function gets a single Firebase application based on unique name or ID.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_get_firebase_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsFirebaseApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: updateFirebaseApplicationConfiguration
This function updates an existing Firebase Application profile if it is known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_update_firebase_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _body | ElementsFirebaseApplicationConfiguration | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsFirebaseApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: deleteFirebaseApplicationConfiguration
This function deletes an existing Firebase Application profile if it is known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_delete_firebase_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | Undefined | |
| _request | ElementsRequest |
Elements Operation: createGooglePlayApplicationConfiguration
This function creates a new GooglePlay ApplicationConfiguration with the specific ID or application.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_create_google_play_application_configuration(_application_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _body | ElementsGooglePlayApplicationConfiguration | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsGooglePlayApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: getGooglePlayApplicationConfiguration
This function gets a single Google Play application based on unique name or ID.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_get_google_play_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsGooglePlayApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: updateGooglePlayApplicationConfiguration
This function updates an existing Google Play Application profile if it is known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_update_google_play_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _body | ElementsGooglePlayApplicationConfiguration | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsGooglePlayApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: deleteGooglePlayApplicationConfiguration
This function deletes an existing Google Play Application profile if it is known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_delete_google_play_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | Undefined | |
| _request | ElementsRequest |
Elements Operation: updateProductBundleForApplicationConfiguration
This function updates the ProductBundle for the given ApplicationConfiguration
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_update_product_bundle_for_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _body=undefined, _content_type=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _body | Array of ElementsProductBundle | The body to be included in the HTTP request. |
| _content_type | String | The type of the body (this will be used by the mapper to convert the body argument to the correct type). |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: createIosApplicationConfiguration
This function creates a new iOS ApplicationConfiguration with the specific ID or application.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_create_ios_application_configuration(_application_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _body | ElementsIosApplicationConfiguration | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsIosApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: getIosApplicationConfiguration
This function gets a single iOS application based on unique name or ID.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_get_ios_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsIosApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: updateIosApplicationConfiguration
This function updates an existing iOS Application profile if it is known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_update_ios_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _body | ElementsIosApplicationConfiguration | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsIosApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: deleteIosApplicationConfiguration
This function deletes an existing iOS Application profile if it is known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_delete_ios_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | Undefined | |
| _request | ElementsRequest |
Elements Operation: updateProductBundleForApplicationConfiguration_1
This function updates the ProductBundle for the given ApplicationConfiguration.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_update_product_bundle_for_application_configuration_1(_application_name_or_id, _application_configuration_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _body | Array of ElementsProductBundle | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: createMatchmakingApplicationConfiguration
This function creates a new iOS ApplicationConfiguration with the specific ID or application.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_create_matchmaking_application_configuration(_application_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _body | ElementsMatchmakingApplicationConfiguration | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsMatchmakingApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: getMatchmakingApplicationConfiguration
This function gets a single iOS application based on unique name or ID.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_get_matchmaking_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsMatchmakingApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: updateMatchmakingApplicationConfiguration
This function updates an existing iOS Application profile if it is known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_update_matchmaking_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _body | ElementsMatchmakingApplicationConfiguration | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsMatchmakingApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: deleteMatchmakingApplicationConfiguration
This function deletes an existing iOS Application profile if it is known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_delete_matchmaking_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | Undefined | |
| _request | ElementsRequest |
Elements Operation: createPsnApplicationConfiguration
This function creates a new PSN ApplicationConfiguration with the specific ID or application.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_create_psn_application_configuration(_application_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _body | ElementsPSNApplicationConfiguration | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsPSNApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: getPsnApplicationConfiguration
This function gets a single PSN application based on unique name or ID.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_get_psn_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsPSNApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: updatePsnApplicationConfiguration
This function updates an existing PSN Application profile if it is known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_update_psn_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _body=undefined, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _body | ElementsPSNApplicationConfiguration | The body to be included in the HTTP request. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | ElementsPSNApplicationConfiguration | |
| _request | ElementsRequest |
Elements Operation: deletePsnApplicationConfiguration
This function deletes an existing PSN Application profile if it is known to the server.
This function operates asynchronously, which means that it does not immediately return the requested result. Instead, upon completion of the task, it will trigger the Callback Function.
Syntax:
elements_application_delete_psn_application_configuration(_application_name_or_id, _application_configuration_name_or_id, _callback=undefined)
| Argument | Type | Description |
|---|---|---|
| _application_name_or_id | String | The name or ID of the application. |
| _application_configuration_name_or_id | String | The name or ID of the application configuration. |
| _callback | Function | The function - with signature (status, data, request) - that will be executed upon request completion. |
Returns:
N/A
Triggers:
| Key | Type | Description |
|---|---|---|
| _status | Real | |
| _data | Undefined | |
| _request | ElementsRequest |
GameMaker 2026
- Application
- Auth
- Auth Scheme
- Blockchain
- Codegen
- Deployment
- Elements
- Elm
- Followee
- Follower
- Friend
- Health
- Index
- Inventory
- Invite
- Ios
- Item
- Large Object
- Large Object Mp
- Leaderboard
- Meta
- Metadata
- Metadata Spec
- Mission
- Mock Session
- Multi Match
- Notification
- Oidc
- Product
- Profile
- Progress
- Rank
- Receipt
- Reward Issuance
- Save Data
- Schedule
- Score
- Session
- Signup
- Steam
- User
- Verify
- Version