-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathidentity.token.yaml
44 lines (44 loc) · 1.17 KB
/
identity.token.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
openapi: 3.0.1
info:
title: IdentityServer External API
version: v1
servers:
- url: https://cloud.uipath.com/identity_
paths:
/connect/token:
post:
tags:
- Token
summary: Creates a new token
operationId: Create
requestBody:
content:
'application/x-www-form-urlencoded':
schema:
type: object
properties:
client_id:
description: The client id
type: string
client_secret:
description: The client secret
type: string
grant_type:
description: The grant type
type: string
scope:
description: The scopes
type: string
username:
description: The user name
type: string
password:
description: The user name
type: string
required:
- client_id
- client_secret
- grant_type
responses:
"200":
description: Success