Not getting Response body when Registering the Facility

Getting response 200 Ok only.
what is mistaken in the below url?
Please guide me regarding.

curl --location --request PUT ‘https://dev.abdm.gov.in/devservice/v1/bridges/services
–header ‘Content-Type: application/json’
–header ‘Accept: application/json’
–header ‘Authorization: Bearer eyJhbGciOiJSUzI1Nixxxxxxxxxxxx(access-token-from-gateway-session)’
–data-raw ‘{
“id”:“SBX_xxx”,
“name”:“Healthtrack”,
“type”:“HIP”,
“active”:true,
“alias”:[“EG”]
}’

@SperoVishan,

Please visit the Swagger again,

Method you are using is PUT which is wrong,
instead use PATCH .
Take inspiration from here.

Thanks

@Shubhanshu_S
Please check sir,

@Shubhanshu_S Please suggest

@SperoVishan,

You seem to be using wrong API as there no such api bridges/services
please find the bridge API given in below url,

https://sandbox.abdm.gov.in/swagger/ndhm-devservice.yaml

and please have a look at the payload also as in above replies API and Payload,
both seems to be different.

Thanks


I was following this api in screenshot (getting started with API),
But API in your provided link works, Thank You @Shubhanshu_S sir.