Clients
API Authorization
curl -L "https://client.api.korewireless.com/v1/ping" -H "Authorization: Bearer <YOUR_ACCESS_TOKEN>" Enter the number of items you want to view per page.
10Input the page number you wish to navigate to.
1Type of the client
standardPossible values: JWT token for authentication
200 response
Bad Request
Unauthorised User
Forbidden
The specified resource was not found
Server Error
Bad gateway
Service Unavailable
Gateway Timeout error
GET /v1/clients?page_size=1&page_number=1 HTTP/1.1
Host: client.api.korewireless.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"meta": {
"count": 1,
"page_number": 1,
"page_size": 10,
"previous_page_url": "url",
"next_page_url": "url"
},
"clients": [
{
"client_id": "apiclient_01exampledszqr9q",
"account_id": "acct_012example",
"name": "Test client",
"client_owner": "test@acme.com",
"client_type": "standard",
"locked": true,
"date_created": "Fri, 05 Apr 2024 11:08:14 GMT"
}
]
}ID of the account the client belongs to. Defaults to the clientCred's account scope if not specified.
acct_012exampleName of the client.
Specifies whether the client is locked or not. Can be true, false, or null.
201 response
Bad Request
Unauthorized User
Forbidden
The specified resource was not found
Server Error
Bad gateway
Service Unavailable
Gateway Timeout error
POST /v1/clients HTTP/1.1
Host: client.api.korewireless.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Content-Type: application/json
Accept: */*
Content-Length: 106
{
"account_id": "acct_012example",
"name": "Example Client",
"locked": false,
"scopes": {
"products": [
"SuperSIM"
]
}
}{
"message": "text",
"client_id": "text",
"client_secret": "text",
"client_type": "standard",
"account_id": "acct_012example",
"name": "text",
"date_created": "2026-01-01T00:00:00.000Z",
"client_owner": "text",
"locked": true
}Client Identifier to obtain the details
apiclient_01exampledszqr9q200 response
Bad Request
Unauthorised User
Forbidden
The specified resource was not found
Server Error
Bad gateway
Service Unavailable
Gateway Timeout error
GET /v1/clients/{client_id} HTTP/1.1
Host: client.api.korewireless.com
Authorization: Bearer YOUR_OAUTH2_TOKEN
Accept: */*
{
"client": {
"client_id": "apiclient_01exampledszqr9q",
"account_id": "acct_012example",
"name": "Test client",
"client_owner": "test@acme.com",
"client_type": "standard",
"locked": true,
"date_created": "Fri, 05 Apr 2024 11:08:14 GMT"
}
}Last updated
Was this helpful?