Skip to main content
POST
/
v1
/
products
/
{id}
/
unarchive
TypeScript SDK
import { Solifyn } from 'solifyn';

const solifyn = new Solifyn({ apiKey: 'your_private_api_key_here' });

// Unarchive product
await solifyn.products.unarchive('prod_019e56a1...');
console.log('Product unarchived successfully');
{
  "message": "Product unarchived successfully"
}

Authorizations

Authorization
string
header
required

Authenticate requests using your standard bearer API key (e.g. YOUR_API_KEY).

Path Parameters

id
string
required

The unique product ID to unarchive.

Example:

"prod_123"

Response

200 - application/json

Product unarchived successfully.

message
string
Example:

"Product unarchived successfully"