Appointments

Appointment management API to be able to carry out the installation of resources to the client


Parameters

Name In Type Required Description
org path string true tenant name
body body Appointment true ‘none’

Request body - instance of Appointment

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
  "category": "installation",
  "contactMedium": [
    {
      "characteristic": {
        "key": "mobile",
        "value": 33650981065
      },
      "mediumType": "phoneNumber",
      "preferred": true
    },
    {
      "characteristic": {
        "key": "mobile",
        "value": 33650232065
      },
      "mediumType": "phoneNumber"
    }
  ],
  "description": "Tarea para conseguir una cita",
  "externalId": "MYSIM_391588",
  "id": "MYSIM_391588",
  "note": [
    {
      "author": "Ludovic Robert",
      "date": "2020-08-12T11:00:18.071Z",
      "text": "Problem explained to the back-office"
    }
  ],
  "relatedEntity": [
    {
      "href": "https://mysim/MYSIM_12411",
      "id": "MYSIM_12411",
      "name": "ID of OT",
      "role": "workorder"
    }
  ],
  "relatedParty": [
    {
      "id": "RISK",
      "role": "scoring_result"
    },
    {
      "id": "1",
      "role": "scoring_level"
    },
    {
      "id": "Raúl",
      "role": "firstName"
    },
    {
      "id": "Garcia Garcia",
      "role": "middleName"
    },
    {
      "id": "12345678T",
      "role": "documentNumber"
    },
    {
      "id": "test@pe.es",
      "role": "email"
    },
    {
      "id": "686201221",
      "role": "phoneNumber"
    },
    {
      "id": "28036",
      "role": "zipcode"
    },
    {
      "id": "mysim",
      "role": "sellchannel"
    },
    {
      "id": "10",
      "role": "user_role"
    },
    {
      "id": "Residencial",
      "role": "segment"
    },
    {
      "id": "eu_ES",
      "role": "language"
    },
    {
      "id": "16",
      "role": "tenant"
    },
    {
      "id": "80",
      "role": "duration"
    }
  ],
  "relatedPlace": {
    "href": "https://gescal37/geographicAddress/01000500059400011",
    "id": "01000500059400011 001B",
    "name": "Reyes de Navarra 11, 1B, Vitoria, Alava",
    "role": "interventionAddress"
  },
  "resourceOrderItem": [
    {
      "id": "6545",
      "resource": {
        "resourceCharacteristic": [
          {
            "name": "type",
            "value": "FTTH"
          },
          {
            "name": "territoryOwner",
            "value": "NEBA"
          }
        ]
      }
    },
    {
      "id": "6546",
      "resource": {
        "resourceCharacteristic": [
          {
            "name": "type",
            "value": "MOBILE_LINE"
          },
          {
            "name": "msisdn",
            "value": "666777888"
          },
          {
            "name": "tariff",
            "value": "3GB Ilimitada"
          }
        ]
      }
    }
  ],
  "status": "accepted",
  "validFor": {
    "endDateTime": "2020-08-18T15:00:00Z",
    "startDateTime": "2020-08-18T13:00:00Z"
  }
}
Name Type Required Description
category string false Used to categorize the order from a business perspective that can be useful for the OM system
contactMedium [ContactMedium] false contactMedium
description string false free-text description firestorehe Appointment
externalId string false ID given by the consumer (to facilitate searches afterwards)
id string false Identifier of an instance of the Appointment. Required to be unique within the resource type. Used in URIs as the identifier for specific instances of a type
note [Note] false note
relatedEntity [RelatedEntity] false related entity
relatedParty [RelatedParty] false related party
relatedPlace RelatedPlace false none
resourceOrderItem [ResourceOrderItem] false resourceOrderItem
status string false The life cycle state of the resource
validFor RangePeriod false RangePeriod reference

Request example

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149

curl -X POST https://appointments.sta.masstack.com/v1/orgs/masmovil/appointments \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: API_KEY" \
 --data-raw "{
  'category': 'installation',
  'contactMedium': [
    {
      'characteristic': {
        'key': 'mobile',
        'value': 33650981065
      },
      'mediumType': 'phoneNumber',
      'preferred': true
    },
    {
      'characteristic': {
        'key': 'mobile',
        'value': 33650232065
      },
      'mediumType': 'phoneNumber'
    }
  ],
  'description': 'Tarea para conseguir una cita',
  'externalId': 'MYSIM_391588',
  'id': 'MYSIM_391588',
  'note': [
    {
      'author': 'Ludovic Robert',
      'date': '2020-08-12T11:00:18.071Z',
      'text': 'Problem explained to the back-office'
    }
  ],
  'relatedEntity': [
    {
      'href': 'https://mysim/MYSIM_12411',
      'id': 'MYSIM_12411',
      'name': 'ID of OT',
      'role': 'workorder'
    }
  ],
  'relatedParty': [
    {
      'id': 'RISK',
      'role': 'scoring_result'
    },
    {
      'id': '1',
      'role': 'scoring_level'
    },
    {
      'id': 'Raúl',
      'role': 'firstName'
    },
    {
      'id': 'Garcia Garcia',
      'role': 'middleName'
    },
    {
      'id': '12345678T',
      'role': 'documentNumber'
    },
    {
      'id': 'test@pe.es',
      'role': 'email'
    },
    {
      'id': '686201221',
      'role': 'phoneNumber'
    },
    {
      'id': '28036',
      'role': 'zipcode'
    },
    {
      'id': 'mysim',
      'role': 'sellchannel'
    },
    {
      'id': '10',
      'role': 'user_role'
    },
    {
      'id': 'Residencial',
      'role': 'segment'
    },
    {
      'id': 'eu_ES',
      'role': 'language'
    },
    {
      'id': '16',
      'role': 'tenant'
    },
    {
      'id': '80',
      'role': 'duration'
    }
  ],
  'relatedPlace': {
    'href': 'https://gescal37/geographicAddress/01000500059400011',
    'id': '01000500059400011 001B',
    'name': 'Reyes de Navarra 11, 1B, Vitoria, Alava',
    'role': 'interventionAddress'
  },
  'resourceOrderItem': [
    {
      'id': '6545',
      'resource': {
        'resourceCharacteristic': [
          {
            'name': 'type',
            'value': 'FTTH'
          },
          {
            'name': 'territoryOwner',
            'value': 'NEBA'
          }
        ]
      }
    },
    {
      'id': '6546',
      'resource': {
        'resourceCharacteristic': [
          {
            'name': 'type',
            'value': 'MOBILE_LINE'
          },
          {
            'name': 'msisdn',
            'value': '666777888'
          },
          {
            'name': 'tariff',
            'value': '3GB Ilimitada'
          }
        ]
      }
    }
  ],
  'status': 'accepted',
  'validFor': {
    'endDateTime': '2020-08-18T15:00:00Z',
    'startDateTime': '2020-08-18T13:00:00Z'
  }
}" 

Responses

Code Meaning Description Schema
201 Created Appointment response AppointmentResponse
default Default Error response ErrorDto

Parameters

Name In Type Required Description
org path string true tenant name
body body SearchsTimeSlots true ‘none’

Request body - instance of SearchsTimeSlots

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
{
  "id": "MYSIM_391588",
  "relatedEntity": [
    {
      "href": "https://mysim/MYSIM_12411",
      "id": "MYSIM_12411",
      "name": "ID of OT",
      "role": "workorder"
    }
  ],
  "relatedParty": [
    {
      "id": "RISK",
      "role": "scoring_result"
    },
    {
      "id": "1",
      "role": "scoring_level"
    },
    {
      "id": "Raúl",
      "role": "firstName"
    },
    {
      "id": "Garcia Garcia",
      "role": "middleName"
    },
    {
      "id": "12345678T",
      "role": "documentNumber"
    },
    {
      "id": "test@pe.es",
      "role": "email"
    },
    {
      "id": "686201221",
      "role": "phoneNumber"
    },
    {
      "id": "28036",
      "role": "zipcode"
    },
    {
      "id": "mysim",
      "role": "sellchannel"
    },
    {
      "id": "10",
      "role": "user_role"
    },
    {
      "id": "Residencial",
      "role": "segment"
    },
    {
      "id": "eu_ES",
      "role": "language"
    },
    {
      "id": "16",
      "role": "tenant"
    },
    {
      "id": "80",
      "role": "duration"
    }
  ],
  "relatedPlace": {
    "href": "https://gescal37/geographicAddress/01000500059400011",
    "id": "01000500059400011 001B",
    "name": "Reyes de Navarra 11, 1B, Vitoria, Alava",
    "role": "interventionAddress"
  },
  "requestedTimeSlot": [
    {
      "validFor": {
        "endDateTime": "2020-08-18T15:00:00Z",
        "startDateTime": "2020-08-18T13:00:00Z"
      }
    }
  ],
  "resourceOrderItem": [
    {
      "id": "6545",
      "resource": {
        "resourceCharacteristic": [
          {
            "name": "type",
            "value": "FTTH"
          },
          {
            "name": "territoryOwner",
            "value": "NEBA"
          }
        ]
      }
    },
    {
      "id": "6546",
      "resource": {
        "resourceCharacteristic": [
          {
            "name": "type",
            "value": "MOBILE_LINE"
          },
          {
            "name": "msisdn",
            "value": "666777888"
          },
          {
            "name": "tariff",
            "value": "3GB Ilimitada"
          }
        ]
      }
    }
  ]
}
Name Type Required Description
id string false Identifier of an instance of the Appointment. Required to be unique within the resource type. Used in URIs as the identifier for specific instances of a type
relatedEntity [RelatedEntity] false related entity
relatedParty [RelatedParty] false related party
relatedPlace RelatedPlace false none
requestedTimeSlot [ValidFor] false requestedTimeSlot
resourceOrderItem [ResourceOrderItem] false resourceOrderItem

Request example

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125

curl -X POST https://appointments.sta.masstack.com/v1/orgs/masmovil/appointments/searchTimeSlot \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: API_KEY" \
 --data-raw "{
  'id': 'MYSIM_391588',
  'relatedEntity': [
    {
      'href': 'https://mysim/MYSIM_12411',
      'id': 'MYSIM_12411',
      'name': 'ID of OT',
      'role': 'workorder'
    }
  ],
  'relatedParty': [
    {
      'id': 'RISK',
      'role': 'scoring_result'
    },
    {
      'id': '1',
      'role': 'scoring_level'
    },
    {
      'id': 'Raúl',
      'role': 'firstName'
    },
    {
      'id': 'Garcia Garcia',
      'role': 'middleName'
    },
    {
      'id': '12345678T',
      'role': 'documentNumber'
    },
    {
      'id': 'test@pe.es',
      'role': 'email'
    },
    {
      'id': '686201221',
      'role': 'phoneNumber'
    },
    {
      'id': '28036',
      'role': 'zipcode'
    },
    {
      'id': 'mysim',
      'role': 'sellchannel'
    },
    {
      'id': '10',
      'role': 'user_role'
    },
    {
      'id': 'Residencial',
      'role': 'segment'
    },
    {
      'id': 'eu_ES',
      'role': 'language'
    },
    {
      'id': '16',
      'role': 'tenant'
    },
    {
      'id': '80',
      'role': 'duration'
    }
  ],
  'relatedPlace': {
    'href': 'https://gescal37/geographicAddress/01000500059400011',
    'id': '01000500059400011 001B',
    'name': 'Reyes de Navarra 11, 1B, Vitoria, Alava',
    'role': 'interventionAddress'
  },
  'requestedTimeSlot': [
    {
      'validFor': {
        'endDateTime': '2020-08-18T15:00:00Z',
        'startDateTime': '2020-08-18T13:00:00Z'
      }
    }
  ],
  'resourceOrderItem': [
    {
      'id': '6545',
      'resource': {
        'resourceCharacteristic': [
          {
            'name': 'type',
            'value': 'FTTH'
          },
          {
            'name': 'territoryOwner',
            'value': 'NEBA'
          }
        ]
      }
    },
    {
      'id': '6546',
      'resource': {
        'resourceCharacteristic': [
          {
            'name': 'type',
            'value': 'MOBILE_LINE'
          },
          {
            'name': 'msisdn',
            'value': '666777888'
          },
          {
            'name': 'tariff',
            'value': '3GB Ilimitada'
          }
        ]
      }
    }
  ]
}" 

Responses

Code Meaning Description Schema
200 OK SearchsTimeSlots response SearchsTimeSlotsResponse
default Default Error response ErrorDto

Parameters

Name In Type Required Description
org path string true tenant name
id path string true a id

Request example

1
2
3
4
5

curl -X GET https://appointments.sta.masstack.com/v1/orgs/masmovil/appointments/MYSIM_391588 \
  -H "Accept: application/json" \
  -H "Authorization: API_KEY"

Responses

Code Meaning Description Schema
200 OK Appointment response AppointmentResponse
default Default Error response ErrorDto

Parameters

Name In Type Required Description
org path string true tenant name
id path string true a id
body body Appointment true ‘none’

Request body - instance of Appointment

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
{
  "category": "installation",
  "contactMedium": [
    {
      "characteristic": {
        "key": "mobile",
        "value": 33650981065
      },
      "mediumType": "phoneNumber",
      "preferred": true
    },
    {
      "characteristic": {
        "key": "mobile",
        "value": 33650232065
      },
      "mediumType": "phoneNumber"
    }
  ],
  "description": "Tarea para conseguir una cita",
  "externalId": "MYSIM_391588",
  "id": "MYSIM_391588",
  "note": [
    {
      "author": "Ludovic Robert",
      "date": "2020-08-12T11:00:18.071Z",
      "text": "Problem explained to the back-office"
    }
  ],
  "relatedEntity": [
    {
      "href": "https://mysim/MYSIM_12411",
      "id": "MYSIM_12411",
      "name": "ID of OT",
      "role": "workorder"
    }
  ],
  "relatedParty": [
    {
      "id": "RISK",
      "role": "scoring_result"
    },
    {
      "id": "1",
      "role": "scoring_level"
    },
    {
      "id": "Raúl",
      "role": "firstName"
    },
    {
      "id": "Garcia Garcia",
      "role": "middleName"
    },
    {
      "id": "12345678T",
      "role": "documentNumber"
    },
    {
      "id": "test@pe.es",
      "role": "email"
    },
    {
      "id": "686201221",
      "role": "phoneNumber"
    },
    {
      "id": "28036",
      "role": "zipcode"
    },
    {
      "id": "mysim",
      "role": "sellchannel"
    },
    {
      "id": "10",
      "role": "user_role"
    },
    {
      "id": "Residencial",
      "role": "segment"
    },
    {
      "id": "eu_ES",
      "role": "language"
    },
    {
      "id": "16",
      "role": "tenant"
    },
    {
      "id": "80",
      "role": "duration"
    }
  ],
  "relatedPlace": {
    "href": "https://gescal37/geographicAddress/01000500059400011",
    "id": "01000500059400011 001B",
    "name": "Reyes de Navarra 11, 1B, Vitoria, Alava",
    "role": "interventionAddress"
  },
  "resourceOrderItem": [
    {
      "id": "6545",
      "resource": {
        "resourceCharacteristic": [
          {
            "name": "type",
            "value": "FTTH"
          },
          {
            "name": "territoryOwner",
            "value": "NEBA"
          }
        ]
      }
    },
    {
      "id": "6546",
      "resource": {
        "resourceCharacteristic": [
          {
            "name": "type",
            "value": "MOBILE_LINE"
          },
          {
            "name": "msisdn",
            "value": "666777888"
          },
          {
            "name": "tariff",
            "value": "3GB Ilimitada"
          }
        ]
      }
    }
  ],
  "status": "accepted",
  "validFor": {
    "endDateTime": "2020-08-18T15:00:00Z",
    "startDateTime": "2020-08-18T13:00:00Z"
  }
}
Name Type Required Description
category string false Used to categorize the order from a business perspective that can be useful for the OM system
contactMedium [ContactMedium] false contactMedium
description string false free-text description firestorehe Appointment
externalId string false ID given by the consumer (to facilitate searches afterwards)
id string false Identifier of an instance of the Appointment. Required to be unique within the resource type. Used in URIs as the identifier for specific instances of a type
note [Note] false note
relatedEntity [RelatedEntity] false related entity
relatedParty [RelatedParty] false related party
relatedPlace RelatedPlace false none
resourceOrderItem [ResourceOrderItem] false resourceOrderItem
status string false The life cycle state of the resource
validFor RangePeriod false RangePeriod reference

Request example

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149

curl -X PATCH https://appointments.sta.masstack.com/v1/orgs/masmovil/appointments/MYSIM_391588 \
  -H "Content-Type: application/json" \
  -H "Accept: application/json" \
  -H "Authorization: API_KEY" \
 --data-raw "{
  'category': 'installation',
  'contactMedium': [
    {
      'characteristic': {
        'key': 'mobile',
        'value': 33650981065
      },
      'mediumType': 'phoneNumber',
      'preferred': true
    },
    {
      'characteristic': {
        'key': 'mobile',
        'value': 33650232065
      },
      'mediumType': 'phoneNumber'
    }
  ],
  'description': 'Tarea para conseguir una cita',
  'externalId': 'MYSIM_391588',
  'id': 'MYSIM_391588',
  'note': [
    {
      'author': 'Ludovic Robert',
      'date': '2020-08-12T11:00:18.071Z',
      'text': 'Problem explained to the back-office'
    }
  ],
  'relatedEntity': [
    {
      'href': 'https://mysim/MYSIM_12411',
      'id': 'MYSIM_12411',
      'name': 'ID of OT',
      'role': 'workorder'
    }
  ],
  'relatedParty': [
    {
      'id': 'RISK',
      'role': 'scoring_result'
    },
    {
      'id': '1',
      'role': 'scoring_level'
    },
    {
      'id': 'Raúl',
      'role': 'firstName'
    },
    {
      'id': 'Garcia Garcia',
      'role': 'middleName'
    },
    {
      'id': '12345678T',
      'role': 'documentNumber'
    },
    {
      'id': 'test@pe.es',
      'role': 'email'
    },
    {
      'id': '686201221',
      'role': 'phoneNumber'
    },
    {
      'id': '28036',
      'role': 'zipcode'
    },
    {
      'id': 'mysim',
      'role': 'sellchannel'
    },
    {
      'id': '10',
      'role': 'user_role'
    },
    {
      'id': 'Residencial',
      'role': 'segment'
    },
    {
      'id': 'eu_ES',
      'role': 'language'
    },
    {
      'id': '16',
      'role': 'tenant'
    },
    {
      'id': '80',
      'role': 'duration'
    }
  ],
  'relatedPlace': {
    'href': 'https://gescal37/geographicAddress/01000500059400011',
    'id': '01000500059400011 001B',
    'name': 'Reyes de Navarra 11, 1B, Vitoria, Alava',
    'role': 'interventionAddress'
  },
  'resourceOrderItem': [
    {
      'id': '6545',
      'resource': {
        'resourceCharacteristic': [
          {
            'name': 'type',
            'value': 'FTTH'
          },
          {
            'name': 'territoryOwner',
            'value': 'NEBA'
          }
        ]
      }
    },
    {
      'id': '6546',
      'resource': {
        'resourceCharacteristic': [
          {
            'name': 'type',
            'value': 'MOBILE_LINE'
          },
          {
            'name': 'msisdn',
            'value': '666777888'
          },
          {
            'name': 'tariff',
            'value': '3GB Ilimitada'
          }
        ]
      }
    }
  ],
  'status': 'accepted',
  'validFor': {
    'endDateTime': '2020-08-18T15:00:00Z',
    'startDateTime': '2020-08-18T13:00:00Z'
  }
}" 

Responses

Code Meaning Description Schema
200 OK Appointment response AppointmentResponse
default Default Error response ErrorDto

Endpoints

Events

    Appointments