1// getting-started.asciidoc:290
2
3[source, php]
4----
5$params = [
6    'index' => 'customer',
7    'id' => '1',
8];
9$response = $client->get($params);
10----
11