Show Applications
GET
/api/managing-entity/{managingEntityIdentifier}/application/list
const url = 'https://api.wink.travel/api/managing-entity//application/list';const options = {method: 'GET', headers: {'Wink-Version': '2.0'}};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://api.wink.travel/api/managing-entity//application/list \ --header 'Wink-Version: 2.0'List all applications owned by the managing entity
Parameters
Section titled “ Parameters ”Path Parameters
Section titled “Path Parameters ” managingEntityIdentifier
required
string
Identifier of the managing entity whose applications to list
Header Parameters
Section titled “Header Parameters ” Wink-Version
string
Responses
Section titled “ Responses ”OK
Media type application/json
Array<object>
object
id
required
Unique identifier.
string format: uuid
userIdentifier
required
Unique user record identifier
string format: uuid
ownerIdentifier
required
Unique owner record identifier
string format: uuid
ownerName
required
Name of company owner.
string
name
required
Name of this customization application. The first customization for every integrator will have the same name as its company name.
string
redirectUris
Where to redirect after web components successfully authenticate. For OAuth2 purposes.
Array<string>
postLogoutRedirectUris
Where to redirect after web components successfully log out. For OAuth2 purposes.
Array<string>
clientId
required
Client identifier used to authenticate an Oauth2 or web component request.
string
scopes
OAuth2 scopes the registered client may request.
Array<string>
Example
[ { "id": "", "userIdentifier": "", "ownerIdentifier": "", "ownerName": "", "name": "", "redirectUris": "", "postLogoutRedirectUris": "", "clientId": "", "scopes": "" }]Bad Request
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
Example generated
{ "type": "https://example.com", "title": "example", "status": 1, "detail": "example", "instance": "https://example.com", "properties": { "additionalProperty": "example" }}object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
Unauthorized
Media type */*
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
Forbidden
Media type */*
object
type
string format: uri
title
string
status
integer format: int32
detail
string
instance
string format: uri
properties
object
key
additional properties
Internal Server Error
object
Example generated
{}