Properties
| Name | Type | Description |
|---|---|---|
| consentId | integer | Unique identifier for consent. This is created during consent creation. |
| authorizationUrl | string | Authorization url generated for the request through PUT Consent to reach endsite. |
| providerId | integer | Unique identifier for the provider account resource. This is created during account addition. |
JSON Schema
{
"$schema": "https://json-schema.org/draft/2020-12/schema",
"$id": "#/components/schemas/RenewConsentResponse",
"title": "RenewConsentResponse",
"type": "object",
"properties": {
"consentId": {
"type": "integer",
"description": "Unique identifier for consent. This is created during consent creation.",
"format": "int64"
},
"authorizationUrl": {
"type": "string",
"description": "Authorization url generated for the request through PUT Consent to reach endsite."
},
"providerId": {
"type": "integer",
"description": "Unique identifier for the provider account resource. This is created during account addition.",
"format": "int64"
}
}
}