> ## Documentation Index
> Fetch the complete documentation index at: https://docs.pilotstatus.com.br/llms.txt
> Use this file to discover all available pages before exploring further.

# Unblock a contact

> Removes the given contact from the block list.



## OpenAPI

````yaml openapi.evolution-go.json POST /user/unblock
openapi: 3.1.0
info:
  title: Evolution GO Layer
  version: 1.0.0
  description: >-
    Pilot Status API Layer — Evolution GO. Base URL
    `https://pilotstatus.com.br/api/layer/evolution-go`. Authenticate with the
    `apikey` header (your Pilot Status `ps_` key) or `Authorization: Bearer`.
    Instance/session endpoints are NOT available through the layer.
servers:
  - url: https://pilotstatus.com.br/api/layer/evolution-go
security:
  - apiKey: []
tags:
  - name: Call (voice)
  - name: Chat
  - name: Community
  - name: Group
  - name: Label
  - name: Message
  - name: Newsletter / Channels
  - name: Send (load-balanced)
  - name: User / Contacts
paths:
  /user/unblock:
    post:
      tags:
        - User / Contacts
      summary: Unblock a contact
      description: Removes the given contact from the block list.
      operationId: post__user_unblock
      requestBody:
        required: true
        content:
          application/json:
            schema:
              type: object
              properties:
                number:
                  type: string
                  description: Phone number in international format to unblock.
                  example: '5511999999999'
              required:
                - number
      responses:
        '200':
          description: Success — provider-native response body.
          content:
            application/json:
              schema:
                type: object
                description: >-
                  Updated blocklist after unblocking the contact, wrapped in the
                  Evolution GO envelope.
                properties:
                  message:
                    type: string
                    description: Operation status message.
                  data:
                    type: object
                    description: Whatsmeow Blocklist returned by UpdateBlocklist.
                    properties:
                      DHash:
                        type: string
                        description: Version/diff hash of the blocklist state.
                      JIDs:
                        type: array
                        description: >-
                          JIDs of all currently blocked users (after the
                          unblock).
                        items:
                          type: string
              example:
                message: success
                data:
                  DHash: 2:dW5ibG9ja2VkX2hhc2g=
                  JIDs:
                    - 5511777777777@s.whatsapp.net
        default:
          description: Error — provider or layer error.
          content:
            application/json:
              schema:
                type: object
                properties:
                  status:
                    type: integer
                  error:
                    type: string
                  message:
                    type: string
                  response:
                    type: object
              example:
                status: 400
                error: Bad Request
                message: Invalid payload
components:
  securitySchemes:
    apiKey:
      type: apiKey
      in: header
      name: apikey
      description: >-
        Your Pilot Status API key (ps_...). Evolution GO also accepts
        `Authorization: Bearer <key>`.

````