presentationGet method

Future<Map<String, dynamic>> presentationGet(
  1. String uuid
)
inherited

presentationGet -> /v1/presentation/{uuid}

Requests the details of the specified presentation.

PARAMETERS

uuid : The UUID of the presentation to look up.

  • Example (uuid): 3C39C433-5C18-4F51-B357-55BB870227C4

RESPONSE 200:

The request was processed successfully.

content-type: application/json

schema:

{
  "type": "object",
  "required": [
    "groups",
    "name",
    "has_timeline",
    "current_location",
    "destination"
  ]
}

Implementation

Future<Map<String, dynamic>> presentationGet(String uuid) async {
  String url = '/v1/presentation/$uuid';

  return await call('get', url, httpAccept: 'application/json');
}