Skip to content

Commit

Permalink
Upd: add onboard endpoints
Browse files Browse the repository at this point in the history
Signed-off-by: George J Padayatti <[email protected]>
  • Loading branch information
georgepadayatti committed Oct 10, 2023
1 parent f2258de commit 5dd4db4
Show file tree
Hide file tree
Showing 20 changed files with 1,291 additions and 2,358 deletions.
943 changes: 709 additions & 234 deletions openapi/v2023.8.2/bundled.yaml

Large diffs are not rendered by default.

9 changes: 9 additions & 0 deletions openapi/v2023.8.2/definitions/Error.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
required:
- errorCode
- errorDescription
type: object
properties:
errorCode:
type: string
errorDescription:
type: string
58 changes: 58 additions & 0 deletions openapi/v2023.8.2/definitions/IndividualExtras.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
type: object
title: IndividualExtras
properties:
name:
type: string
iamId:
type: string
email:
type: string
phone:
type: string
imageId:
type: string
imageUrl:
type: string
lastVisit:
type: string
orgs:
type: array
items:
required:
- id
- name
- location
- type
- typeId
- eulaAccepted
type: object
properties:
id:
type: string
name:
type: string
location:
type: string
type:
type: string
typeId:
type: string
eulaAccepted:
type: boolean
apiKey:
type: string
roles:
type: array
items:
required:
- roleId
- orgId
type: object
properties:
roleId:
type: integer
format: int32
orgId:
type: string
incompleteProfile:
type: boolean
24 changes: 24 additions & 0 deletions openapi/v2023.8.2/definitions/Organisation.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
required:
- name
- location
- description
- policyUrl
type: object
properties:
id:
type: string
name:
type: string
location:
type: string
policyurl:
type: string
coverImageId:
type: string
coverImageUrl:
type: string
logoImageId:
type: string
logoImageUrl:
type: string

21 changes: 21 additions & 0 deletions openapi/v2023.8.2/definitions/Token.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
required:
- accessToken
- expiresIn
- refreshExpiresIn
- refreshToken
- tokenType
type: object
title: Token
properties:
accessToken:
type: string
expiresIn:
type: integer
format: int32
refreshExpiresIn:
type: integer
format: int32
refreshToken:
type: string
tokenType:
type: string
Loading

0 comments on commit 5dd4db4

Please sign in to comment.