mirror of
https://github.com/zitadel/zitadel.git
synced 2025-02-28 20:27:23 +00:00
fix: rest path for StartIdentityProviderIntent (#6447)
This commit is contained in:
parent
14d799e750
commit
0d94947d3c
@ -26,7 +26,7 @@ In the response, you will get an authentication URL of the provider you like.
|
||||
|
||||
```bash
|
||||
curl --request POST \
|
||||
--url https://$ZITADEL_DOMAIN/v2alpha/idp_intents/start \
|
||||
--url https://$ZITADEL_DOMAIN/v2alpha/idp_intents \
|
||||
--header 'Accept: application/json' \
|
||||
--header 'Authorization: Bearer '"$TOKEN"''\
|
||||
--header 'Content-Type: application/json' \
|
||||
|
@ -490,7 +490,7 @@ service UserService {
|
||||
// Start an IDP authentication (for external login, registration or linking)
|
||||
rpc StartIdentityProviderIntent (StartIdentityProviderIntentRequest) returns (StartIdentityProviderIntentResponse) {
|
||||
option (google.api.http) = {
|
||||
post: "/v2alpha/idp_intents/start"
|
||||
post: "/v2alpha/idp_intents"
|
||||
body: "*"
|
||||
};
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user