Download the PHP package idci/sam-client-bundle without Composer
On this page you can find all versions of the php package idci/sam-client-bundle. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download idci/sam-client-bundle
More information about idci/sam-client-bundle
Files in idci/sam-client-bundle
Package sam-client-bundle
Short Description Symfony bundle that provides an api client for SAM app (SAVInsight)
License CECILL-C
Informations about the package sam-client-bundle
IDCI SAM Client Bundle
Symfony bundle that provides an api client for SAM app (SAVInsight)
Installation
Install this bundle using composer :
Configuration
Create an Eightpoint Guzzle HTTP client
In the file config/packages/eight_points_guzzle.yaml
, create a SAM API client :
Configure a cache pool
Create a dedicated SAM cache, or use any of your existing pools :
In the file config/services.yaml
, register your cache pool :
In the file config/packages/cache.yaml
, define your cache pool :
Configure sam-client-bundle
In config/packages/
, create a idci_sam_client.yaml
file :
Required parameters:
- guzzle_http_client_service_alias : The guzzle HTTP client alias
- client_id : The SAM client ID
- client_secret : The SAM client secret
- mode:
live
orstaging
Then, add these environment variable in your .env
file :
To retrieve more informations about SAM API, go to https://sam-staging.savinsight.com/swagger/index.html.
Usage
Activity methods
Create activity
option name | type |
---|---|
date | DateTimeInterface, string, null |
employeeCode | string, null |
Update activity
option name | type |
---|---|
status | UpdateActivityInputState |
date | DateTimeInterface, string, null |
employeeCode | string, null |
Diagnostic methods
Create diagnostic
option name | type |
---|---|
date | DateTimeInterface, string, null |
watchStates | array, null |
operations | array, null |
Business deal methods
Create business deal
option name | type |
---|---|
externalId* | string |
partnerReference* | string |
brandReference* | string |
partnerSiteReference | string, null |
initialRequestorPartnerSiteReference | string, null |
initialRequestorPartnerReference | string, null |
invoicingCode | string, null |
internalNumber | string, null |
productNature | string, null |
productReference | string, null |
productSerialNumber | string, null |
batchReference | string, null |
movementSerialNumberReference | string, null |
movementReference | string, null |
interventionCode | string, null |
progress | BusinessDealProgress, array |
accessCode | string, null |
Get business deal
Update business deal
option name | type |
---|---|
jsonPatchDocuments | array |
Delete business deal
All versions of sam-client-bundle with dependencies
symfony/cache Version ^6.0
symfony/console Version ^6.0
symfony/dependency-injection Version ^6.0
symfony/http-kernel Version ^6.0
symfony/serializer-pack Version ^1.0
eightpoints/guzzle-bundle Version ^8.0
psr/log Version ^1|^2|^3