Quatrix APIs v1.0
Space shortcuts
Quatrix APIs v1.0 QA1
Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 2 Next »

This API call adds file tag.

Resource URL

/api/1.0/file/add_tag/<ID>

Resource Information

 

Response formatsJSON
Requires authentication?Yes
Rate limited?Yes
Requests / 15-min window (user auth)15
HTTP MethodPOST

Parameters

 

Name TypeDefault ValueValidationDescription

id

required

uuid-uuid4file ID.

type

required

string-"text" | "from" | "to" 

tag type.

value

required

string-

length(0, 500)

if type is "from" or "to"

value should be a valid email

tag value.

 


Example Request URL

Example Result

{
    "id": <uuid>,
    "file_id": <uuid>,
    "type": <string>,
    "value": <string>
}

 

 

 

 

 

 

 

 

  • No labels
Quatrix APIs v1.0 QA1