Zendesk\API\HttpClient::post PHP Метод

post() публичный Метод

This is a helper method to do a post request.
public post ( $endpoint, array $postData = [] ) : stdClass
$endpoint
$postData array
Результат stdClass | null
    public function post($endpoint, $postData = [])
    {
        $response = Http::send($this, $endpoint, ['postFields' => $postData, 'method' => 'POST']);
        return $response;
    }