Activate a pending ID tag
POST/id-tags/:id/activate
Transitions a pending ID tag to active status, optionally setting a name and metadata without requiring user assignment.
Use Cases:
- Activate organization-level shared tags (fleet vehicles, guest access)
- Enable tags for anonymous/public charging access
- Complete onboarding for tags not tied to specific users
- Bulk activate provisioned tags after approval
- Set descriptive names during activation workflow
What Happens:
- Tag
statuschanges fromPENDINGtoACTIVE - Optional
nameis set if provided - Optional
metadatais stored if provided userIdremainsnull(tag not assigned to specific user)- Tag can now authorize charging sessions via OCPP
Important Notes:
- Tag must currently be in
PENDINGstatus userIdis NOT set by this endpoint (use PATCH /id-tags/:id for user assignment)- Activated tags work for organization-level or anonymous charging
- Use this for shared fleet tags or public charging access
Alternative Approaches:
- User Assignment: Use
PATCH /id-tags/:idwithuserId+status=ACTIVE - Status Only: Use
PUT /id-tags/:id/statuswithstatus=ACTIVE
info
This endpoint activates tags WITHOUT assigning them to users. Use for shared fleet tags, guest access, or public charging scenarios.
tip
To activate AND assign to a user simultaneously, use PATCH /id-tags/:id with both userId and status=ACTIVE fields.
note
The tag must be in PENDING status. Attempting to activate an already ACTIVE or BLOCKED tag will result in an error.
Request
Responses
- 200
- 400
- 401
- 403
- 404
- 500
An ID tag used for charging authentication
Standard error response format
Standard error response format
Standard error response format
Standard error response format
Standard error response format