GET   selfservicefiles

Get all self service files of a customer

Remarks

The service returns a sequence of self service files from your LTP file repository.

Response body model example and description

{
  "Loadtest files": [
    {
      "Id": 254786,
      "File name": "my_scenario.class",
      "Last modified UNIX": 1456300935,
      "Creation date UNIX": 1456300935,
      "File description": "Full purchase cycle scenario",
      "File groups": [
        {
          "Id": 1,
          "Name": "sample string 2"
        },
        {
          "Id": 1,
          "Name": "sample string 2"
        },
        {
          "Id": 1,
          "Name": "sample string 2"
        }
      ],
      "Grouped": true,
      "Tags": "Loadtest job completed."
    },
    {
      "Id": 254786,
      "File name": "my_scenario.class",
      "Last modified UNIX": 1456300935,
      "Creation date UNIX": 1456300935,
      "File description": "Full purchase cycle scenario",
      "File groups": [
        {
          "Id": 1,
          "Name": "sample string 2"
        },
        {
          "Id": 1,
          "Name": "sample string 2"
        },
        {
          "Id": 1,
          "Name": "sample string 2"
        }
      ],
      "Grouped": true,
      "Tags": "Loadtest job completed."
    },
    {
      "Id": 254786,
      "File name": "my_scenario.class",
      "Last modified UNIX": 1456300935,
      "Creation date UNIX": 1456300935,
      "File description": "Full purchase cycle scenario",
      "File groups": [
        {
          "Id": 1,
          "Name": "sample string 2"
        },
        {
          "Id": 1,
          "Name": "sample string 2"
        },
        {
          "Id": 1,
          "Name": "sample string 2"
        }
      ],
      "Grouped": true,
      "Tags": "Loadtest job completed."
    }
  ],
  "exception": "An exception was encountered during execution: {exception details...}"
}
Name Type Description
Loadtest files Array

The array of load test jobs belonging to the customer of the authenticated user

Id Integer

The file id which can be used to download the contents of a file via the API

File name String

The name of the file, such as 'myfile.html' or 'greatscenario.zip'

Last modified UNIX Integer

The date of the last modification according to the UNIX timestamp format

Creation date UNIX Integer

The file creation date according to the UNIX timestamp format

File description String

A short description of the file

File groups Object

The file groups the file belongs to if any

Id Integer

No documentation available.

Name String

No documentation available.

Grouped Boolean

Whether the file belongs to any file group

Tags String

The status of the job

exception String

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

;