Properties
| Name | Type | Description |
|---|---|---|
| provider | string | |
| authenticationSession | object | This is the authentication session for the credential. |
| name | string | This is the name of credential. This is just for your reference. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/CreateGoHighLevelMCPCredentialDTO",
"title": "CreateGoHighLevelMCPCredentialDTO",
"type": "object",
"properties": {
"provider": {
"type": "string",
"enum": [
"ghl.oauth2-authorization"
]
},
"authenticationSession": {
"description": "This is the authentication session for the credential.",
"allOf": [
{
"$ref": "#/components/schemas/Oauth2AuthenticationSession"
}
]
},
"name": {
"type": "string",
"description": "This is the name of credential. This is just for your reference.",
"minLength": 1,
"maxLength": 40
}
},
"required": [
"provider",
"authenticationSession"
]
}