freshbooks-php-sdk

FreshBooksClient
in package

SDK Client.

Table of Contents

Properties

$httpClient  : ClientInterface
$config  : FreshBooksClientConfig
$requestFactoryInterface  : RequestFactoryInterface
$streamFactoryInterface  : StreamFactoryInterface

Methods

__construct()  : mixed
attachments()  : UploadResource
FreshBooks attachment upload resource with call to upload, get
callbacks()  : EventsResource
FreshBooks callbacks (webhook callbacks) resource with calls to get, list, create, update, delete, verify, resendVerification
clients()  : AccountingResource
FreshBooks clients resource with calls to get, list, create, update, delete
currentUser()  : Identity
The identity details of the currently authenticated user.
expenseCategories()  : AccountingResource
FreshBooks expenses categories resource with calls to get and list
expenses()  : AccountingResource
FreshBooks expenses resource with calls to get, list, create, update, delete
getAccessToken()  : AuthorizationToken
Makes a call to the FreshBooks token URL to get an access_token.
getAuthRequestUri()  : string
getAuthRequestUri
getConfig()  : FreshBooksClientConfig
Get the current config.
images()  : UploadResource
FreshBooks image upload resource with call to upload, get
invoicePaymentOptions()  : PaymentResource
FreshBooks invoice payment options resource with calls to default, get, create.
invoices()  : AccountingResource
FreshBooks invoices resource with calls to get, list, create, update, delete
items()  : AccountingResource
FreshBooks items resource with calls to get, list, create, update, delete
payments()  : AccountingResource
FreshBooks payments resource with calls to get, list, create, update, delete.
projects()  : ProjectResource
FreshBooks projects resource with calls to get, list, create, update, delete.
refreshAccessToken()  : AuthorizationToken
Makes a call to the FreshBooks token URL to refresh an access_token.
tasks()  : AccountingResource
FreshBooks tasks resource with calls to get, list, create, update, delete
taxes()  : AccountingResource
FreshBooks taxes resource with calls to get, list, create, update, delete.
createHttpClient()  : HttpMethodsClient
getHeaders()  : array<string|int, mixed>
getToken()  : AuthorizationToken
Make call to FreshBooks OAuth /token endpoint to fetch access_token and refresh_tokens.

Properties

$requestFactoryInterface

private RequestFactoryInterface $requestFactoryInterface

$streamFactoryInterface

private StreamFactoryInterface $streamFactoryInterface

Methods

__construct()

public __construct(string $clientId, mixed $config) : mixed
Parameters
$clientId : string
$config : mixed

getAccessToken()

Makes a call to the FreshBooks token URL to get an access_token.

public getAccessToken(mixed $code) : AuthorizationToken

This requires the access_grant code obtained after the user is redirected by the authorization step. See FreshBooksClient::getAuthRequestUri().

This call sets the accessToken, refreshToken, and tokenExpiresAt properties on the FreshBooksClientConfig instance (see FreshBooksClient::getConfig()) and also returns those values in an AuthorizationToken object.

Parameters
$code : mixed

access grant code from the authorization redirect

Tags
throws
FreshBooksClientConfigException|FreshBooksException
Return values
AuthorizationToken

Object containing the access token, refresh token, and expiry details.

refreshAccessToken()

Makes a call to the FreshBooks token URL to refresh an access_token.

public refreshAccessToken([mixed $refreshToken = null ]) : AuthorizationToken

If refreshToken is provided, it will call to refresh it, otherwise it will use the refreshToken on the FreshBooksClientConfig instance.

This call sets the accessToken, refreshToken, and tokenExpiresAt properties on the FreshBooksClientConfig instance (see FreshBooksClient::getConfig()) and also returns those values in an AuthorizationToken object.

Parameters
$refreshToken : mixed = null

(Optional) Existing refresh token

Tags
throws
FreshBooksClientConfigException|FreshBooksException
Return values
AuthorizationToken

Object containing the access token, refresh token, and expiry details.

createHttpClient()

protected createHttpClient() : HttpMethodsClient
Return values
HttpMethodsClient

getHeaders()

protected getHeaders() : array<string|int, mixed>
Return values
array<string|int, mixed>

getToken()

Make call to FreshBooks OAuth /token endpoint to fetch access_token and refresh_tokens.

protected getToken(mixed $grantType, mixed $codeType, mixed $code) : AuthorizationToken
Parameters
$grantType : mixed

The grant type to use

$codeType : mixed

The type of code to use

$code : mixed

The code to use

Tags
throws
FreshBooksClientConfigException|FreshBooksException
Return values
AuthorizationToken

Object containing the access token, refresh token, and expiry details.


        
On this page

Search results