Files
T120B165/Bruno/Endpoints/Posts/Create a post.bru
2025-10-06 10:42:47 +03:00

27 lines
357 B
Plaintext

meta {
name: Create a post
type: http
seq: 1
}
post {
url: {{baseUrl}}/api/posts
body: json
auth: bearer
}
auth:bearer {
token: {{accessToken}}
}
body:json {
{
"title": "TheoTown logo",
"Description": "Some text...",
"tags": [],
"filename": "super image.png",
"fileMimeType": "image/png",
"fileSize": 642261
}
}