-
Notifications
You must be signed in to change notification settings - Fork 128
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add Rest Contact Custom Fields List endpoint
- Loading branch information
Michael Fairchild
committed
Apr 25, 2017
1 parent
059a345
commit b3bfc9d
Showing
2 changed files
with
21 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<?php namespace Infusionsoft\Api\Rest; | ||
|
||
use Infusionsoft\Api\Rest\Traits\CannotCreate; | ||
use Infusionsoft\Api\Rest\Traits\CannotDelete; | ||
use Infusionsoft\Api\Rest\Traits\CannotSave; | ||
use Infusionsoft\Api\Rest\Traits\CannotSync; | ||
|
||
class CustomFieldService extends RestModel { | ||
|
||
use CannotDelete, CannotSync, CannotSave, CannotCreate; | ||
|
||
public $full_url = 'https://api.infusionsoft.com/crm/rest/v1/contactCustomFields'; | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters