Naviga ID
Docs HomeInfomakerNaviga
  • Introduction
  • Release notes
  • Architecture
    • Authorization schema
  • Integrations
    • Customer Integration
      • Microsoft Azure
      • Google G Suite
      • Custom Identity Provider
      • Moving to a New Identity Provider
    • Service Integration
      • IMSG and headers
  • Services
    • Admin API
      • Routes
        • Health
        • Organizations
        • Permissions
        • Roles
        • Units
        • Services
        • Subjects
        • Organization applications
        • Internal applications
    • IMSG
      • Routes
        • Imsg-service
      • Environment variables
  • Shared modules
    • Http Test Server
      • HttpTestServer
    • Service Authorization Lib
      • Authorize
      • Errors
      • ExpressMiddleware
      • TokenUtils
      • Hapi plugin
      • ServiceAuthorizationError
      • AccessDenied
      • Unauthorized
      • ConfigError
  • Client Credentials
    • Managing Applications
    • Internal Naviga ID Docs
  • Access Token
    • Fetching and using Access Tokens
    • Validate Access Tokens
  • Local development
    • Local HTTPS support
  • Post Mortem
    • Broken backwards compatibility in access token service for client credentials, 20th Dec 2021
Powered by GitBook
On this page
  • /organizationApplications.get
  • /organizationApplications.list
  • /organizationApplications.create
  • /organizationApplications.createCredential
  • /organizationApplications.delete
  • /organizationApplications.deleteCredential
  • /organizationApplications.modify

Was this helpful?

Export as PDF
  1. Services
  2. Admin API
  3. Routes

Organization applications

/organizationApplications.get

GET https://admin-api.imid.infomaker.io/v1/organizationApplications.get

Get organization application

Query Parameters

Name
Type
Description

organizationApplicationId

string

Organization application ID

{
  "id": "Organization application ID",
  "organizationId": "Organization id",
  "name": "my-organization-application",
  "description": "Description of speicific part xxx"
}
"errors.api.BadRequestError"
"errors.api.InternalServerError"

/organizationApplications.list

GET https://admin-api.imid.infomaker.io/v1/organizationApplications.list

List organization applications

Path Parameters

Name
Type
Description

string

[
  {
    "id": "Organization application ID",
    "organizationId": "Organization id",
    "name": "my-organization-application",
    "description": "Description of speicific part xxx"
  }
]
"errors.api.BadRequestError"
"errors.api.InternalServerError"

/organizationApplications.create

POST https://admin-api.imid.infomaker.io/v1/organizationApplications.create

Create organization application

Request Body

Name
Type
Description

organizationId

string

Organization id

name

string

Organization application name

description

string

Description of speicific part xxx

groups

array

undefined

{
  "id": "Organization application ID",
  "organizationId": "Organization id",
  "name": "my-organization-application",
  "description": "Description of speicific part xxx"
}
"errors.api.BadRequestError"
"errors.api.InternalServerError"

/organizationApplications.createCredential

POST https://admin-api.imid.infomaker.io/v1/organizationApplications.createCredential

Create organization application credentials

Request Body

Name
Type
Description

organizationApplicationId

string

Organization application ID

{
  "id": "Organization application credential ID",
  "clientSecret": "xxxxxx",
  "sanitizedClientSecret": "x*****x"
}
"errors.api.BadRequestError"
"errors.api.InternalServerError"

/organizationApplications.delete

POST https://admin-api.imid.infomaker.io/v1/organizationApplications.delete

Delete organization application

Request Body

Name
Type
Description

organizationApplicationId

string

Organization application ID

""
"errors.api.BadRequestError"
"errors.api.InternalServerError"

/organizationApplications.deleteCredential

POST https://admin-api.imid.infomaker.io/v1/organizationApplications.deleteCredential

Delete organization application credential

Request Body

Name
Type
Description

organizationApplicationId

string

Organization application ID

organizationClientCredentialId

string

Organization application credential ID

""
"errors.api.BadRequestError"
"errors.api.InternalServerError"

/organizationApplications.modify

POST https://admin-api.imid.infomaker.io/v1/organizationApplications.modify

Modify organization application

Request Body

Name
Type
Description

organizationApplicationId

string

Organization application ID

name

string

Organization application name

description

string

Description of speicific part xxx

groups

array

undefined

{
  "id": "Organization application ID",
  "organizationId": "Organization id",
  "name": "my-organization-application",
  "description": "Description of speicific part xxx"
}
"errors.api.BadRequestError"
"errors.api.InternalServerError"
PreviousSubjectsNextInternal applications

Last updated 4 years ago

Was this helpful?