Waiting for engine...
Skip to main content

type definitions

An API Key is generated for each subscription of the Application so that users can be authorized for specific API access.

type DeployedApiApplication {
id: ID!
name: String!
gateway: Gateway
status: DeployedApiApplicationStatus!
ownerName: String
ownerUserName: String
ownerEmail: String
contactPhone: String
companyName: String
companyWebsite: String
notes: String
description: String
subscriptions: [DeployedApiSubscription!]
}

Fields

DeployedApiApplication.id ● ID! non-null scalar miscellaneous

The unique auto-generated ID of the Application

DeployedApiApplication.name ● String! non-null scalar miscellaneous

Application's name

DeployedApiApplication.gateway ● Gateway object platform

This is the Gateway on which the application will be created

DeployedApiApplication.status ● DeployedApiApplicationStatus! non-null enum platform

Application's status

DeployedApiApplication.ownerName ● String scalar miscellaneous

Application Owner Name

DeployedApiApplication.ownerUserName ● String scalar miscellaneous

Application Owner User Name

DeployedApiApplication.ownerEmail ● String scalar miscellaneous

Application Owner Email

DeployedApiApplication.contactPhone ● String scalar miscellaneous

Application Owner phone number

DeployedApiApplication.companyName ● String scalar miscellaneous

Application company name

DeployedApiApplication.companyWebsite ● String scalar miscellaneous

Application company website

DeployedApiApplication.notes ● String scalar miscellaneous

Notes about application

DeployedApiApplication.description ● String scalar miscellaneous

Application Description

DeployedApiApplication.subscriptions ● [DeployedApiSubscription!] list object platform

Subscriptions which belong to the application.

Returned By

deployedApiApplication query ●  deployedApiApplicationCreate mutation ●  deployedApiApplications query ●  deployedApiApplicationUpdate mutation

Member Of

DeployedApiSubscription object

On this Page