Management
Unpause Token
Resume transfers on a paused stock token contract
POST
/
stocks
/
api
/
manage
/
{tokenAddress}
/
unpause
curl -X POST "https://api.trusset.org/stocks/api/manage/0x1234.../unpause" \
-H "Content-Type: application/json" \
-H "X-API-Key: trusset_abc123xy_secret..." \
-d '{}'
const response = await fetch(
`https://api.trusset.org/stocks/api/manage/${tokenAddress}/unpause`,
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': 'trusset_abc123xy_secret...'
},
body: JSON.stringify({})
}
);
const { data } = await response.json();
{
"success": true,
"data": {
"success": true,
"txData": {
"to": "0x1234567890abcdef1234567890abcdef12345678",
"data": "0xa5b6c7d8...",
"value": "0"
}
},
"metadata": {
"requestId": "550e8400-e29b-41d4-a716-446655440000",
"timestamp": "2025-06-15T12:00:00.000Z",
"instanceId": "inst_abc123"
}
}
Unpauses a previously paused token contract, restoring normal transfer functionality.
Path Parameters
string
required
Address of the stock token contract.
Request Body
Response Fields
object
Nothing is submitted on your behalf. Sign
txData with a wallet holding the required role on the token and broadcast it yourself.curl -X POST "https://api.trusset.org/stocks/api/manage/0x1234.../unpause" \
-H "Content-Type: application/json" \
-H "X-API-Key: trusset_abc123xy_secret..." \
-d '{}'
const response = await fetch(
`https://api.trusset.org/stocks/api/manage/${tokenAddress}/unpause`,
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': 'trusset_abc123xy_secret...'
},
body: JSON.stringify({})
}
);
const { data } = await response.json();
{
"success": true,
"data": {
"success": true,
"txData": {
"to": "0x1234567890abcdef1234567890abcdef12345678",
"data": "0xa5b6c7d8...",
"value": "0"
}
},
"metadata": {
"requestId": "550e8400-e29b-41d4-a716-446655440000",
"timestamp": "2025-06-15T12:00:00.000Z",
"instanceId": "inst_abc123"
}
}
⌘I
curl -X POST "https://api.trusset.org/stocks/api/manage/0x1234.../unpause" \
-H "Content-Type: application/json" \
-H "X-API-Key: trusset_abc123xy_secret..." \
-d '{}'
const response = await fetch(
`https://api.trusset.org/stocks/api/manage/${tokenAddress}/unpause`,
{
method: 'POST',
headers: {
'Content-Type': 'application/json',
'X-API-Key': 'trusset_abc123xy_secret...'
},
body: JSON.stringify({})
}
);
const { data } = await response.json();
{
"success": true,
"data": {
"success": true,
"txData": {
"to": "0x1234567890abcdef1234567890abcdef12345678",
"data": "0xa5b6c7d8...",
"value": "0"
}
},
"metadata": {
"requestId": "550e8400-e29b-41d4-a716-446655440000",
"timestamp": "2025-06-15T12:00:00.000Z",
"instanceId": "inst_abc123"
}
}
