Skip to main content
GET
/
v2
/
invoicing
/
accounting-sync
/
invoices
/
{id}
/
connections
List Connection Status for an Invoice.
curl --request GET \
  --url https://api-m.sandbox.paypal.com/v2/invoicing/accounting-sync/invoices/{id}/connections \
  --header 'Authorization: Bearer <token>'
{
  "id": "<string>",
  "connection_status": [
    {
      "connections": [
        {
          "platform_name": "<string>",
          "last_sync_time": "<string>",
          "last_sync_status": "IN_PROGRESS"
        }
      ]
    }
  ]
}

Authorizations

Authorization
string
header
required

Oauth 2.0 authentication

Path Parameters

id
string
required

The invoice id of the account.

Required string length: 1 - 24

Response

A successful request returns the HTTP 200 OK status code and a JSON response body.

Returns invoice connection status with timestamp per invoice.

id
string

The ID of the invoice. This property supports Unicode.

Required string length: 1 - 64
connection_status
Connections · object[]

An array of connection-level details.

Required array length: 1 - 1000 elements
I