PUT api/invoice/status

Request Information

URI Parameters

None.

Body Parameters

Invoice
NameDescriptionTypeAdditional information
Id

integer

None.

CustomerNr

integer

None.

DueDate

date

None.

Amount

decimal number

None.

Comment

string

None.

Atgard

string

None.

VerificationNr

integer

None.

CustomerName

string

None.

Status

integer

None.

Request Formats

application/json, text/json

Sample:
{
  "Id": 1,
  "CustomerNr": 2,
  "DueDate": "2025-12-08T20:00:22.2039882+00:00",
  "Amount": 4.0,
  "Comment": "sample string 5",
  "Atgard": "sample string 6",
  "VerificationNr": 7,
  "CustomerName": "sample string 8",
  "Status": 1
}

application/xml, text/xml

Sample:
<Invoice xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns="http://schemas.datacontract.org/2004/07/AdmApi.Marindepan2015.Models">
  <Amount>4</Amount>
  <Atgard>sample string 6</Atgard>
  <Comment>sample string 5</Comment>
  <CustomerName>sample string 8</CustomerName>
  <CustomerNr>2</CustomerNr>
  <DueDate>2025-12-08T20:00:22.2039882+00:00</DueDate>
  <Id>1</Id>
  <Status>1</Status>
  <VerificationNr>7</VerificationNr>
</Invoice>

application/x-www-form-urlencoded

Sample:

Sample not available.

Response Information

Resource Description

Object

None.

Response Formats

application/json, text/json

Sample:
{}

application/xml, text/xml

Sample:
<z:anyType xmlns:i="http://www.w3.org/2001/XMLSchema-instance" xmlns:z="http://schemas.microsoft.com/2003/10/Serialization/" />