# Get AWS parameters

Retrieves AWS credentials for the specified LRA and service. Used when a video identification process stores evidence on AWS. See getAwsParameter.

Endpoint: GET /api/document/{lraId}/getAwsParameter
Version: 26.1.0.3
Security: basicAuth, sslCertificate

## Path parameters:

  - `lraId` (string, required)
    Local Registration Authority (LRA) identifier.

## Query parameters:

  - `serviceId` (string, required)
    The service name.

## Response 200 fields (application/json):

  - `serviceId` (string)
    The service name.
    Example: "SERVICE_NAME"

  - `arn` (string)
    Amazon Resource Name (ARN) of the IAM role.
    Example: "arn:aws:iam::000000000000:role/ExampleRole"

  - `accessKey` (string)
    AWS access key ID.
    Example: "AKIAIOSFODNN0EXAMPLE"

  - `secretAccessKey` (string)
    AWS secret access key.
    Example: "wJalrXUtnFEMI0K7MDENG0bPxRfiCYEXAMPLEKEY"

## Response 500 fields (application/json):

  - `code` (integer, required)
    Application error code.
    Example: 242

  - `message` (string, required)
    Human-readable error description. For validation errors (code 242), includes field-level details in the format Input parameter invalid: [{field=..., message=...}].
    Example: "Input parameter invalid: [{field=disposableHolder, message=must not be null}]"


