Skip to main content
Retrieve the details of a specific rule by its ID.
External DocumentationTo learn more, visit the Beeceptor documentation.

Parameters

ParameterDescription
Endpoint NameThe name of the endpoint to get the rule of.
Rule IDThe ID of the required rule.

Example Output

{
	"data": [
		{
			"enabled": true,
			"mock": true,
			"delay": 10,
			"match": {
				"method": "PATCH",
				"operator": "EM",
				"value": "/xyz"
			},
			"send": {
				"status": 200,
				"body": "{ \"status\": \"Awesome!\"}",
				"headers": {
					"Content-Type": "application/json",
					"method": "put"
				},
				"templated": false
			},
			"id": "gl9dgq67mn9"
		}
	]
}

Workflow Library Example

Get Rule with Beeceptor and Send Results Via Email
Workflow LibraryPreview this Workflow on desktop
I