Reference for https://rest.interfax.net/outbound/addressbooks?limit={LIMIT}&offset={OFFSET}

Url: https://rest.interfax.net/outbound/addressbooks?limit={LIMIT}&offset={OFFSET}

HTTP Method: GET

Message direction Format Body
Request N/A The Request body is empty.
Response Xml Example,Schema
Response Json Example

The following is an example response Xml body:

<ArrayOfContactListHead>
  <ContactListHead>
    <ContactListID>2147483647</ContactListID>
    <isPrivate>true</isPrivate>
    <listName>String content</listName>
    <userID>String content</userID>
    <numOfContacts>2147483647</numOfContacts>
  </ContactListHead>
  <ContactListHead>
    <ContactListID>2147483647</ContactListID>
    <isPrivate>true</isPrivate>
    <listName>String content</listName>
    <userID>String content</userID>
    <numOfContacts>2147483647</numOfContacts>
  </ContactListHead>
</ArrayOfContactListHead>

The following is an example response Json body:

[{
	"ContactListID":2147483647,
	"isPrivate":true,
	"listName":"String content",
	"userID":"String content",
	"numOfContacts":2147483647
}]

The following is the response Xml Schema:

<xs:schema elementFormDefault="qualified" xmlns:xs="http://www.w3.org/2001/XMLSchema">
  <xs:element name="ArrayOfContactListHead" nillable="true" type="ArrayOfContactListHead" />
  <xs:complexType name="ArrayOfContactListHead">
    <xs:sequence>
      <xs:element minOccurs="0" maxOccurs="unbounded" name="ContactListHead" nillable="true" type="ContactListHead" />
    </xs:sequence>
  </xs:complexType>
  <xs:complexType name="ContactListHead">
    <xs:sequence>
      <xs:element minOccurs="1" maxOccurs="1" name="ContactListID" type="xs:int" />
      <xs:element minOccurs="1" maxOccurs="1" name="isPrivate" type="xs:boolean" />
      <xs:element minOccurs="0" maxOccurs="1" name="listName" type="xs:string" />
      <xs:element minOccurs="0" maxOccurs="1" name="userID" type="xs:string" />
      <xs:element minOccurs="1" maxOccurs="1" name="numOfContacts" type="xs:int" />
    </xs:sequence>
  </xs:complexType>
</xs:schema>