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

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

// Unarchive collection
const collection = await solifyn.collections.unarchive('col_019e56a1...');
console.log('Collection Unarchived:', collection);
{
  "message": "Collection 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

Collection ID

Example:

"col_123"

Response

201 - application/json

Collection unarchived successfully.

message
string
required

Response message indicating the outcome of the action.

Example:

"Collection unarchived successfully"