Get your data from database, with namespace or query for filtering results.
Name | Type | Description |
---|---|---|
namespace (Optional) | string | specified namespace to create unique data |
uuid (Optional) | string | if you want to retrieve data with specific uuid |
Store your data into database, with namespace (optional).
Name | Type | Description |
---|---|---|
namespace | string | specified namespace to create unique data |
{
"you_own_data": "you_own_value",
"you_own_data2": "you_own_value2",
"you_own_data3": "you_own_value3"
}
Also you can simulate updating data by sending a PUT request to this endpoint. {uuid} is required for spesific data to be updated.
Name | Type | Description |
---|---|---|
namespace | string | specified namespace to create unique data |
uuid * | string | fill in the uuid that will be updated |
{
"you_own_data": "you_own_value_updated",
"you_own_data2": "you_own_value_updated2",
"you_own_data3": "you_own_value_updated3"
}
with this endpoint you can delete data. {uuid} is required for spesific data to be deleted.
Name | Type | Description |
---|---|---|
namespace | string | specified namespace to create unique data |
uuid * | string | fill with uuid to be deleted |
Mock JSON, often referred to as dummy or sample JSON, plays a crucial role in the realm of software development and testing. It serves as a simulated representation of the data that an application is expected to send or receive. Essentially, mock JSON allows developers to mimic the responses and requests that would occur in a real-world scenario without relying on an actual database or external APIs.
In the context of web development, mock JSON becomes particularly valuable during the prototyping phase and when creating frontend components. It enables developers to simulate the structure and content of data without the need for a fully functional backend. This not only accelerates the development process but also allows frontend developers to work independently, focusing on perfecting the user interface without being hindered by backend complexities. Additionally, mock JSON proves invaluable for testing various scenarios, ensuring that the application can handle different data inputs effectively. In essence, by leveraging mock JSON, developers can streamline the development and testing processes, fostering a more efficient and collaborative development environment.
JWT, or JSON Web Token, is a compact, URL-safe means of representing claims between two parties. It is commonly used for authentication and information exchange in web development. JWTs consist of three parts: a header specifying the token type and signing algorithm, a payload containing the claims or statements about the user, and a signature ensuring the integrity of the token. This self-contained structure allows for secure transmission of information, enabling systems to verify the authenticity of the sender and ensuring the integrity of the exchanged data without the need for constant communication with the authentication server.