Clients
API Authorization
Before you can make requests to this resource, you must have a valid bearer token. Review our API authorization guide to learn how to generate a token. Here's a curl example of how to define your access token in a header:
curl -L "https://client.api.korewireless.com/v1/ping" -H "Authorization: Bearer <YOUR_ACCESS_TOKEN>" The examples below do not show the required Authorization header due to a bug. We're working on fixing that. In the meantime, be sure to include that in all of your requests.
List all active clients
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
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": "[email protected]",
"client_type": "standard",
"locked": true,
"date_created": "Fri, 05 Apr 2024 11:08:14 GMT"
}
]
}Create a new API client for the account for which the API credentials are for. Once created, the client ID and secret will be shown, the latter only shown once during the creation process.
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
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": "2025-11-12T14:09:30.425Z",
"client_owner": "text",
"locked": true
}Get Specific Client Details
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
Accept: */*
{
"client": {
"client_id": "apiclient_01exampledszqr9q",
"account_id": "acct_012example",
"name": "Test client",
"client_owner": "[email protected]",
"client_type": "standard",
"locked": true,
"date_created": "Fri, 05 Apr 2024 11:08:14 GMT"
}
}Last updated
Was this helpful?