Two Authentication Methods required to support both runtime:
PLEASE NOTE: This is going to be to HARD - as the connector SDK really is designed to use ONE at anyone time
but I would like the Basic Authentication to be ALWAYS used at design time to load the Action and Version dropdowns.
And then at RUNTIME the Bascic or Oauth to be used to access the resources.
Currently supported IDP Runtime Regions
- idp-rt.us-east-1.anypoint.mulesoft.com
- idp-rt.eu-central-1.eu1.anypoint.mulesoft.com
Currently supported Anypoint Runtime Regions
- anypoint.mulesoft.com
- eu1.anypoint.mulesoft.com
- OAuth 2.0 client_credentials
- Basic Authentication
securitySchemes:
mulesoft-connectedApp-oauth:
displayName: π‘οΈ MuleSoft Connected App OAuth 2.0
type: OAuth 2.0
description: |
### [Configure Connected Apps](https://docs.mulesoft.com/idp/automate-document-processing-with-the-idp-api#create-a-connected-app)
```
curl --location --request POST 'https://anypoint.mulesoft.com/accounts/api/v2/oauth2/token' \
--header 'Content-Type: application/json' \
--data-raw '{
"grant_type": "client_credentials",
"client_id": "<connected-app-client-id>",
"client_secret": "<connected-app-client-secret>"
}'
```
settings:
accessTokenUri: https://{mulesoftAnypointRegion}/accounts/api/v2/oauth2/token
authorizationGrants:
- client_credentials
describedBy:
headers:
Authorization:
description: |
Used to send a valid OAuth 2 access token. Bearer 234235246236236326
type: string
example: Bearer 0695bab3-e776-4d33-b61d-092789cb8765
pattern: ^Bearer [{]?[0-9a-fA-F]{8}-([0-9a-fA-F]{4}-){3}[0-9a-fA-F]{12}[}]?$
responses:
401:
description: |
Bad or expired token. This can happen if the API consumer uses a revoked or expired access token. To fix you should re-authenticate the user.
body:
application/problem+json:
type: object-commonError
403:
description: |
Bad OAuth request (wrong consumer key, bad nonce, expired timestamp...). Unfortunately, re-authenticating the user won't help here.
body:
application/problem+json:
type: object-commonError
mulesoft-basic-login:
type: Basic Authentication
displayName: π‘οΈ MuleSoft Anypoint Login
describedBy:
responses:
"200":
body:
application/json:
properties:
access_token:
example: d127e2ec-a703-4e2a-8629-e9158804748ble
type: string
token_type:
example: bearer
type: string