🚀 API 2.0 is now live! See our API Reference for details.
🚀 API 2.0 is now live! See our API Reference for details.
Run or Pause a specific Pearl
curl --request PUT \
--url https://api.nlpearl.ai/v2/Pearl/{pearlId}/Active \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"isActive": true
}
'123Documentation Index
Fetch the complete documentation index at: https://developers.nlpearl.ai/llms.txt
Use this file to discover all available pages before exploring further.
Specify the authorization token.
For more information, check out the Authorization Guide.
Defines the request structure for setting the active status of an entity.
A boolean value that specifies the new active status of the entity.
True activates the entity, while false deactivates it.
The active state of the Pearl.
Here is the activity status
1 - Running
2 - Paused
3 - Suspended
10 - TemporaryMaintenance
curl --request PUT \
--url https://api.nlpearl.ai/v2/Pearl/{pearlId}/Active \
--header 'Authorization: Bearer <token>' \
--header 'Content-Type: application/json' \
--data '
{
"isActive": true
}
'123