@php if(isset($functionHeaderParams)) { $clientToken = (object)array( 'name' => 'client-token', 'required' => true, 'type' => 'String', 'description' => 'API key provided by MyFileRunner admin.', ); // $acceptJSON = (object)array( // 'name' => 'accept', // 'required' => true, // 'type' => 'String', // 'description' => 'Specifies the format of the data to be sent (JSON).', // ); array_unshift($functionHeaderParams, $clientToken); // array_push($functionHeaderParams, $acceptJSON); } @endphp
Name | Type | Description | @foreach($functionHeaderParams as $functionHeaderParam)
---|---|---|
{{ $functionHeaderParam->name }} @if($functionHeaderParam->required !== false) Required @endif | {{ $functionHeaderParam->type }} | {{ $functionHeaderParam->description }} |
This server request does not require header parameters.
@endifName | Type | Description | @foreach($functionBodyParams as $functionBodyParam)
---|---|---|
{{ $functionBodyParam->name }} @if($functionBodyParam->required !== false) Required @endif | {{ $functionBodyParam->type }} | {{ $functionBodyParam->description }} |
This server request does not require body parameters.
@endif