getEndpoint method

Future<GetEndpointResponse> getEndpoint({
  1. required String applicationId,
  2. required String endpointId,
})

Retrieves information about the settings and attributes of a specific endpoint for an application.

May throw BadRequestException. May throw InternalServerErrorException. May throw PayloadTooLargeException. May throw ForbiddenException. May throw NotFoundException. May throw MethodNotAllowedException. May throw TooManyRequestsException.

Parameter applicationId : The unique identifier for the application. This identifier is displayed as the Project ID on the Amazon Pinpoint console.

Parameter endpointId : The unique identifier for the endpoint.

Implementation

Future<GetEndpointResponse> getEndpoint({
  required String applicationId,
  required String endpointId,
}) async {
  ArgumentError.checkNotNull(applicationId, 'applicationId');
  ArgumentError.checkNotNull(endpointId, 'endpointId');
  final response = await _protocol.sendRaw(
    payload: null,
    method: 'GET',
    requestUri:
        '/v1/apps/${Uri.encodeComponent(applicationId)}/endpoints/${Uri.encodeComponent(endpointId)}',
    exceptionFnMap: _exceptionFns,
  );
  final $json = await _s.jsonFromResponse(response);
  return GetEndpointResponse(
    endpointResponse: EndpointResponse.fromJson($json),
  );
}