Performing requests
This section provides instructions for making requests of the ALM Octane server using request headers, request bodies, and queries.
Request header
All supported input header fields follow the HTTP/1.1 protocol. You can find a list describing HTTP/1.1 header definitions Header Field Definitions. Below you can find a list of ALM Octane-supported request header fields:
Header Name |
|
|
---|---|---|
Accept |
No |
Accept: application/json,text/html, application/ xhtml+xml,application/xml;q=0.9, image/webp*/*;q=0.8 |
Accept-Encoding |
No |
Accept: Accept-Encoding: gzip,deflate,sdch |
Content-Type |
No |
Content-Type: application/json |
Host |
Yes |
Host: <server>:<port> |
Note: When sending data, always send a Content-Type header to specify the type of data being sent from the client to the server.
Do not send a Content-Type header unless content is sent.
Always send an Accept header to specify the format of the data to receive from the server.
Request body
The API supports only application/json representation both on request and response.
Data is submitted and returned in the JSON format unless otherwise specified in the reference for a resource. This API uses the ECMA 404 Specification.
All supported request methods follow the HTTP/1.1 protocol. For a list describing HTTP/1.1 request methods, see Method Definitions.
-
GET
Requests a representation of a resource matching the request URI. -
PUT
Requests that the enclosed represented resource will be stored under the matching request URI if the resource already exists. -
DELETE
Requests a deletion of the resource found in the matching request URI. -
POST
Requests a creation of a new resource under the resource collection matching the request URI.
See also: