Get Provider API
Welcome to the documentation for the Get Provider API. This API helps you Get a Provider.
Base URL
{baseURL}/v1/meta-data/providers/:providerId | GET
Path Variables
providerId: "64dfdf29c013a4fc38286787"
Sample Request
curl -X GET {baseURL}/v1/meta-data/providers/64dfdf29c013a4fc38286787 \
-H 'Content-Type: application/json' \
-d '{
"name": "twillo",
}'
Sample 200 Response
{
"message": "Provider fetched successfully",
"data": {
"_id": "64dfdf29c013a4fc38286787",
"name": "mailgun",
"slug": "mailgun",
"status": "inactive",
"type": "email",
"createdAt": "2023-08-18T21:14:17.424Z",
"updatedAt": "2023-08-18T21:14:17.424Z",
"__v": 0
},
"success": true
}