Update application
Updates the oauth application with the specified id.
/v1/hq/oauth/applications/{application_id}Authorization
BearerTokenAuth
The Noona HQ API uses Bearer token for authentication.
Endpoints that return generic information that does not contain sensitive data do not require authentication. Endpoints that require authentication are specifically marked in the documentation.
Authorization: Bearer your-token
In: header
Path Parameters
"dwawd8awudawd"Query Parameters
Request Body
application/json
"7awdXwZoedakjad37a""https://example.com/logo.png"Shown to the user when they are asked to give consent.
"King Accounting Connection"A map of translations for a given attribute.
The key is the language code, and the value is the translated string.
{
"is": "King Accounting tenging",
"fr": "Connexion King Accounting"
}"King Accounting"Home page or documentation for your application.
"https://example.com/about_king_accounting"Short text about the functionality of the app that appears next to the icon in the list.
"King Accounting Connection automatically syncs your Noona POS system with the King Accounting software."A map of translations for a given attribute.
The key is the language code, and the value is the translated string.
{
"is": "King Accounting tenging",
"fr": "Connexion King Accounting"
}Short text that is displayed to the user when uninstalling the app.
"Note that all data that the app stored will be deleted."A map of translations for a given attribute.
The key is the language code, and the value is the translated string.
{
"is": "King Accounting tenging",
"fr": "Connexion King Accounting"
}A longer description of the application which opens in a modal and support HTML.
If true, the application will be usable from outside of the company.
trueIf true, the application will be listed in the Noona App Store.
trueIf true, the application will appear in the navigation within Noona HQ.
When clicked, the application's main redirect_uri will be displayed in an iFrame.
trueThe verticals the application is available in.
If omitted or empty, the application is available for all verticals.
[
"restaurant",
"appointment"
]The countries the application is available in.
If omitted or empty, the application is available in all countries.
[
"US",
"CA"
]"free" | "one-time" | "subscription""free"Price in x100 format. (100 is 1.00)
int321000"ISK"trueResponse Body
application/json
curl -X POST "https://api.noona.is/v1/hq/oauth/applications/dwawd8awudawd" \ -H "Content-Type: application/json" \ -d '{}'{
"id": "7awdXwZoedakjad37a",
"logo": "https://example.com/logo.png",
"name": "King Accounting Connection",
"name_translations": {
"is": "King Accounting tenging",
"fr": "Connexion King Accounting"
},
"developer_name": "King Accounting",
"developer_url": "https://example.com/about_king_accounting",
"description": "King Accounting Connection automatically syncs your Noona POS system with the King Accounting software.",
"description_translations": {
"is": "King Accounting tenging",
"fr": "Connexion King Accounting"
},
"uninstall_message": "Note that all data that the app stored will be deleted.",
"uninstall_message_translations": {
"is": "King Accounting tenging",
"fr": "Connexion King Accounting"
},
"about": "string",
"redirect_uris": [
"https://example.com"
],
"scopes": [
"activities:read"
],
"public": true,
"app_store": true,
"show_in_navigation": true,
"verticals": [
"restaurant",
"appointment"
],
"countries": [
"US",
"CA"
],
"payment_type": "free",
"price": 1000,
"currency": "ISK",
"client_id": "7awdXwZoedakjad37a",
"client_secret": "7awdXwZoedakjad37a7awdXwZoedakjad37a7awdXwZoedakjad37a",
"approved": true,
"created_at": "2019-08-24T14:15:22Z",
"updated_at": "2019-08-24T14:15:22Z"
}