RestRequest::getContentType()


Definition

Returns the content type, sent by the request.

String getContentType ( )

Returns

Example

$Request = new RestRequest();
 
// Called endpoint is: [PUT] https://www.domain.com/webservice/accounting/booking
// Content is:         "id:5,account:1234,name:Mr. Smith,amount:592.30"
 
$ContentType = $Request->getContentType();  // "text/plain"