Which two HTTP methods are used in RESTCONF to retrieve configuration data? (Choose two.)
Trap 1: POST
POST is used to create resources, not to retrieve configuration data.
Trap 2: PATCH
PATCH is used for partial modifications of resources.
Trap 3: PUT
PUT is used to replace or create a specific resource.
- A
GET
GET is the correct HTTP method for retrieving configuration data in RESTCONF.
- B
POST
Why wrong: POST is used to create resources, not to retrieve configuration data.
- C
PATCH
Why wrong: PATCH is used for partial modifications of resources.
- D
PUT
Why wrong: PUT is used to replace or create a specific resource.
- E
DELETE
Why wrong: DELETE is used to remove resources.