Skip to content

Commit 7be8e64

Browse files
new optional tenant id param added (breaking)
1 parent 42b44ba commit 7be8e64

13 files changed

+109
-1
lines changed

src/main/api/approveDevice.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@
4141
"type": "form",
4242
"parameterName": "user_code",
4343
"javaType": "String"
44+
},
45+
{
46+
"name": "tenantId",
47+
"comments": [
48+
"(Optional) The Id of the tenant to use for this request."
49+
],
50+
"type": "form",
51+
"javaType": "UUID"
4452
}
4553
]
4654
}

src/main/api/clientCredentialsGrant.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -44,6 +44,14 @@
4444
],
4545
"type": "form",
4646
"javaType": "String"
47+
},
48+
{
49+
"name": "tenantId",
50+
"comments": [
51+
"(Optional) The Id of the tenant to use for this request."
52+
],
53+
"type": "form",
54+
"javaType": "UUID"
4755
}
4856
]
4957
}

src/main/api/exchangeOAuthCodeForAccessToken.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,14 @@
5252
],
5353
"type": "form",
5454
"javaType": "String"
55+
},
56+
{
57+
"name": "tenantId",
58+
"comments": [
59+
"(Optional) The Id of the tenant to use for this request."
60+
],
61+
"type": "form",
62+
"javaType": "UUID"
5563
}
5664
]
5765
}

src/main/api/exchangeOAuthCodeForAccessTokenUsingPKCE.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,14 @@
6060
],
6161
"type": "form",
6262
"javaType": "String"
63+
},
64+
{
65+
"name": "tenantId",
66+
"comments": [
67+
"(Optional) The Id of the tenant to use for this request."
68+
],
69+
"type": "form",
70+
"javaType": "UUID"
6371
}
6472
]
6573
}

src/main/api/exchangeRefreshTokenForAccessToken.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,14 @@
6060
],
6161
"type": "form",
6262
"javaType": "String"
63+
},
64+
{
65+
"name": "tenantId",
66+
"comments": [
67+
"(Optional) The Id of the tenant to use for this request. Required if the request is for a universal application."
68+
],
69+
"type": "form",
70+
"javaType": "UUID"
6371
}
6472
]
6573
}

src/main/api/exchangeUserCredentialsForAccessToken.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,14 @@
6868
],
6969
"type": "form",
7070
"javaType": "String"
71+
},
72+
{
73+
"name": "tenantId",
74+
"comments": [
75+
"(Optional) The Id of the tenant to use for this request."
76+
],
77+
"type": "form",
78+
"javaType": "UUID"
7179
}
7280
]
7381
}

src/main/api/introspectAccessToken.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@
2424
],
2525
"type": "form",
2626
"javaType": "String"
27+
},
28+
{
29+
"name": "tenantId",
30+
"comments": [
31+
"(Optional) The Id of the tenant to use for this request."
32+
],
33+
"type": "form",
34+
"javaType": "UUID"
2735
}
2836
]
2937
}

src/main/api/introspectClientCredentialsAccessToken.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,14 @@
1616
],
1717
"type": "form",
1818
"javaType": "String"
19+
},
20+
{
21+
"name": "tenantId",
22+
"comments": [
23+
"(Optional) The Id of the tenant to use for this request."
24+
],
25+
"type": "form",
26+
"javaType": "UUID"
1927
}
2028
]
2129
}

src/main/api/retrieveUserCode.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,15 @@
3737
"type": "form",
3838
"parameterName": "user_code",
3939
"javaType": "String"
40+
},
41+
{
42+
"name": "tenantId",
43+
"comments": [
44+
"(Optional) The Id of the tenant to use for this request."
45+
],
46+
"type": "urlParameter",
47+
"parameterName": "tenantId",
48+
"javaType": "UUID"
4049
}
4150
]
4251
}

src/main/api/retrieveUserCodeUsingAPIKey.json

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,15 @@
2121
"type": "form",
2222
"parameterName": "user_code",
2323
"javaType": "String"
24+
},
25+
{
26+
"name": "tenantId",
27+
"comments": [
28+
"(Optional) The Id of the tenant to use for this request."
29+
],
30+
"type": "urlParameter",
31+
"parameterName": "tenantId",
32+
"javaType": "UUID"
2433
}
2534
]
2635
}

0 commit comments

Comments
 (0)