1// indices/create-index.asciidoc:203
2
3[source, php]
4----
5$params = [
6    'index' => 'test',
7];
8$response = $client->indices()->create($params);
9----
10