The authorization type supported by Postman.
Properties
| Name | Type | Required | Description |
|---|---|---|---|
| type | AuthMethodType1 | ✅ | The authorization type. |
| noauth | any | ❌ | |
| apikey | AuthAttributes[] | ❌ | The API key's authentication information. |
| awsv4 | AuthAttributes[] | ❌ | The attributes for AWS Signature authentication. |
| basic | AuthAttributes[] | ❌ | The attributes for Basic Auth. |
| bearer | AuthAttributes[] | ❌ | The attributes for Bearer Token authentication. |
| digest | AuthAttributes[] | ❌ | The attributes for Digest access authentication. |
| edgegrid | AuthAttributes[] | ❌ | The attributes for Akamai Edgegrid authentication. |
| hawk | AuthAttributes[] | ❌ | The attributes for Hawk authentication. |
| ntlm | AuthAttributes[] | ❌ | The attributes for NTLM authentication. |
| oauth1 | AuthAttributes[] | ❌ | The attributes for OAuth1 authentication. |
| oauth2 | AuthAttributes[] | ❌ | The attributes for OAuth2 authentication. |
The authorization type.
Properties
| Name | Type | Required | Description |
|---|---|---|---|
| NOAUTH | string | ✅ | "noauth" |
| BASIC | string | ✅ | "basic" |
| BEARER | string | ✅ | "bearer" |
| APIKEY | string | ✅ | "apikey" |
| DIGEST | string | ✅ | "digest" |
| OAUTH1 | string | ✅ | "oauth1" |
| OAUTH2 | string | ✅ | "oauth2" |
| HAWK | string | ✅ | "hawk" |
| AWSV4 | string | ✅ | "awsv4" |
| NTLM | string | ✅ | "ntlm" |
| EDGEGRID | string | ✅ | "edgegrid" |