EULA [Beta]

This contains APIs for EULA.

Sign an End User License Agreement

Sign an End User License Agreement.

Securityx-api-key
Request
header Parameters
Harness-Account
string

Identifier field of the account the resource is scoped to. This is required for Authorization methods other than the x-api-key header. If you are using the x-api-key header, this can be skipped.

Request Body schema: application/json
agreement_type
required
string (AgreementType)

Type of Agreement

Value: "AIDA"
Responses
200

Response of signing End User License Agreement

post/v1/eula/sign
Request samples
application/json
{
  • "agreement_type": "AIDA"
}
Response samples
application/json
{
  • "signed": true,
  • "message": "string"
}

Validate specified agreement is signed or not

Check whether End User License Agreement has been signed for specified agreement type.

Securityx-api-key
Request
query Parameters
agreement_type
required
string

Type of Agreements.

Value: "AIDA"
header Parameters
Harness-Account
string

Identifier field of the account the resource is scoped to. This is required for Authorization methods other than the x-api-key header. If you are using the x-api-key header, this can be skipped.

Responses
200

Response of signing End User License Agreement

get/v1/eula/validate-sign
Request samples
Response samples
application/json
{
  • "signed": true,
  • "message": "string"
}