GET   selfservicefiles?selfServiceFileId={selfServiceFileId}

Get a single self service file and its contents.

URL Parameters

NameDescription
selfServiceFileId

The id of the file to be retrieved. This is a positive integer.

Remarks

The contents of the file will be presented as a base64 encoded byte array in the JSON response

Response body model example and description

{
  "Loadtest file contents": {
    "File contents": "A Base 64 encoded string"
  },
  "exception": "An exception was encountered during execution: {exception details...}"
}
Name Type Description
Loadtest file contents Object

The file contents

File contents String

The file contents as a Base 64 encoded byte array

exception String

Any exception that arose during the function call. In case no exception was thrown this will be an empty string.

;