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.

The token issued by getToken2 must be passed as a header parameter on all GNet Platform API calls. A token stays active until it is released.

getToken2

POST /getToken2

Request

{
  "uid": "",
  "pw": ""
}

Response 200

"d2cfa643-1de0-42ba-b376-bfd3520b750c"

Example

curl -X POST \
  "https://api.grdd.net/Platform.svc/getToken2" \
  -H "Content-Type: application/json" \
  -d '{
    "uid": "<your_user_id>",
    "pw": "<your_password>"
  }'
Pass the returned token value in the token header on every subsequent request, e.g. token: d2cfa643-1de0-42ba-b376-bfd3520b750c.