This page provides detailed information about the /api-docs/Community_Resources/submit
API endpoint.
Overview
The /api-docs/Community_Resources/submit
endpoint allows users to submit community resources to our platform. This can include articles, tutorials, or any other relevant content that the community finds useful.
Endpoint Details
- Method: POST
- URL:
/api-docs/Community_Resources/submit
- Authentication: Required (Please refer to our Authentication Documentation for more information)
Request Parameters
- title: (String) The title of the resource.
- content: (String) The content of the resource.
- category: (String) The category to which the resource belongs.
- tags: (String) Comma-separated tags for the resource.
Example Request
{
"title": "How to Install Node.js",
"content": "This article explains how to install Node.js on your system.",
"category": "Tutorials",
"tags": "Node.js, Installation, Guide"
}
Response
- Status Code: 200 - OK
- Body: (JSON) A response object containing the submitted resource details.
{
"id": "12345",
"title": "How to Install Node.js",
"content": "This article explains how to install Node.js on your system.",
"category": "Tutorials",
"tags": ["Node.js", "Installation", "Guide"]
}
Related Links
Community Resources