You are here

public function SendinblueMailin::getList in SendinBlue 7

Same name and namespace in other branches
  1. 7.2 includes/sendinblue.mailin.php \SendinblueMailin::getList()

Get list by id.

Parameters

string $id: A list identification.

Return value

array An array of lists.

File

includes/sendinblue.mailin.php, line 226
Rest class file.

Class

SendinblueMailin
Sendinblue REST client.

Code

public function getList($id) {
  return $this
    ->get("list/" . $id, "");
}