This commit is contained in:
2026-06-06 21:21:25 +03:30
parent 0f4e86c9e1
commit fc732ae75f
6 changed files with 45 additions and 6 deletions
+4
View File
@@ -48,6 +48,10 @@ body:multipart-form {
duration: 3
visibility: public
type: video
~image: @file()
~image_id: 1
~detail_image: @file()
~detail_image_id: 1
}
settings {
+2
View File
@@ -24,6 +24,8 @@ body:multipart-form {
~is_premium: true
~image: @file()
~image_id: 1
~detail_image: @file()
~detail_image_id: 1
}
settings {
+8
View File
@@ -0,0 +1,8 @@
meta {
name: referral
seq: 20
}
auth {
mode: inherit
}
+15
View File
@@ -0,0 +1,15 @@
meta {
name: get-referral
type: http
seq: 1
}
get {
url: {{baseUrl}}/referral
body: none
auth: inherit
}
settings {
encodeUrl: true
}
+5
View File
@@ -21,6 +21,11 @@ body:multipart-form {
category_ids[]: 1
subcategory_ids[]: 1
name: انگیزشی هایپ 5
~description: Music for deep sleep
~image_id: 1
~image: @file()
~detail_image_id: 1
~detail_image: @file()
}
settings {
+11 -6
View File
@@ -4,9 +4,9 @@ meta {
seq: 12
}
put {
post {
url: {{baseUrl}}/music-playlists/:id
body: json
body: multipartForm
auth: inherit
}
@@ -14,10 +14,15 @@ params:path {
id: 1
}
body:json {
{
"name":"خواب"
}
body:multipart-form {
name: خواب
~description: Music for deep sleep
~image_id: 1
~image: @file()
~detail_image_id: 1
~detail_image: @file()
~category_ids[]: 1
~subcategory_ids[]: 1
}
settings {