List available networks

GET p8auth/networks

Example Request

GET /api/v1/p8auth/networks HTTP/1.1
Host: tph.io
X-Token: c9c0a840-b5f1-4e0e-84da-e8a4eedfc63b

Response Structure

  • data: array[object]
    • id: int
    • name: string
    • description: string
    • provider: string
    • connectivity_type: string

Example Response

{
  "data": [
    {
      "id": 1,
      "name": "Network 1",
      "description": "",
      "provider": "Provider 1",
      "connectivity_type": "APN"
    },
    {
      "id": 2,
      "name": "Network 2",
      "description": "",
      "provider": "Provider 2",
      "connectivity_type": "APN"
    }
  ]
}