Skip to main content
Use the properties query parameter to select which fields are returned by a GET request. This is useful when you only need a subset of a large response. Syntax: ?properties[]=<property>&properties[<relation>][]=<property> You can request as many properties as you need. For nested objects, use the relation name in brackets. The following example requests paymentType from each invoice and rfc from the invoice issuer:
curl -i 'https://api.syntage.com/entities/{entityId}/invoices?properties[]=paymentType&properties[issuer][]=rfc' \
  --header 'Accept: application/ld+json' \
  --header 'X-Api-Key: {apiKey}'