Table of Contents |
---|
Subscribe to our email list to receive updates about our API here.
...
Take a look at our Swagger documentation for the API here: Swagger
Send a POST request to https://beta-api.ambita.com/kode/v1/orders/cadastre
...
Code Block |
---|
curl -s \ -H "Content-Type: application/json" \ -H "Authorization: Bearer ej577asf-a5k6-42yq-a3a2-fh03hb8cb58c" \ https://beta-api.ambita.com/kode/v1/orders/cadastre -d " { \"orderData\": { \"address\": \"Infoveien 1, 9999 Infoland\", \"cadastre\": \"9999-1-1-0-0\" }, \"products\": [ { \"code\": \"WI99990033\" } ], \"reference\": \"some-reference\", \"technicalReference\": \"some-technical-reference\" }" |
JSON body:
Property | Description |
---|---|
address | Important to use this format: {street-address}, {postal-code} {postal-office} |
cadastre | Cadastre should always include all parts {Kommunenummer}-{Gårdsnummer}-{Bruksnummer}-{Festenummer}-{Seksjonsnummer}, example: |
reference | This reference is used to connect multiple orders to one reference, usually an assignment key and commonly used for billing reference |
technicalReference* | This reference is used to reference an order in our system, to a unique id in your system, good for debugging and lookups |
products | Array of objects |
...