Knowledge Base > Request example
Sometimes before you want to begin developing, you prefer to understand the bits and bytes
Here is a step by step how you can online request a soap api:
Open this site in new Tab: https://www.hurl.it/
Provide the following 4 details and press on “Launch Request”:
1. Post https://api.inwise.com/InwiseWebServices.asmx
2. Headers: SOAPAction https://inwise.com/schemas/GetAuthenticationToken
3. Another Header: Content-type text/xml; charset=utf-8
4. Body:
<?xml version=”1.0″ encoding=”utf-8″?>
<soap:Envelope xmlns:soap=”http://schemas.xmlsoap.org/soap/envelope/” xmlns:xsi=”http://www.w3.org/2001/XMLSchema-instance” xmlns:tm=”http://microsoft.com/wsdl/mime/textMatching/” xmlns:tns=”https://inwise.com/schemas”>
<soap:Header>
<SecHeader xmlns=”https://inwise.com/schemas”>
<username>inwise username</username>
<pass>inwise password</pass>
</SecHeader>
</soap:Header>
<soap:Body>
<GetAuthenticationToken xmlns=”https://inwise.com/schemas” />
</soap:Body>
</soap:Envelope>
It should look like this:
Now you will get the response