This commit is contained in:
2026-01-31 13:49:56 +01:00
parent 7074c85672
commit ecfa2d3985
203 changed files with 11592 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
meta {
name: Create Player From Playtomic
type: http
seq: 3
}
post {
url: {{baseUrl}}/api/v1/players/from-playtomic/
body: json
auth: inherit
}
body:json {
{
"playtomic_id": 0,
"gender": 0
}
}

View File

@@ -0,0 +1,20 @@
meta {
name: Create Player
type: http
seq: 1
}
post {
url: {{baseUrl}}/api/v1/players/
body: json
auth: inherit
}
body:json {
{
"name": "",
"gender": "",
"surname": "",
"nickname": ""
}
}

View File

@@ -0,0 +1,15 @@
meta {
name: Delete Player Association
type: http
seq: 8
}
delete {
url: {{baseUrl}}/api/v1/players/:id
body: none
auth: inherit
}
params:path {
id:
}

View File

@@ -0,0 +1,15 @@
meta {
name: Get Player By Id
type: http
seq: 6
}
get {
url: {{baseUrl}}/api/v1/players/:id
body: none
auth: inherit
}
params:path {
id:
}

View File

@@ -0,0 +1,15 @@
meta {
name: Get Players
type: http
seq: 2
}
get {
url: {{baseUrl}}/api/v1/players/
body: none
auth: inherit
}
params:query {
~search:
}

View File

@@ -0,0 +1,15 @@
meta {
name: Get Playtomic Players
type: http
seq: 4
}
get {
url: {{baseUrl}}/api/v1/players/playtomic-player/
body: none
auth: inherit
}
params:query {
~name:
}

View File

@@ -0,0 +1,15 @@
meta {
name: Get Tournament Id
type: http
seq: 5
}
get {
url: {{baseUrl}}/api/v1/players/tournament-id/
body: none
auth: inherit
}
params:query {
~url:
}

View File

@@ -0,0 +1,30 @@
meta {
name: Update Player
type: http
seq: 7
}
put {
url: {{baseUrl}}/api/v1/players/:id
body: json
auth: inherit
}
params:path {
id:
}
body:json {
{
"name": "",
"gender": "",
"surname": "",
"nickname": "",
"id": 0,
"number": "",
"email": "",
"picture": "",
"playtomic_id": "",
"level": ""
}
}