Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.grdd.dev/llms.txt

Use this file to discover all available pages before exploring further.

Release Date: May 2026 · Product: GNet Platform · Endpoint: POST /Platform.svc/sendTrip · View API Docs

New Fields

Two new optional fields have been added to the sendTrip request payload.

1. namesignURL string · optional

A URL pointing to a pre-generated namesign asset for passenger pickup. Supported file types: HTML, PDF, or an image. Best practice for URL structure (not required, but recommended):
# Extension-based
https://example.com/booking/123456789/namesign.pdf
https://example.com/booking/123456789/namesign.png
https://example.com/booking/123456789/namesign.html

# Parameter-based
https://example.com/booking/123456789/namesign?format=PDF
https://example.com/booking/123456789/namesign?format=PNG
Usage guidance:
Include namesignURL in the payload so the receiving operator can display the namesign to their driver.
If the inbound payload contains a namesignURL, your system should render it. On mobile devices, display it full-screen for easy passenger identification at pickup.

2. tripAttributes array · optional

An array of structured attribute objects describing special requirements or services for the trip. The code field is required on each item; all other fields are optional. Schema:
FieldTypeRequiredDescription
codestring✅ YesIdentifies the attribute type (see codes below)
valuestringNoSpecific value for the attribute
quantityintegerNoNumeric quantity where applicable
notesstringNoFree-text notes for the driver
Supported codes:
CodeDescriptionCommon value options
CAR_SEATChild car seat requirementINFANT, TODDLER, BOOSTER
SECURITY_SERVICESecurity personnel or escort
DISABILITY_SERVICEAccessibility accommodationWHEELCHAIR_ACCESSIBLE
CHILD_SAFETYGeneral child safety flag
JSON example:
"tripAttributes": [
  { "code": "CAR_SEAT", "value": "INFANT", "quantity": 1, "notes": "rear-facing" },
  { "code": "CAR_SEAT", "value": "BOOSTER", "quantity": 1 },
  { "code": "SECURITY_SERVICE" },
  { "code": "DISABILITY_SERVICE", "value": "WHEELCHAIR_ACCESSIBLE" },
  { "code": "CHILD_SAFETY" }
]

Backward Compatibility

Both fields are optional. Existing integrations require no changes. If your platform does not send these fields, trip processing is unaffected.

Questions?

Contact the GNet Platform team at support@grdd.net.