Skip to main content
PATCH
/
api
/
v1
/
dev
/
teams
/
{teamId}
/
licenses
/
id
/
{licenseId}
/
ip-address
/
{ipId}
Update IP Address Status
curl --request PATCH \
  --url https://app.lukittu.com/api/v1/dev/teams/{teamId}/licenses/id/{licenseId}/ip-address/{ipId} \
  --header 'Authorization: Bearer <token>' \
  --header 'Content-Type: application/json' \
  --data '{
  "forgotten": true
}'
{
  "data": {
    "ipId": "789e0123-e89b-12d3-a456-426614174333",
    "forgotten": true
  },
  "result": {
    "timestamp": "2023-09-15T14:30:00Z",
    "valid": true,
    "details": "IP address forgotten successfully"
  }
}

Authorizations

Authorization
string
header
required

API key authentication for development endpoints.

You can create API keys in your team's settings on the Lukittu dashboard. Include the API key in the Authorization header as: Bearer YOUR_API_KEY

Example:

Authorization: Bearer lukittu_api_key_abc123def456...

Path Parameters

teamId
string<uuid>
required

Your team's UUID. You can find this value in your team's settings on the Lukittu dashboard.

licenseId
string<uuid>
required

The unique identifier (UUID v4) of the license.

ipId
string<uuid>
required

IP address ID

Body

application/json
forgotten
boolean
required

Whether to mark this IP address as forgotten

Response

IP address updated successfully

data
object
required

Response data

result
object
required
I