getById() 공개 메소드

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