getById() public method

Return a single form based on the unique ID of that form.
See also: http://developers.hubspot.com/docs/methods/forms/v2/get_form
public getById ( string $form_guid ) : Response
$form_guid string
return SevenShores\Hubspot\Http\Response
Example #1
0
 /** @test */
 public function getById()
 {
     $form = $this->createForm();
     $response = $this->forms->getById($form->guid);
     $this->assertEquals(200, $response->getStatusCode());
 }