Skip to content
FirmEasy

Create Electronic Folder

POST
https://app.firmeasy.legal/api/v1/electronica/carpeta

This endpoint allows creating a new organization folder specifically for the Electronic Signature module.



This resource is protected. You must include your access token in the request header.

Authorization
string
Access token (Bearer token).
Limits:Required
Content-Type
string
Specifies the request format.
Limits:application/json

Required Fields

Fields marked with an asterisk (*) are required and must be provided in the request. Other fields are optional.

Send the folder name in the body of your POST request in JSON format.

nombre
string
Identifying name for the new folder on the platform.
Limits:Required

Ventana de terminal
curl -X POST [https://app.firmeasy.legal/api/v1/electronica/carpeta](https://app.firmeasy.legal/api/v1/electronica/carpeta) \
-H "Authorization: Bearer TU_TOKEN_AQUI" \
-H "Content-Type: application/json" \
-d '{
"nombre": "Carpeta Nueva Proveniente del API"
}'
const myHeaders = new Headers();
myHeaders.append("Authorization", "Bearer TU_TOKEN_AQUI");
myHeaders.append("Content-Type", "application/json");
const raw = JSON.stringify({
"nombre": "Carpeta Nueva Proveniente del API"
});
const requestOptions = {
method: "POST",
headers: myHeaders,
body: raw,
redirect: "follow"
};
fetch("[https://app.firmeasy.legal/api/v1/electronica/carpeta](https://app.firmeasy.legal/api/v1/electronica/carpeta)", requestOptions)
.then((response) => response.json())
.then((result) => console.log(result))
.catch((error) => console.error(error));

Code Status Description
200 OK Folder created successfully.
400 Bad Request JSON structure failure.
401 Unauthorized Missing or invalid token.
500 Server Error Internal server failure.