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 duration: 3
visibility: public visibility: public
type: video type: video
~image: @file()
~image_id: 1
~detail_image: @file()
~detail_image_id: 1
} }
settings { settings {
+2
View File
@@ -24,6 +24,8 @@ body:multipart-form {
~is_premium: true ~is_premium: true
~image: @file() ~image: @file()
~image_id: 1 ~image_id: 1
~detail_image: @file()
~detail_image_id: 1
} }
settings { 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 category_ids[]: 1
subcategory_ids[]: 1 subcategory_ids[]: 1
name: انگیزشی هایپ 5 name: انگیزشی هایپ 5
~description: Music for deep sleep
~image_id: 1
~image: @file()
~detail_image_id: 1
~detail_image: @file()
} }
settings { settings {
+11 -6
View File
@@ -4,9 +4,9 @@ meta {
seq: 12 seq: 12
} }
put { post {
url: {{baseUrl}}/music-playlists/:id url: {{baseUrl}}/music-playlists/:id
body: json body: multipartForm
auth: inherit auth: inherit
} }
@@ -14,10 +14,15 @@ params:path {
id: 1 id: 1
} }
body:json { body:multipart-form {
{ name: خواب
"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 { settings {