forgie1 / gls-soap-api
GLS SOAP API
Installs: 3 423
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: >=8.0
- ext-soap: *
Requires (Dev)
- artfocus/codestyle: dev-github as 6.0.0
- phpstan/phpstan: 0.7.*
- phpunit/phpunit: ^6.0
README
APi name and Documentation:
GLS Online Api v.18.09.12.01
See PDF document in doc
directory.
Usage
For Allowed endpoints see: \GlsSoapApi\GlsClient::ALLOWED_ENDPOINTS
$client = new \GlsSoapApi\GlsClient('endPoint', 'userName', 'password', 'senderId', 'testMode'); $requestData = new \GlsSoapApi\Requests\Entities\PrintLabelRequestData(); $requestData ->set ....; $request = new \GlsSoapApi\Requests\PrintLabelRequest($requestData) $response = $client->send($request);
Available Requests:
- PrintLabelRequest
- DeleteLabelsRequest
- ModifyCodRequest
TestMode
If GlsClient()
is created with $testMode = true
credentials and country are ignored, request is made to test server and result is logged by &logger.
Logging:
Use GlsClient::setLogger()
.