Xero · Example Payload

Xero Getprojectusers Example

AccountingBank FeedsFinanceFinancial ServicesInvoicingPayrollSmall Business

Xero Getprojectusers Example is an example object payload from Xero, with 6 top-level fields. It illustrates the shape of data this provider's APIs accept or return.

Top-level fields

operationIdmethodpathsummaryrequestExamplesresponseExamples

Example Payload

Raw ↑
{
  "operationId": "getProjectUsers",
  "method": "GET",
  "path": "/ProjectsUsers",
  "summary": "Xero Retrieves a list of all project users",
  "requestExamples": [],
  "responseExamples": [
    {
      "status": "200",
      "contentType": "application/json",
      "example": {
        "pagination": {
          "page": 1,
          "pageSize": 50,
          "pageCount": 1,
          "itemCount": 2
        },
        "items": [
          {
            "userId": "740add2a-a703-4b8a-a670-1093919c2040",
            "name": "Test User",
            "email": "test@xero.com"
          },
          {
            "userId": "00000000-0000-0000-0000-000000000000",
            "name": "API Team",
            "email": "api@xero.com"
          }
        ]
      }
    }
  ]
}