Authenticatie

Binnen de Pynter API maken we gebruik van Basic Authentication. Je hebt een gebruikersnaam en wachtwoord nodig van ons. Daarnaast krijg je alleen toegang tot de endpoints die worden toegekend aan deze credentials.

Bij elk API endpoint zal er een username en password gevraagd worden als volgt:

POST /service/apiservice.asmx HTTP/1.1
Host: domein.acc.pynter.nl
Content-Type: application/soap+xml; charset=utf-8
Content-Length: length

<?xml version="1.0" encoding="utf-8"?>
<soap12:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap12="http://www.w3.org/2003/05/soap-envelope">
  <soap12:Body>
    <Endpoint xmlns="/service/ApiService.asmx">
      <username>string</username>
      <password>string</password>
    </Endpoint>
  </soap12:Body>
</soap12:Envelope>

Deze dienen altijd meegegeven te worden.


Revision #2
Created 30 January 2025 15:30:22 by Thomas Visscher
Updated 30 January 2025 15:33:08 by Thomas Visscher