Skip to content
This repository was archived by the owner on Sep 12, 2025. It is now read-only.

Commit 33a56f8

Browse files
committed
2 parents 6434ba3 + 021e4b0 commit 33a56f8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

README.md

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@ You need to use credentials to connect your website to Service-Now.
1414
(You have to create a generic account if possible or use a normal account. Here we used an account from a developper instance from Service-Now.)
1515

1616
```php
17-
$SNClient = new ServiceNowClient($instance, $username, $password);
17+
$proxy = ""; //if you don't use proxy :)
18+
$SNClient = new ServiceNowClient($instance, $username, $password, $proxy);
1819
```
1920

2021
Here, we verify that we can login on Service-Now and we display all number of first 10 incidents ! (see parameters on
@@ -63,6 +64,7 @@ If you resolve the issue by modify code, do a pull request and add your name in
6364
- [x] GET TableAPI
6465
- [x] GET SYS_ID TableAPI
6566
- [x] POST TableAPI
66-
- [ ] PUT TableAPI
67-
- [ ] PATCH TableAPI
68-
- [ ] DELETE TableAPI
67+
- [x] PUT TableAPI
68+
- [x] PATCH TableAPI
69+
- [x] DELETE TableAPI
70+
- [x] Use Proxy

0 commit comments

Comments
 (0)